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

16 lines (15 loc) 473 B
import { IBaseCommandParams } from './IBaseCommandParams'; /** * @notice Parameters for executing an exact output single swap * @dev Extends base command parameters with swap specific parameters */ export interface ISwapExactOutputSingleCommandParams extends IBaseCommandParams { tokenIn: string; tokenOut: string; fee: number; recipient: string; deadline: number; amountOut: bigint; amountInMaximum: bigint; sqrtPriceLimitX96: bigint; }