getNFTBalancesForAddress abstract method

Future<NFTBalancesResponse> getNFTBalancesForAddress(
  1. EthereumAddress address,
  2. {EthereumAddress? tokenAddress,
  3. int page = 1,
  4. int pageSize = 20}
)

Retrieves NFT balances for a specific address.

Given the address, this method returns a NFTBalancesResponse with information about NFT balances. Additional parameters like tokenAddress, page, and pageSize can be specified for more targeted results.

Implementation

Future<NFTBalancesResponse> getNFTBalancesForAddress(
  EthereumAddress address, {
  EthereumAddress? tokenAddress,
  int page = 1,
  int pageSize = 20,
});