getTokenBalancesForAddress abstract method
- EthereumAddress address,
- {EthereumAddress? tokenAddress,
- int page = 1,
- int pageSize = 20}
Retrieves token balances for a specific address.
Given the address
, this method returns a TokenBalancesResponse
with
information about the token balances. Additional parameters like tokenAddress
,
page
, and pageSize
can be specified for more targeted results.
Implementation
Future<TokenBalancesResponse> getTokenBalancesForAddress(
EthereumAddress address,
{EthereumAddress? tokenAddress,
int page = 1,
int pageSize = 20});