raiblocks-address
v1.0.0
Published
Generate Raiblocks addressess in the browser and node.js
Downloads
5
Maintainers
Readme
raiblocks-address.js
Generate Raiblocks address in node.js and in the browser
Usage
It exports only one function that takes two arguments, a seed (UInt8Array) and a account number (integer)
To use in node.js:
First install:
npm install --save raiblocks-address
Then use
const raiblocksAddress = require('raiblocks-address');
console.log(raiblocksAddress(new Uint8Array(32), 0));
// {
// secret: '9f0e444c69f77a49bd0be89db92c38fe713e0963165cca12faf5712d7657120f',
// address: 'xrb_3i1aq1cchnmbn9x5rsbap8b15akfh7wj7pwskuzi7ahz8oq6cobd99d4r3b7'
// }
To use in the browser:
<script src="raiblocks-address/dist/raiblocks-address.min.js"></script>
Then use
console.log(raiblocksAddress(new Uint8Array(32), 0));
// {
// secret: '9f0e444c69f77a49bd0be89db92c38fe713e0963165cca12faf5712d7657120f',
// address: 'xrb_3i1aq1cchnmbn9x5rsbap8b15akfh7wj7pwskuzi7ahz8oq6cobd99d4r3b7'
// }