UNPKG

evx-sdk

Version:

The Evx SDK is a developer toolkit designed to simplify interaction with the Evx decentralized liquidity protocol. It provides an abstraction layer over the smart contracts, allowing developers to easily build applications, integrate liquidity pools, fetc

15 lines (14 loc) 417 B
import { IBaseCommandParams } from '../../commands/params/IBaseCommandParams'; /** * @notice Parameters for initializing a flash loan * @dev Contains all the parameters needed to initialize a flash loan */ export interface IInitFlashCommandParams extends IBaseCommandParams { token0: string; token1: string; fee1: number; amount0: bigint; amount1: bigint; fee2: number; fee3: number; }