UNPKG
bip21
Version:
latest (3.0.0)
3.0.0
2.0.3
2.0.2
2.0.1
2.0.0
1.1.2
1.1.0
1.0.1
1.0.0
0.1.0
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
A BIP21 compatible URL encoding utility library
github.com/bitcoinjs/bip21
bitcoinjs/bip21
bip21
/
index.d.ts
11 lines
(10 loc)
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
type
Bip21Options
= {
amount
?:
number
;
label
?:
string
;
message
?:
string
; }
export
function
decode
(
uri
:
string
,
urnScheme
?:
string
): {
address
:
string
;
options
:
Bip21Options
};
export
function
encode
(
address
:
string
,
options
?:
Bip21Options
,
urnScheme
?:
string
):
string
;