UNPKG

@openweb3-io/wallet-pay

Version:

Wallet Pay API client and wallet pay verification library

40 lines (39 loc) 1.04 kB
import { CurrencyNetwork } from './CurrencyNetwork'; export declare class Currency { 'canDeposit': boolean; 'canTransfer': boolean; 'canWithdraw': boolean; 'code': string; 'contractAddress'?: string; 'decimals': number; 'disabled': boolean; 'logo': string; 'maxFee': string; 'maxFeeForCtAddr': string; 'maxWithdrawAmount': string; 'minDepositAmount': string; 'minFee': string; 'minFeeForCtAddr': string; 'minTransferAmount': string; 'minWithdrawAmount': string; 'name': string; 'needMemo': boolean; 'networks'?: Array<CurrencyNetwork>; 'precision': number; 'rated': boolean; 'symbol': 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(); }