Interface Balance

interface Balance {
    balance: string;
    preparing_withdrawal: string;
    symbol: string;
    token_address: string;
    withdrawable: string;
}

Hierarchy

  • Balance
    • Balance

Properties

balance: string

Amount which is currently inside the exchange

Balance

preparing_withdrawal: string

Amount which is currently preparing withdrawal from the exchange

Balance

symbol: string

Symbol of the token (e.g. ETH, IMX)

Balance

token_address: string

Address of the contract that represents this ERC20 token or empty for ETH

Balance

withdrawable: string

Amount which is currently withdrawable from the exchange

Balance