@aptos-labs/ts-sdk - v3.1.1
    Preparing search index...

    Interface CreateCollectionOptions

    Options for creating a collection, allowing customization of various attributes such as supply limits, mutability of metadata, and royalty settings.

    Maximum number of tokens that can be minted in the collection.

    Indicates if the collection description can be changed after creation.

    Indicates if the royalty settings can be modified after creation.

    Indicates if the collection URI can be updated.

    Indicates if individual token descriptions can be modified.

    Indicates if individual token names can be changed.

    Indicates if individual token properties can be altered.

    Indicates if individual token URIs can be updated.

    Indicates if the creator can burn tokens from the collection.

    Indicates if the creator can freeze tokens in the collection.

    The numerator for calculating royalties.

    The denominator for calculating royalties.

    interface CreateCollectionOptions {
        maxSupply?: AnyNumber;
        mutableDescription?: boolean;
        mutableRoyalty?: boolean;
        mutableTokenDescription?: boolean;
        mutableTokenName?: boolean;
        mutableTokenProperties?: boolean;
        mutableTokenURI?: boolean;
        mutableURI?: boolean;
        royaltyDenominator?: number;
        royaltyNumerator?: number;
        tokensBurnableByCreator?: boolean;
        tokensFreezableByCreator?: boolean;
    }
    Index

    Properties

    maxSupply?: AnyNumber
    mutableDescription?: boolean
    mutableRoyalty?: boolean
    mutableTokenDescription?: boolean
    mutableTokenName?: boolean
    mutableTokenProperties?: boolean
    mutableTokenURI?: boolean
    mutableURI?: boolean
    royaltyDenominator?: number
    royaltyNumerator?: number
    tokensBurnableByCreator?: boolean
    tokensFreezableByCreator?: boolean