Coda by Ian Macalinao
    Preparing search index...

    Type Alias VerifyInstruction<TProgram, TAccountAuthority, TAccountDelegateRecord, TAccountMetadata, TAccountCollectionMint, TAccountCollectionMetadata, TAccountCollectionMasterEdition, TAccountSystemProgram, TAccountSysvarInstructions, TRemainingAccounts>

    VerifyInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountAuthority extends string
                ? ReadonlySignerAccount<TAccountAuthority> & AccountSignerMeta<
                    TAccountAuthority,
                >
                : TAccountAuthority,
            TAccountDelegateRecord extends string
                ? ReadonlyAccount<TAccountDelegateRecord>
                : TAccountDelegateRecord,
            TAccountMetadata extends string
                ? WritableAccount<TAccountMetadata>
                : TAccountMetadata,
            TAccountCollectionMint extends string
                ? ReadonlyAccount<TAccountCollectionMint>
                : TAccountCollectionMint,
            TAccountCollectionMetadata extends string
                ? WritableAccount<TAccountCollectionMetadata>
                : TAccountCollectionMetadata,
            TAccountCollectionMasterEdition extends string
                ? ReadonlyAccount<TAccountCollectionMasterEdition>
                : TAccountCollectionMasterEdition,
            TAccountSystemProgram extends string
                ? ReadonlyAccount<TAccountSystemProgram>
                : TAccountSystemProgram,
            TAccountSysvarInstructions extends string
                ? ReadonlyAccount<TAccountSysvarInstructions>
                : TAccountSysvarInstructions,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof TOKEN_METADATA_PROGRAM_ADDRESS
    • TAccountAuthority extends string | AccountMeta = string
    • TAccountDelegateRecord extends string | AccountMeta = string
    • TAccountMetadata extends string | AccountMeta = string
    • TAccountCollectionMint extends string | AccountMeta = string
    • TAccountCollectionMetadata extends string | AccountMeta = string
    • TAccountCollectionMasterEdition extends string | AccountMeta = string
    • TAccountSystemProgram extends string | AccountMeta = "11111111111111111111111111111111"
    • TAccountSysvarInstructions extends string | AccountMeta = "Sysvar1nstructions1111111111111111111111111"
    • TRemainingAccounts extends readonly AccountMeta[] = []