Wallet Holdings

Returns the ERC20, ERC721 and ERC1155 holdings of a wallet.

GraphQL Query

query WalletHoldings($walletAddress: String!){
    walletHoldings(walletAddress: $walletAddress){
        walletAddress
        erc20Tokens{
            chain
            tokenAddress
            tokenName
            tokenSymbol
        }
        erc721Tokens{
            chain
            tokenAddress
            tokenName
            tokenSymbol
        }
        erc1155Tokens{
            chain
            tokenAddress
            tokenName
            tokenSymbol
        }
    }
}

Variables

Response

Example

Input
Output

Last updated

Was this helpful?