| CARVIEW |
bip32: BIP-0032: Hierarchical Deterministic Wallets for Bitcoin and other cryptocurrencies
BIP-0032: Hierarchical Deterministic Wallets for Bitcoin and other cryptocurrencies
This library builds in GHC and GHCJS.
[Skip to Readme]
Downloads
- bip32-0.2.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.1, 0.1.1, 0.1.2, 0.2 |
|---|---|
| Change log | CHANGELOG.md |
| Dependencies | base (>=4 && <5), base58-bytestring, binary, bitcoin-hash, bitcoin-keys, bytestring [details] |
| Tested with | ghc ==8.8.3, ghc ==8.6.5, ghcjs ==8.6.0 |
| License | Apache-2.0 |
| Copyright | Copyright (c) Renzo Carbonara 2020 |
| Author | k0001 |
| Maintainer | k0001 |
| Uploaded | by RenzoCarbonara at 2020-06-24T21:23:28Z |
| Revised | Revision 1 made by RenzoCarbonara at 2022-11-29T20:23:05Z |
| Category | Cryptography |
| Home page | https://gitlab.com/k0001/hs-bip32 |
| Bug tracker | https://gitlab.com/k0001/hs-bip32/issues |
| Distributions | |
| Reverse Dependencies | 1 direct, 0 indirect [details] |
| Downloads | 769 total (13 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs uploaded by user Build status unknown [no reports yet] |
Readme for bip32-0.2
[back to package description]bip32
Haskell implementation of the BIP-0032 standard: Hierarchical Deterministic Wallets, for Bitcoin and other cryptocurrencies.
Based on the specification at BIP-0032.
This library builds on GHC and GHCJS.
Developing in GHCJS
-
cabal --ghcjs buildwill build the Haskellbip32library with the JavaScript dependencies already compiled atjs/index.compiled.js. -
If the
js/index.jsfile changes, runnpx webpackto regeneratejs/index.compiled.jsand commit both files to the repository. -
If the
package.jsonfile changes, runnpm install -Dto get new JS dependencies, and then runnpx webpackas above.