Coda by Ian Macalinao
    Preparing search index...

    Type Alias TransferV1Instruction<TProgram, TAccountAsset, TAccountCollection, TAccountPayer, TAccountAuthority, TAccountNewOwner, TAccountSystemProgram, TAccountLogWrapper, TRemainingAccounts>

    TransferV1Instruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountAsset extends string
                ? WritableAccount<TAccountAsset>
                : TAccountAsset,
            TAccountCollection extends string
                ? ReadonlyAccount<TAccountCollection>
                : TAccountCollection,
            TAccountPayer extends string
                ? WritableSignerAccount<TAccountPayer> & AccountSignerMeta<
                    TAccountPayer,
                >
                : TAccountPayer,
            TAccountAuthority extends string
                ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<
                    TAccountAuthority,
                >
                : TAccountAuthority,
            TAccountNewOwner extends string
                ? ReadonlyAccount<TAccountNewOwner>
                : TAccountNewOwner,
            TAccountSystemProgram extends string
                ? ReadonlyAccount<TAccountSystemProgram>
                : TAccountSystemProgram,
            TAccountLogWrapper extends string
                ? ReadonlyAccount<TAccountLogWrapper>
                : TAccountLogWrapper,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof MPL_CORE_PROGRAM_PROGRAM_ADDRESS
    • TAccountAsset extends string | AccountMeta<string> = string
    • TAccountCollection extends string | AccountMeta<string> = string
    • TAccountPayer extends string | AccountMeta<string> = string
    • TAccountAuthority extends string | AccountMeta<string> = string
    • TAccountNewOwner extends string | AccountMeta<string> = string
    • TAccountSystemProgram extends string | AccountMeta<string> = string
    • TAccountLogWrapper extends string | AccountMeta<string> = string
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []