UNPKG
@energiswap/sdk-core
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
⚒️ An SDK for building applications on top of Energiswap V3
@energiswap/sdk-core
/
dist
/
constants.d.ts
13 lines
(12 loc)
•
301 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
JSBI
from
'jsbi'
;
export
declare
type
BigintIsh
=
JSBI
|
string
|
number
;
export
declare
enum
TradeType
{
EXACT_INPUT
=
0
,
EXACT_OUTPUT
=
1
}
export
declare
enum
Rounding
{
ROUND_DOWN
=
0
,
ROUND_HALF_UP
=
1
,
ROUND_UP
=
2
}
export
declare
const
MaxUint256
:
JSBI
;