Token Holders

Returns the token holders wallets and token info ERC20, ERC721 and ERC1155 tokens.

GraphQL Query

query contractWallets($contractAddress: String!, $page: Int!, $pageSize: Int!) {
  contractWallets(contractAddress: $contractAddress, page: $page, pageSize: $pageSize) {
      walletAddresses {
        address
        amount
        tokenId
      }
      contractAddress
      name
      symbol
      latestPrice
      netBalance
      decimal
      chain
      tokenId
      tokenType
  }
}

Variables

Response

Example

ERC 1155

Input
Output

ERC 721

input
Output

ERC 20

input
Output

Last updated

Was this helpful?