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

11 lines (10 loc) 288 B
/** * @notice Output for the quote exact input single query * @dev Contains the quote data returned by the contract */ export interface IQuoteExactInputSingleOutput { amountOut: bigint; sqrtPriceX96After: bigint; initializedTicksCrossed: number; gasEstimate: bigint; }