NFT

interface NFT {
    chain: blockchainData.Types.Chain;
    token_id: string;
    contract_address: string;
    contract_type: NFTContractType;
    indexed_at: string;
    updated_at: string;
    metadata_synced_at: null | string;
    metadata_id?: null | string;
    name: null | string;
    description: null | string;
    image: null | string;
    external_link: null | string;
    animation_url: null | string;
    youtube_url: null | string;
    attributes: NFTMetadataAttribute[];
    total_supply?: null | string;
}

Properties

NFT

token_id: string

An uint256 token id as string

NFT

contract_address: string

The contract address of the NFT

NFT

contract_type: NFTContractType

NFT

indexed_at: string

When the NFT was first indexed

NFT

updated_at: string

When the NFT owner was last updated

NFT

metadata_synced_at: null | string

When NFT metadata was last synced

NFT

metadata_id?: null | string

The id of the metadata of this NFT

NFT

name: null | string

The name of the NFT

NFT

description: null | string

The description of the NFT

NFT

image: null | string

The image url of the NFT

NFT

external_link: null | string

The external website link of NFT

NFT

animation_url: null | string

The animation url of the NFT

NFT

youtube_url: null | string

The youtube URL of NFT

NFT

attributes: NFTMetadataAttribute[]

List of NFT Metadata attributes

NFT

total_supply?: null | string

The total supply of NFT

NFT