Skip to main content

NFTBalance

An address's balance of a specific NFT. For ERC-721, the value is always 1. For ERC-1155, the value represents the quantity held.

Schema Definition

type NFTBalance {
contract: NFTContract!
nft: NFT!
value: BigInt!
}

Fields

FieldTypeDescription
contract
NFTContract! non-null object
The NFT collection contract.
nft
NFT! non-null interface
The specific NFT within the collection.
value
BigInt! non-null scalar
Quantity held. Always 1 for ERC-721 NFTs; may be higher for ERC-1155 NFTs.

Member Of

NFTBalanceList object