Coda by Ian Macalinao
    Preparing search index...

    Type Alias SetDecompressibleStateInstruction<TProgram, TAccountTreeAuthority, TAccountTreeCreator, TRemainingAccounts>

    SetDecompressibleStateInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountTreeAuthority extends string
                ? WritableAccount<TAccountTreeAuthority>
                : TAccountTreeAuthority,
            TAccountTreeCreator extends string
                ? ReadonlySignerAccount<TAccountTreeCreator> & AccountSignerMeta<
                    TAccountTreeCreator,
                >
                : TAccountTreeCreator,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof BUBBLEGUM_PROGRAM_ADDRESS
    • TAccountTreeAuthority extends string | AccountMeta<string> = string
    • TAccountTreeCreator extends string | AccountMeta<string> = string
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []