Token
The Token object represents an individual NFT.
Schema Definition
type Token {
contract: Contract!
tokenId: UInt256!
name: String
mintTransaction: AssetTransaction
burnTransaction: AssetTransaction
media: [Media!]!
metadata: Metadata
holders: HoldersList!
}
Fields
| Field | Type | Description |
|---|---|---|
contract | Contract! non-null object | An object representing the properties of the contract managing this NFT. |
tokenId | UInt256! non-null scalar | The unique identifier of this NFT within its contract. |
name | String scalar | The display name of the NFT. |
mintTransaction | AssetTransaction object | An object representing the transaction that created this NFT. |
burnTransaction | AssetTransaction object | An object representing a transaction that destroyed this NFT. Null if the token has not been burned. |
media | [Media!]! non-null object | An array of Media objects representing the media assets and associated data associated with this NFT. |
metadata | Metadata object | An object representing the metadata associated with this NFT. |
holders | HoldersList! non-null object | An array of wallet addresses that currently hold this NFT. |
Returned By
token query