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
/
stores
/
library
/
int
/
unsigned
/
uint80.d.ts
9 lines
(8 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
BigIntAble
,
BigIntBase
}
from
'../base'
;
export
type
Uint80String
=
string
;
export
default
class
Uint80
extends
BigIntBase
{
static
from
(
value
:
BigIntAble
):
Uint80
;
protected
toBigNumber
(
value
:
bigint
):
this
;
static
MAX
:
string
;
static
MIN
:
string
; }