Coda by Ian Macalinao
    Preparing search index...

    Type Alias DeprecatedSetReservationListInstruction<TProgram, TAccountMasterEdition, TAccountReservationList, TAccountResource, TRemainingAccounts>

    DeprecatedSetReservationListInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountMasterEdition extends string
                ? WritableAccount<TAccountMasterEdition>
                : TAccountMasterEdition,
            TAccountReservationList extends string
                ? WritableAccount<TAccountReservationList>
                : TAccountReservationList,
            TAccountResource extends string
                ? ReadonlySignerAccount<TAccountResource> & AccountSignerMeta<
                    TAccountResource,
                >
                : TAccountResource,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof TOKEN_METADATA_PROGRAM_ADDRESS
    • TAccountMasterEdition extends string | AccountMeta = string
    • TAccountReservationList extends string | AccountMeta = string
    • TAccountResource extends string | AccountMeta = string
    • TRemainingAccounts extends readonly AccountMeta[] = []