mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import bip21 = require('bip21');
|
|
let decoded:any = bip21.decode('bitcoin:1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH?amount=20.3&label=Foobar');
|
|
|
|
let encoded:string = bip21.encode('1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH', {
|
|
amount: 20.3,
|
|
label: 'Foobar'
|
|
});
|
|
|