Interface NFTMetadata

interface NFTMetadata {
    attributes?: NFTAttribute[];
    collection?: null | {
        family?: string;
        name?: string;
        verified?: boolean;
    };
    description?: string;
    external_url?: string;
    image?: string;
    name: string;
    properties?: any;
    symbol?: string;
}

Properties

attributes?: NFTAttribute[]
collection?: null | {
    family?: string;
    name?: string;
    verified?: boolean;
}
description?: string
external_url?: string
image?: string
name: string
properties?: any
symbol?: string