From 09ead54eecb933a324509d1dfd30e05ebe1a326b Mon Sep 17 00:00:00 2001 From: philemon Date: Sun, 18 Dec 2016 11:55:08 +0300 Subject: [PATCH] Version 0.9.0 --- doc/wiki/using-mmgen/Getting-Started-with-MMGen.md | 12 ++++++++---- mmgen/globalvars.py | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/doc/wiki/using-mmgen/Getting-Started-with-MMGen.md b/doc/wiki/using-mmgen/Getting-Started-with-MMGen.md index d29ab080..6fe5060f 100644 --- a/doc/wiki/using-mmgen/Getting-Started-with-MMGen.md +++ b/doc/wiki/using-mmgen/Getting-Started-with-MMGen.md @@ -26,7 +26,7 @@ and no Bitcoin balance. *NOTE: Beginning with v0.8.7a, MMGen supports testnet, allowing you to perform the entire set of MMGen operations without risking real funds (free testnet -coins may be obtained at [https://tpfaucet.appspot.com/][2]). To use this +coins may be obtained at [https://tpfaucet.appspot.com/][02]). To use this feature, start bitcoind with the -testnet option and sync the testnet blockchain (about 9GB at this time of writing). To make MMGen use testnet instead of mainnet, supply the `--testnet=1` option as the first argument to all MMGen @@ -176,7 +176,7 @@ also). TOTAL: 0 BTC *While not covered in this introduction, note that it’s also possible to [import -ordinary Bitcoin addresses into your tracking wallet][1]. This allows you to +ordinary Bitcoin addresses into your tracking wallet][01]. This allows you to move funds from another wallet directly to MMGen without having to go through the network. To use it, you must save the keys corresponding to the addresses where the funds are stored in a separate file for use during signing.* @@ -401,6 +401,9 @@ standard command-line tools: $ echo 456d 7f5f 1c4b fe3b c916 b875 60ae 6a3e | tr -d ' ' | xxd -r -p | sha256sum -b | xxd -r -p | sha256sum -b | cut -c 1-8 fe3c6545 +A hexseed can be used to easily generate keys even without the MMGen software, +as explained in [this tutorial][03]. + #### Mnemonics, seeds and hexseeds: additional information MMGen commands that take mnemonic, seed or hexseed data may receive the data @@ -546,5 +549,6 @@ Transaction signing uses the same syntax: ... Signed transaction written to file 'ABCDEF[0.1].sigtx' -[1]: https://github.com/mmgen/mmgen/wiki/Tracking-and-spending-ordinary-Bitcoin-addresses -[2]: https://tpfaucet.appspot.com +[01]: https://github.com/mmgen/mmgen/wiki/Tracking-and-spending-ordinary-Bitcoin-addresses +[02]: https://tpfaucet.appspot.com +[03]: Recovering-Keys-Without-MMGen diff --git a/mmgen/globalvars.py b/mmgen/globalvars.py index 5fdb5994..03c00f63 100755 --- a/mmgen/globalvars.py +++ b/mmgen/globalvars.py @@ -36,7 +36,7 @@ class g(object): sys.exit(ev) # Variables - these might be altered at runtime: - version = '0.8.9' + version = '0.9.0' release_date = 'December 2016' proj_name = 'MMGen'