OwnedNFT
An NFT as viewed from an owner's perspective.
Used when listing NFTs owned by an address within a collection.
The balance field indicates quantity owned (1 for ERC-721, variable for ERC-1155).
Schema Definition
type OwnedNFT {
contract: NFTContract!
tokenId: TokenId!
name: String
metadata: Metadata
media: [Media!]!
balance: BigInt!
}
Fields
| Field | Type | Description |
|---|---|---|
contract | The contract managing this NFT collection. | |
tokenId | Unique identifier for this NFT within its contract. | |
name | String scalar | Human-readable name of this NFT from its metadata, or null if not available. |
metadata | Metadata object | Parsed metadata for this NFT including description, image URL, and attributes. |
media | Media files associated with this NFT (images, videos, audio, etc.). | |
balance | Quantity owned by the holder. Always 1 for ERC-721 NFTs; may be higher for ERC-1155 NFTs. |
Member Of
OwnedNFTList object