Interface FlashLoanSimulation

interface FlashLoanSimulation {
    actions: FlashLoanAction[];
    estimatedCost: number;
    estimatedProfit: number;
    loanAmount: number;
    logs: string[];
    netProfit: number;
    success: boolean;
    tokenMint: string;
}

Properties

actions: FlashLoanAction[]
estimatedCost: number
estimatedProfit: number
loanAmount: number
logs: string[]
netProfit: number
success: boolean
tokenMint: string