Interface GetBalanceResult

Interface representing the result of Checkout.getBalance.

interface GetBalanceResult {
    balance: BigNumber;
    formattedBalance: string;
    token: TokenInfo;
}

Properties

balance: BigNumber

The balance of the wallet for the token.

formattedBalance: string

The formatted balance of the wallet for the token.

token: TokenInfo

The token information.