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
12 lines (11 loc) • 330 B
TypeScript
/**
* @notice Parameters for executing a quote exact input single query
* @dev Contains the parameters needed to get a quote for an exact input single swap
*/
export interface IQuoteExactInputSingleQueryParams {
tokenIn: string;
tokenOut: string;
fee: bigint;
amountIn: bigint;
sqrtPriceLimitX96: bigint;
}