mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-17 07:26:48 +00:00
22 lines
423 B
TypeScript
22 lines
423 B
TypeScript
|
|
export interface CoinTotal {
|
|
coin: string;
|
|
balance: number;
|
|
percentage: number;
|
|
address: string;
|
|
icon:string;
|
|
}
|
|
|
|
export interface Summary {
|
|
BTC: CoinTotal[];
|
|
ETH: CoinTotal[];
|
|
LTC: CoinTotal[];
|
|
}
|
|
|
|
export interface Wallet {
|
|
coin_totals: CoinTotal[];
|
|
coins_offline: CoinTotal[];
|
|
offline_summary: Summary;
|
|
coins_online: CoinTotal[];
|
|
online_summary: Summary;
|
|
} |