UNPKG

@bella-defintech/uniswap-v3-simulator

Version:

the 'Tuner', a Uniswap V3 Simulator

7 lines (6 loc) 258 B
import { PoolState } from "../model/PoolState"; export interface PoolStateContainer { addPoolState: (PoolState: PoolState) => string; getPoolState: (PoolStateId: string) => PoolState | undefined; hasPoolState: (PoolStateId: string) => boolean; }