NFTWithBalance

interface NFTWithBalance {
    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[];
    balance: string;
}

Properties

NFTWithBalance

token_id: string

An uint256 token id as string

NFTWithBalance

contract_address: string

The contract address of the NFT

NFTWithBalance

contract_type: NFTContractType

NFTWithBalance

indexed_at: string

When the NFT was first indexed

NFTWithBalance

updated_at: string

When the NFT owner was last updated

NFTWithBalance

metadata_synced_at: null | string

When NFT metadata was last synced

NFTWithBalance

metadata_id?: null | string

The id of the metadata of this NFT

NFTWithBalance

name: null | string

The name of the NFT

NFTWithBalance

description: null | string

The description of the NFT

NFTWithBalance

image: null | string

The image url of the NFT

NFTWithBalance

external_link: null | string

The external website link of NFT

NFTWithBalance

animation_url: null | string

The animation url of the NFT

NFTWithBalance

youtube_url: null | string

The youtube URL of NFT

NFTWithBalance

attributes: NFTMetadataAttribute[]

List of Metadata attributes

NFTWithBalance

balance: string

The amount of this NFT this account owns

NFTWithBalance