UNPKG
@swaptoshi/dex-module
Version:
latest (1.0.0-alpha.0)
1.0.0-alpha.0
Klayr decentralized exchange (dex) on-chain module
swaptoshi.com
Swaptoshi/swaptoshi-sdk
@swaptoshi/dex-module
/
dist
/
types
/
params
/
create_pool.d.ts
12 lines
(11 loc)
•
312 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Uint160String
,
Uint24String
}
from
'../../stores/library/int'
;
export
interface
CreatePoolParams
{
tokenA
:
Buffer
;
tokenASymbol
:
string
;
tokenADecimal
:
number
;
tokenB
:
Buffer
;
tokenBSymbol
:
string
;
tokenBDecimal
:
number
;
fee
:
Uint24String
;
sqrtPriceX96
:
Uint160String
; }