Fund list
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user