Coda by Ian Macalinao
    Preparing search index...

    Type Alias TransferV2Instruction<TProgram, TAccountTreeAuthority, TAccountPayer, TAccountAuthority, TAccountLeafOwner, TAccountLeafDelegate, TAccountNewLeafOwner, TAccountMerkleTree, TAccountCoreCollection, TAccountLogWrapper, TAccountCompressionProgram, TAccountSystemProgram, TRemainingAccounts>

    TransferV2Instruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountTreeAuthority extends string
                ? WritableAccount<TAccountTreeAuthority>
                : TAccountTreeAuthority,
            TAccountPayer extends string
                ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<
                    TAccountPayer,
                >
                : TAccountPayer,
            TAccountAuthority extends string
                ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<
                    TAccountAuthority,
                >
                : TAccountAuthority,
            TAccountLeafOwner extends string
                ? ReadonlyAccount<TAccountLeafOwner>
                : TAccountLeafOwner,
            TAccountLeafDelegate extends string
                ? ReadonlyAccount<TAccountLeafDelegate>
                : TAccountLeafDelegate,
            TAccountNewLeafOwner extends string
                ? ReadonlyAccount<TAccountNewLeafOwner>
                : TAccountNewLeafOwner,
            TAccountMerkleTree extends string
                ? WritableAccount<TAccountMerkleTree>
                : TAccountMerkleTree,
            TAccountCoreCollection extends string
                ? ReadonlyAccount<TAccountCoreCollection>
                : TAccountCoreCollection,
            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
    • TAccountPayer extends string | AccountMeta<string> = string
    • TAccountAuthority 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
    • TAccountCoreCollection extends string | AccountMeta<string> = string
    • TAccountLogWrapper extends string | AccountMeta<string> = "mnoopTCrg4p8ry25e4bcWA9XZjbNjMTfgYVGGEdRsf3"
    • TAccountCompressionProgram extends string | AccountMeta<string> = "mcmt6YrQEMKw8Mw43FmpRLmf7BqRnFMKmAcbxE3xkAW"
    • TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111"
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []