Coda by Ian Macalinao
    Preparing search index...
    type TreeConfigArgs = {
        isDecompressible: DecompressibleStateArgs;
        isPublic: boolean;
        numMinted: number | bigint;
        totalMintCapacity: number | bigint;
        treeCreator: Address;
        treeDelegate: Address;
        version: VersionArgs;
    }
    Index

    Properties

    isDecompressible: DecompressibleStateArgs

    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: number | bigint

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

    totalMintCapacity: number | 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: VersionArgs

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