Metadata

interface Metadata {
    id: string;
    chain: blockchainData.Types.Chain;
    contract_address: string;
    created_at: string;
    updated_at: null | 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

id: string

Metadata id in UUIDv4 format

Metadata

Metadata

contract_address: string

The contract address of the metadata

Metadata

created_at: string

When the metadata was created

Metadata

updated_at: null | string

When the metadata was last updated

Metadata

name: null | string

The name of the NFT

Metadata

description: null | string

The description of the NFT

Metadata

image: null | string

The image url of the NFT

Metadata

external_url?: null | string

The external website link of NFT

Metadata

animation_url: null | string

The animation url of the NFT

Metadata

youtube_url: null | string

The youtube URL of NFT

Metadata

attributes: null | NFTMetadataAttribute[]

List of Metadata attributes

Metadata