Coda by Ian Macalinao
    Preparing search index...

    Type Alias SetDecompressibleStateInput<TAccountTreeAuthority, TAccountTreeCreator>

    type SetDecompressibleStateInput<
        TAccountTreeAuthority extends string = string,
        TAccountTreeCreator extends string = string,
    > = {
        decompressableState: SetDecompressibleStateInstructionDataArgs["decompressableState"];
        treeAuthority: Address<TAccountTreeAuthority>;
        treeCreator: TransactionSigner<TAccountTreeCreator>;
    }

    Type Parameters

    • TAccountTreeAuthority extends string = string
    • TAccountTreeCreator extends string = string
    Index

    Properties

    treeAuthority: Address<TAccountTreeAuthority>

    The tree's TreeConfig PDA, which stores its configuration and acts as the tree's authority for CPIs into the compression program.

    treeCreator: TransactionSigner<TAccountTreeCreator>

    Creator of the tree, recorded in TreeConfig when the tree was created.