Coda by Ian Macalinao
    Preparing search index...
    type MetadataArgsArgs = {
        collection: OptionOrNullable<CollectionArgs>;
        creators: CreatorArgs[];
        editionNonce: OptionOrNullable<number>;
        isMutable: boolean;
        name: string;
        primarySaleHappened: boolean;
        sellerFeeBasisPoints: number;
        symbol: string;
        tokenProgramVersion: TokenProgramVersionArgs;
        tokenStandard: OptionOrNullable<TokenStandardArgs>;
        uri: string;
        uses: OptionOrNullable<UsesArgs>;
    }
    Index

    Properties

    collection: OptionOrNullable<CollectionArgs>

    Collection

    creators: CreatorArgs[]

    Creators of the asset and their royalty shares; hashed to produce creatorHash.

    editionNonce: OptionOrNullable<number>

    nonce for easy calculation of editions, if present

    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

    tokenProgramVersion: TokenProgramVersionArgs

    Which SPL token program a decompressed version of this leaf's mint should use.

    tokenStandard: OptionOrNullable<TokenStandardArgs>

    Token standard. Currently only NonFungible is allowed.

    uri: string

    URI pointing to JSON representing the asset

    uses: OptionOrNullable<UsesArgs>

    Uses