Coda by Ian Macalinao
    Preparing search index...

    An MPL Core asset: a single account holding an NFT's owner, update authority, name, URI and sequence number, with its plugins stored afterward in the same account.

    type AssetV1 = {
        key: Key;
        name: string;
        owner: Address;
        seq: Option<bigint>;
        updateAuthority: UpdateAuthority;
        uri: string;
    }
    Index

    Properties

    key: Key

    Account discriminator; always Key.AssetV1.

    name: string

    The asset's display name.

    owner: Address

    The current owner of the asset.

    seq: Option<bigint>

    Sequence number incremented on certain mutations (e.g. executeV1); present once the asset has been touched by such an instruction, used to detect stale off-chain indexes.

    updateAuthority: UpdateAuthority

    The authority allowed to update the asset's metadata and plugins.

    uri: string

    The URI pointing to the asset's off-chain JSON metadata.