Type Alias SwapTrade

SwapTrade: {
    currencyAmountIn: CurrencyAmount;
    currencyAmountOut: CurrencyAmount;
    executionPrice: Price;
    getActions: (() => Promise<SwapAction[]>);
}