QuerySpendableBalancesResponse defines the gRPC response structure for querying an account's spendable balances.

interface QuerySpendableBalancesResponse {
    balances: Coin[];
    pagination?: PageResponse;
}

Properties

balances: Coin[]

balances is the spendable balances of all the coins.

pagination?: PageResponse

pagination defines the pagination in the response.