The result of listing EVM token balances.

interface ListTokenBalancesResult {
    balances: EvmTokenBalance[];
    nextPageToken?: string;
}

Properties

balances: EvmTokenBalance[]

The token balances.

nextPageToken?: string

The next page token to paginate through the token balances. If undefined, there are no more token balances to paginate through.