UNPKG

@bella-defintech/uniswap-v3-simulator

Version:

the 'Tuner', a Uniswap V3 Simulator

5 lines (4 loc) 244 B
import { CorePool } from "../core/CorePool"; export declare type CorePoolView = Pick<CorePool, { [K in keyof CorePool]-?: CorePool[K] extends Function ? K extends "getTick" | "getPosition" | "querySwap" ? K : never : K; }[keyof CorePool]>;