UNPKG
@unisat/wallet-sdk
Version:
latest (1.9.0)
1.9.0
1.9.0-beta.1
1.8.0
1.8.0-beta.3
1.8.0-beta.2
1.8.0-beta.1
1.7.5
1.7.3
1.7.2
1.7.1
1.7.0
1.6.2
1.6.1
1.6.0
1.5.3
1.5.2
1.5.1
1.5.0
1.4.1
1.4.0
1.3.0
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
UniSat Wallet SDK
github.com/unisat-wallet/wallet-sdk
unisat-wallet/wallet-sdk
@unisat/wallet-sdk
/
lib
/
src
/
runes
/
rund_id.d.ts
12 lines
(11 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
declare
class
RuneId
{
block
:
number
;
tx
:
number
;
constructor
(
{ block, tx }: { block:
number
; tx:
number
; }
);
static
fromBigInt
(
n
:
any
):
RuneId
;
toString
():
string
;
static
fromString
(
s
:
string
):
RuneId
; }