diff options
author | Determinant <[email protected]> | 2019-08-06 21:28:36 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-08-06 21:28:36 -0400 |
commit | 4b43cf54640e56a48c2536600b47c5a2c4a1b94b (patch) | |
tree | d3065ed5a2dbe04de4fe148d0bbb9d3621de8169 /README.rst | |
parent | b83c5706e90bd735740e06c6f1d0e146e26167e6 (diff) |
add --gen-batch feature; update README
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -35,10 +35,10 @@ Example .. code-block:: bash - python ./ethy.py --verify-key mywallet.json # unlock the wallet and verify whether the - # encrypted private key matches the address - python ./ethy.py --show-key mywallet.json # reveal the private key (secp256k1) + ethy.py --verify-key mywallet.json # unlock the wallet and verify whether the + # encrypted private key matches the address + ethy.py --show-key mywallet.json # reveal the private key (secp256k1) - python ./ethy.py --gen > mywallet.json # generate a regular wallet (1s) - python ./ethy.py --gen --light > mywallet.json # generate a wallet (fast) - python ./ethy.py --gen --with-key > mywallet.json # generate a wallet with the given private key + ethy.py --gen > mywallet.json # generate a regular wallet (1s) + ethy.py --gen --light > mywallet.json # generate a wallet (fast) + ethy.py --gen --with-key > mywallet.json # generate a wallet with the given private key |