Releases: panda-suite/pandacash-core
Releases · panda-suite/pandacash-core
v0.3.0
- 🔨 Combined BCH node provider and wallet provider into a single bchjs instance, per bchjs version 0.1.0-alpha.3.
- 🐛 Normalised bcash address/private key notations, so they work with other libraries.
- ✨ Added
pandaCashCore.stopNode()
function - 🔨 Now stops the running bcash client when trying to start a new one.
v0.2.0
- 🔨 Refactored account generation into a PandaAccount class.
- ✨ PandaCashCore
server.listen()
now returns a Promise, in addition to having a callback function. - 🚨 Added basic tests for connection and PandaAccount.
- 📚 Added several example scripts under the
examples/
folder.
v0.1.0
- 🎉 Extracted
pandacash-core
frompandacash-cli
.
Earlier Changelog for pandacash-cli:
v0.4.1
- 🎨 Separated Wallet RPC from regular node RPC, and replaced internal RPC API with bchjs.
- 🔥 Removed
seedAccounts
parameter. - 🐛 Fixed a bug where generated accounts were not working with bcash.
v0.4.0
- ✨ Enabled pandacash to be imported as a node module into other projects.
- 🔥 Removed rest.bitcoin.com API functionality for now.
v0.3.0
- 💥 Moved node implementation from a Bitcoin-ABC docker image to nodeJS based node implementation bcash.
v0.2.1
- 🐛 Fixed REST API breaking because rest.bitcoin.com updated, and locked the version of this dependency to 1.10.0
- 🐳 Changed Dockerfile source image to node:8
- ⚡ Added logging of options when debug flag is enabled.
v0.2.0
- 📚 Added documentation section for troubleshooting.
- 🔨 Refactored docker commands in code to be more dynamic.
- ✨ Added the following command line options:
-a
or--accounts
: Specify the number of accounts to generate at startup.-m
or--mnemonic
: bip39 mnemonic phrase for generating a PRNG seed, which is in turn used for hierarchical deterministic (HD) account generation.--debug
: Show debug output from the bitcoin node.
v0.1.1
- 🐛 Fixed a bug where the REST API would not start up.
v0.1.0
- 🎉 Initial release, finished hackathon build.