bip32-0.1.1: README.md
# bip32
Haskell implementation of the BIP-0032 standard: Hierarchical Deterministic
Wallets, for Bitcoin and other cryptocurrencies.
Based on the specification
at [BIP-0032](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki).
This library builds on GHC and GHCJS.
## Developing in GHCJS
* `cabal --ghcjs build` will build the Haskell `bip32` library with the
JavaScript dependencies already compiled at `js/index.compiled.js`.
* If the `js/index.js` file changes, run `npx webpack` to regenerate
`js/index.compiled.js` and commit both files to the repository.
* If the `package.json` file changes, run `nmp install -D` to get new JS
dependencies, and then run `npx webpack` as above.