UNPKG

@thinkincoin-libs/sdk-core

Version:

⚒️ An SDK for building applications on top of Uniswap V3

18 lines (13 loc) 342 B
import JSBI from 'jsbi' // exports for external consumption export type BigintIsh = JSBI | string | number export enum TradeType { EXACT_INPUT, EXACT_OUTPUT } export enum Rounding { ROUND_DOWN, ROUND_HALF_UP, ROUND_UP } export const MaxUint256 = JSBI.BigInt('0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff')