Coda by Ian Macalinao
    Preparing search index...

    Type Alias RedeemAllTokensInstruction<TProgram, TAccountRedeemer, TAccountSourceAuthority, TAccountIouMint, TAccountIouSource, TAccountRedemptionVault, TAccountRedemptionDestination, TAccountTokenProgram, TRemainingAccounts>

    RedeemAllTokensInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountRedeemer extends string
                ? WritableAccount<TAccountRedeemer>
                : TAccountRedeemer,
            TAccountSourceAuthority extends string
                ? ReadonlySignerAccount<TAccountSourceAuthority> & AccountSignerMeta<
                    TAccountSourceAuthority,
                >
                : TAccountSourceAuthority,
            TAccountIouMint extends string
                ? WritableAccount<TAccountIouMint>
                : TAccountIouMint,
            TAccountIouSource extends string
                ? WritableAccount<TAccountIouSource>
                : TAccountIouSource,
            TAccountRedemptionVault extends string
                ? WritableAccount<TAccountRedemptionVault>
                : TAccountRedemptionVault,
            TAccountRedemptionDestination extends string
                ? WritableAccount<TAccountRedemptionDestination>
                : TAccountRedemptionDestination,
            TAccountTokenProgram extends string
                ? ReadonlyAccount<TAccountTokenProgram>
                : TAccountTokenProgram,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof QUARRY_REDEEMER_PROGRAM_ADDRESS
    • TAccountRedeemer extends string | AccountMeta = string
    • TAccountSourceAuthority extends string | AccountMeta = string
    • TAccountIouMint extends string | AccountMeta = string
    • TAccountIouSource extends string | AccountMeta = string
    • TAccountRedemptionVault extends string | AccountMeta = string
    • TAccountRedemptionDestination extends string | AccountMeta = string
    • TAccountTokenProgram extends string | AccountMeta = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
    • TRemainingAccounts extends readonly AccountMeta[] = []