Coda by Ian Macalinao
    Preparing search index...

    Interface RedeemTokensInput<TAccountRedeemer, TAccountSourceAuthority, TAccountIouMint, TAccountIouSource, TAccountRedemptionVault, TAccountRedemptionDestination, TAccountTokenProgram>

    interface RedeemTokensInput<
        TAccountRedeemer extends string = string,
        TAccountSourceAuthority extends string = string,
        TAccountIouMint extends string = string,
        TAccountIouSource extends string = string,
        TAccountRedemptionVault extends string = string,
        TAccountRedemptionDestination extends string = string,
        TAccountTokenProgram extends string = string,
    > {
        amount: number | bigint;
        iouMint: Address<TAccountIouMint>;
        iouSource: Address<TAccountIouSource>;
        redeemer: Address<TAccountRedeemer>;
        redemptionDestination: Address<TAccountRedemptionDestination>;
        redemptionVault: Address<TAccountRedemptionVault>;
        sourceAuthority: TransactionSigner<TAccountSourceAuthority>;
        tokenProgram?: Address<TAccountTokenProgram>;
    }

    Type Parameters

    • TAccountRedeemer extends string = string
    • TAccountSourceAuthority extends string = string
    • TAccountIouMint extends string = string
    • TAccountIouSource extends string = string
    • TAccountRedemptionVault extends string = string
    • TAccountRedemptionDestination extends string = string
    • TAccountTokenProgram extends string = string
    Index

    Properties

    amount: number | bigint
    iouMint: Address<TAccountIouMint>
    iouSource: Address<TAccountIouSource>
    redeemer: Address<TAccountRedeemer>
    redemptionDestination: Address<TAccountRedemptionDestination>
    redemptionVault: Address<TAccountRedemptionVault>
    sourceAuthority: TransactionSigner<TAccountSourceAuthority>
    tokenProgram?: Address<TAccountTokenProgram>