Files
gocryptotrader/web/src/app/shared/classes/wallet.ts
GloriousCode ffd3e05ca9 Beginnings of the wallet summary
Changes width of menu to be smaller
2017-10-16 17:47:01 +11:00

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;
}