Coda by Ian Macalinao
    Preparing search index...

    Metadata for a LeafSchema V2 compressed NFT leaf.

    Streamlined relative to MetadataArgs: it drops editionNonce and uses, and its collection is a plain, always-verified Pubkey rather than a Collection struct with a separate verified flag.

    type MetadataArgsV2 = {
        collection: Option<Address>;
        creators: Creator[];
        isMutable: boolean;
        name: string;
        primarySaleHappened: boolean;
        sellerFeeBasisPoints: number;
        symbol: string;
        tokenStandard: Option<TokenStandard>;
        uri: string;
    }
    Index

    Properties

    collection: Option<Address>

    Collection. Note in V2 its just a Pubkey and is always considered verified.

    creators: Creator[]

    Creator array

    isMutable: boolean

    Whether or not the data struct is mutable, default is not

    name: string

    The name of the asset

    primarySaleHappened: boolean

    Immutable, once flipped, all sales of this metadata are considered secondary.

    sellerFeeBasisPoints: number

    Royalty basis points that goes to creators in secondary sales (0-10000)

    symbol: string

    The symbol for the asset

    tokenStandard: Option<TokenStandard>

    Token standard. Currently only NonFungible is allowed.

    uri: string

    URI pointing to JSON representing the asset