Interface FlashLoanAction

interface FlashLoanAction {
    description: string;
    exchange?: string;
    inputAmount: number;
    outputAmount: number;
    type: "swap" | "arbitrage" | "liquidation";
}

Properties

description: string
exchange?: string
inputAmount: number
outputAmount: number
type: "swap" | "arbitrage" | "liquidation"