@tributary-so/sdk
    Preparing search index...

    Interface Metadata

    Simplified metadata structure for token information. Provides essential token metadata in a consistent format, derived from Metaplex Token Metadata.

    interface Metadata {
        collection: Collection | null;
        data: {
            creators: Creator[] | null;
            name: string;
            sellerFeeBasisPoints: number;
            symbol: string;
            uri: string;
        };
        isMutable: boolean;
        mint: PublicKey;
        primarySaleHappened: boolean;
    }
    Index

    Properties

    collection: Collection | null

    Collection information or null if not part of a collection

    data: {
        creators: Creator[] | null;
        name: string;
        sellerFeeBasisPoints: number;
        symbol: string;
        uri: string;
    }

    Core token data

    Type Declaration

    • creators: Creator[] | null

      Array of creators or null if none

    • name: string

      Token name

    • sellerFeeBasisPoints: number

      Seller fee basis points (royalty percentage * 100)

    • symbol: string

      Token symbol/ticker

    • uri: string

      URI pointing to off-chain metadata (JSON)

    isMutable: boolean

    Whether the metadata can still be modified

    mint: PublicKey

    The public key of the token mint

    primarySaleHappened: boolean

    Whether the primary sale has occurred (affects royalties)