Please find explained how to
- Generate a bip44 12 word seed
- How to derive a HEAT private from this seed
- How to create a public key from this private key
- How to create a HEAT numeric address from the public key
Clone this repo to your local computer
Install dependencies
npm install
To run the tests do
npm run test
The sdk can be used both in a nodejs environment as well as in the browser.
For nodejs usage please use the following in package.json
{
"dependencies": {
"heat-sdk-v2": "heatcrypto/heat-sdk-v2#master"
}
}
For browser usage please use the following in package.json
{
"dependencies": {
"heat-sdk": "heat-sdk"
}
}