The NFT metadata. Total size of this object should not exceed 16 KiB

NFTMetadataRequest

interface NFTMetadataRequest {
    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

name?: null | string

The name of the NFT

NFTMetadataRequest

description?: null | string

The description of the NFT

NFTMetadataRequest

image?: null | string

The image url of the NFT

NFTMetadataRequest

external_url?: null | string

The external link of the NFT

NFTMetadataRequest

animation_url?: null | string

The animation url of the NFT

NFTMetadataRequest

youtube_url?: null | string

The youtube link of the NFT

NFTMetadataRequest

attributes?: null | NFTMetadataAttribute[]

List of Metadata attributes

NFTMetadataRequest