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

Type declaration

  • collection: Option<PublicKey>

    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

Generated using TypeDoc