Coda by Ian Macalinao
    Preparing search index...

    Metadata fields to change on a leaf via updateMetadata / updateMetadataV2. Every field is optional; omitted fields keep their current value.

    type UpdateArgs = {
        creators: Option<Creator[]>;
        isMutable: Option<boolean>;
        name: Option<string>;
        primarySaleHappened: Option<boolean>;
        sellerFeeBasisPoints: Option<number>;
        symbol: Option<string>;
        uri: Option<string>;
    }
    Index

    Properties

    creators: Option<Creator[]>

    New creators array for the asset, or unset to keep the current creators.

    isMutable: Option<boolean>

    New mutability flag, or unset to keep the current value.

    name: Option<string>

    New name for the asset, or unset to keep the current name.

    primarySaleHappened: Option<boolean>

    New primary sale flag, or unset to keep the current value.

    sellerFeeBasisPoints: Option<number>

    New royalty basis points, or unset to keep the current value.

    symbol: Option<string>

    New symbol for the asset, or unset to keep the current symbol.

    uri: Option<string>

    New metadata URI for the asset, or unset to keep the current URI.