Coda by Ian Macalinao
    Preparing search index...
    type TreeConfig = {
        discriminator: ReadonlyUint8Array;
        isDecompressible: DecompressibleState;
        isPublic: boolean;
        numMinted: bigint;
        totalMintCapacity: bigint;
        treeCreator: Address;
        treeDelegate: Address;
        version: Version;
    }
    Index

    Properties

    discriminator: ReadonlyUint8Array
    isDecompressible: DecompressibleState

    Whether leaves in the tree may currently be redeemed and decompressed.

    isPublic: boolean

    Whether any signer may mint into the tree, not just the tree delegate.

    numMinted: bigint

    Number of leaves minted into the tree so far; used as the nonce for the next minted leaf.

    totalMintCapacity: bigint

    Maximum number of leaves the tree can ever hold, derived from its maxDepth.

    treeCreator: Address

    Original creator of the tree.

    treeDelegate: Address

    Current delegate authority of the tree, authorized to mint and manage it on the creator's behalf.

    version: Version

    Schema version (V1 or V2) leaves minted into this tree use.