Coda by Ian Macalinao
    Preparing search index...

    Type Alias PerformMintInstruction<TProgram, TAccountMintWrapper, TAccountMinterAuthority, TAccountTokenMint, TAccountDestination, TAccountMinter, TAccountTokenProgram, TRemainingAccounts>

    PerformMintInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountMintWrapper extends string
                ? WritableAccount<TAccountMintWrapper>
                : TAccountMintWrapper,
            TAccountMinterAuthority extends string
                ? ReadonlySignerAccount<TAccountMinterAuthority> & AccountSignerMeta<
                    TAccountMinterAuthority,
                >
                : TAccountMinterAuthority,
            TAccountTokenMint extends string
                ? WritableAccount<TAccountTokenMint>
                : TAccountTokenMint,
            TAccountDestination extends string
                ? WritableAccount<TAccountDestination>
                : TAccountDestination,
            TAccountMinter extends string
                ? WritableAccount<TAccountMinter>
                : TAccountMinter,
            TAccountTokenProgram extends string
                ? ReadonlyAccount<TAccountTokenProgram>
                : TAccountTokenProgram,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof QUARRY_MINT_WRAPPER_PROGRAM_ADDRESS
    • TAccountMintWrapper extends string | AccountMeta = string
    • TAccountMinterAuthority extends string | AccountMeta = string
    • TAccountTokenMint extends string | AccountMeta = string
    • TAccountDestination extends string | AccountMeta = string
    • TAccountMinter extends string | AccountMeta = string
    • TAccountTokenProgram extends string | AccountMeta = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
    • TRemainingAccounts extends readonly AccountMeta[] = []