Fund list

This commit is contained in:
saplf
2019-09-04 14:16:13 +08:00
parent 8e62f9bab9
commit ff5a431f43
11 changed files with 493 additions and 15 deletions

View File

@@ -153,7 +153,62 @@ export interface CoinAddress {
address: string;
}
export interface CoinUnion extends CoinSupport, CoinAddress {};
export interface CoinUnion extends CoinSupport, CoinAddress { };
export interface FundBasic {
/**
* 总余额以VIC计算
*/
balanceSum: string;
/**
* 当前VIC余额
*/
balanceVIC: string;
/**
* 当前USDT余额
*/
balanceUSDT: string;
}
export enum JournalType {
/**
* 挖矿收益
*/
Mining = 1,
/**
* 社区奖励
*/
Award = 2,
/**
* 提币
*/
Draw = 3,
}
export enum JournalOp {
Expenditure = 0,
Income = 1,
}
export interface Journal {
id: string;
type: JournalType;
detail: string;
amount: string;
coinType: string;
op: JournalOp;
timestamp: string;
}
export enum MarketEstateAvailable {
No = 0,