Stack

NFTWithStack

interface NFTWithStack {
    token_id: string;
    stack_id: string;
    chain: blockchainData.Types.Chain;
    contract_address: string;
    contract_type: MarketplaceContractType;
    created_at: string;
    updated_at: string;
    name: null | string;
    description: null | string;
    image: null | string;
    external_url: null | string;
    animation_url: null | string;
    youtube_url: null | string;
    attributes: null | NFTMetadataAttribute[];
    balance: null | number;
}

Properties

token_id: string

Token id of NFT (uint256 as string)

NFTWithStack

stack_id: string

Stack ID

NFTWithStack

NFTWithStack

contract_address: string

Contract address

NFTWithStack

NFTWithStack

created_at: string

When the metadata was created

NFTWithStack

updated_at: string

When the metadata was last updated

NFTWithStack

name: null | string

The name of the NFT

NFTWithStack

description: null | string

The description of the NFT

NFTWithStack

image: null | string

The image url of the NFT

NFTWithStack

external_url: null | string

The external website link of NFT

NFTWithStack

animation_url: null | string

The animation url of the NFT

NFTWithStack

youtube_url: null | string

The youtube URL of NFT

NFTWithStack

attributes: null | NFTMetadataAttribute[]

List of Metadata attributes

NFTWithStack

balance: null | number

Balance of NFT

NFTWithStack