UNPKG

@swaptoshi/dex-module

Version:

Klayr decentralized exchange (dex) on-chain module

15 lines (14 loc) 420 B
import { Uint24String, Int24String, Uint256String } from '../../stores/library/int'; export interface MintParams { token0: Buffer; token1: Buffer; fee: Uint24String; tickLower: Int24String; tickUpper: Int24String; amount0Desired: Uint256String; amount1Desired: Uint256String; amount0Min: Uint256String; amount1Min: Uint256String; recipient: Buffer; deadline: Uint256String; }