Browse Source

Merge pull request #98 from matiaspando/fix/typos

Fixing typos
activeAddress
Matias Alejo Garcia 10 years ago
parent
commit
f3a3724b4a
  1. 6
      README.md

6
README.md

@ -95,8 +95,8 @@ You can safely access a wallet from different devices. Just copy the wallet file
It is possible to export a wallet with restricted access level. The levels are:
```
readonly : allows to read wallet data: balance, tx proposals
readwrite: + allows to create addresses and unsigned tx prposals
full : + allows sign tx prposals
readwrite: + allows to create addresses and unsigned tx proposals
full : + allows sign tx proposals
```
`readonly` will only export the Wallet's Extended PublicKeys, and only the derived private key required for signing 'GET' request (readonly) to BWS. `readwrite` will add the derived private key required for signing all other requests (as POST) so readwrite access will be possible. And `full` will export also the Extended Private Key, which is necesary for signing wallet's transactions. `bit import` can handle any for the levels correctly.
@ -108,7 +108,7 @@ bit export -o wallet.dat
bit export -o wallet.dat --access readonly
# readwrite access (can create addresses, propose transactions, reject TX, but does not have signing keys)
# Import the wallet , with giveng access level
# Import the wallet , with given access level
bit import wallet.dat
# Export also support QR output:

Loading…
Cancel
Save