提取
This commit is contained in:
@@ -141,6 +141,9 @@ export interface Mine {
|
||||
|
||||
export type Mines = Mine[];
|
||||
|
||||
/**
|
||||
* 获取矿晶页面,支持的币种
|
||||
*/
|
||||
export interface CoinSupport {
|
||||
id: string;
|
||||
label: string;
|
||||
@@ -155,21 +158,30 @@ export interface CoinAddress {
|
||||
|
||||
export interface CoinUnion extends CoinSupport, CoinAddress { };
|
||||
|
||||
/**
|
||||
* 提币页面,支持的币种
|
||||
*/
|
||||
export interface CoinDrawn {
|
||||
id: string;
|
||||
label: string;
|
||||
fee: string;
|
||||
}
|
||||
|
||||
export interface FundBasic {
|
||||
/**
|
||||
* 总余额(以VIC计算)
|
||||
*/
|
||||
balanceSum: string;
|
||||
sum: string;
|
||||
|
||||
/**
|
||||
* 当前VIC余额
|
||||
*/
|
||||
balanceVIC: string;
|
||||
vic: string;
|
||||
|
||||
/**
|
||||
* 当前USDT余额
|
||||
*/
|
||||
balanceUSDT: string;
|
||||
usdt: string;
|
||||
}
|
||||
|
||||
export enum JournalType {
|
||||
@@ -207,7 +219,7 @@ export interface Journal {
|
||||
|
||||
op: JournalOp;
|
||||
|
||||
timestamp: string;
|
||||
createdAt: string;
|
||||
}
|
||||
|
||||
export interface CommunityBasic {
|
||||
|
||||
Reference in New Issue
Block a user