Coda by Ian Macalinao
    Preparing search index...

    Type Alias TransferInstruction<TProgram, TAccountTreeAuthority, TAccountLeafOwner, TAccountLeafDelegate, TAccountNewLeafOwner, TAccountMerkleTree, TAccountLogWrapper, TAccountCompressionProgram, TAccountSystemProgram, TRemainingAccounts>

    TransferInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountTreeAuthority extends string
                ? ReadonlyAccount<TAccountTreeAuthority>
                : TAccountTreeAuthority,
            TAccountLeafOwner extends string
                ? ReadonlyAccount<TAccountLeafOwner>
                : TAccountLeafOwner,
            TAccountLeafDelegate extends string
                ? ReadonlyAccount<TAccountLeafDelegate>
                : TAccountLeafDelegate,
            TAccountNewLeafOwner extends string
                ? ReadonlyAccount<TAccountNewLeafOwner>
                : TAccountNewLeafOwner,
            TAccountMerkleTree extends string
                ? WritableAccount<TAccountMerkleTree>
                : TAccountMerkleTree,
            TAccountLogWrapper extends string
                ? ReadonlyAccount<TAccountLogWrapper>
                : TAccountLogWrapper,
            TAccountCompressionProgram extends string
                ? ReadonlyAccount<TAccountCompressionProgram>
                : TAccountCompressionProgram,
            TAccountSystemProgram extends string
                ? ReadonlyAccount<TAccountSystemProgram>
                : TAccountSystemProgram,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof BUBBLEGUM_PROGRAM_ADDRESS
    • TAccountTreeAuthority extends string | AccountMeta<string> = string
    • TAccountLeafOwner extends string | AccountMeta<string> = string
    • TAccountLeafDelegate extends string | AccountMeta<string> = string
    • TAccountNewLeafOwner extends string | AccountMeta<string> = string
    • TAccountMerkleTree extends string | AccountMeta<string> = string
    • TAccountLogWrapper extends string | AccountMeta<string> = "noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV"
    • TAccountCompressionProgram extends string | AccountMeta<string> = "cmtDvXumGCrqC1Age74AVPhSRVXJMd8PJS91L8KbNCK"
    • TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111"
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []