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
/
decrease_liquidity.d.ts
10 lines
(9 loc)
•
305 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Uint64String
,
Uint128String
,
Uint256String
}
from
'../../stores/library/int'
;
export
interface
DecreaseLiquidityParams
{
poolAddress:
Buffer;
tokenId:
Uint64String;
liquidity:
Uint128String;
amount0Min:
Uint256String;
amount1Min:
Uint256String;
deadline:
Uint256String;
}