NftMetadata: {
    attributes: Attribute[];
    category: string;
    description: string;
    external_url: string;
    image: string;
    name: string;
    properties: Properties;
    seller_fee_basis_points: number;
    symbol: string;
}

Represents the metadata associated with a Non-Fungible Token (NFT).

Type declaration

  • attributes: Attribute[]

    A list of attributes that define the characteristics of the NFT.

  • category: string

    The category of the NFT (e.g., art, collectible).

  • description: string

    A description of the NFT.

  • external_url: string

    An external URL for more information about the NFT.

  • image: string

    A URI to the main image of the NFT.

  • name: string

    The name of the NFT.

  • properties: Properties

    Properties of the NFT including creators and files.

  • seller_fee_basis_points: number

    The seller fee in basis points (100 basis points = 1%).

  • symbol: string

    The symbol representing the NFT.

Generated using TypeDoc