UNPKG

@bella-defintech/uniswap-v3-simulator

Version:

the 'Tuner', a Uniswap V3 Simulator

19 lines (18 loc) 412 B
import { EventType } from "../enum/EventType"; import JSBI from "jsbi"; export interface SwapEvent { id: number; type: EventType.SWAP; msgSender: string; recipient: string; amount0: JSBI; amount1: JSBI; amountSpecified: JSBI; sqrtPriceX96: JSBI; liquidity: JSBI; tick: number; blockNumber: number; transactionIndex: number; logIndex: number; date: Date; }