2.0.3 • Published 3 years ago

bip21grs v2.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

bip21

build status Version

A BIP21 compatible URL encoding library for Groestlcoin.

Example

var bip21 = require('bip21grs')

var decoded = bip21.decode('groestlcoin:Ffqz14cyvZYJavD76t6oHNDJnGiWcZMVxR?amount=20.3&label=Foobar')

console.log(decoded)
// { address: 'Ffqz14cyvZYJavD76t6oHNDJnGiWcZMVxR',
//   options: {
//     amount: 20.3,
//     label: 'Foobar' }
// }
//
// WARNING: Remember to error check the `.address`!

console.log(bip21.encode('Ffqz14cyvZYJavD76t6oHNDJnGiWcZMVxR'))
// => groestlcoin:Ffqz14cyvZYJavD76t6oHNDJnGiWcZMVxR

console.log(bip21.encode('Ffqz14cyvZYJavD76t6oHNDJnGiWcZMVxR', {
	amount: 20.3,
	label: 'Foobar'
}))
// => groestlcoin:Ffqz14cyvZYJavD76t6oHNDJnGiWcZMVxR?amount=20.3&label=Foobar

License MIT