Stack

Stack

interface Stack {
    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[];
}

Properties

stack_id: string

Stack ID

Stack

Stack

contract_address: string

Contract address

Stack

Stack

created_at: string

When the metadata was created

Stack

updated_at: string

When the metadata was last updated

Stack

name: null | string

The name of the NFT

Stack

description: null | string

The description of the NFT

Stack

image: null | string

The image url of the NFT

Stack

external_url: null | string

The external website link of NFT

Stack

animation_url: null | string

The animation url of the NFT

Stack

youtube_url: null | string

The youtube URL of NFT

Stack

attributes: null | NFTMetadataAttribute[]

List of Metadata attributes

Stack