@openweb3-io/wallet-pay
Version:
Wallet Pay API client and wallet pay verification library
36 lines (35 loc) • 917 B
TypeScript
export declare class CurrencyNetwork {
'canDeposit': boolean;
'canTransfer': boolean;
'canWithdraw': boolean;
'code': string;
'contractAddress'?: string;
'disabled': boolean;
'id': string;
'maxFee': string;
'maxFeeForCtAddr': string;
'maxWithdrawAmount': string;
'minCollectAmount'?: string;
'minConfirmations': number;
'minDepositAmount': string;
'minFee': string;
'minFeeForCtAddr': string;
'minWithdrawAmount': string;
'name': string;
'needMemo': boolean;
'network': string;
static readonly discriminator: string | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}