Browse Source

update from upstream and added minor documentation changes

dev
jahway603 2 years ago
parent
commit
05d6d6a034
  1. 10
      README.md

10
README.md

@ -15,8 +15,8 @@ Run `silentdragonlite-cli help` to see a list of all commands.
## Notes:
* If you want to run your own server, please see [SilentDragonLite-cli lightwalletd](https://git.hush.is/hush/lightwalletd), and then run `./silentdragonlite-cli --server http://127.0.0.1:9067`. You might also need to pass `--dangerous` if you are using a self-signed TLS certificate.
* The log file is in `~/.silentdragonlite/silentdragonlite-cli.debug.log`. Wallet is stored in `~/.silentdragonlite/silentdragonlite-cli.dat`
* The log file is in `~/.silentdragonlite/silentdragonlite-cli.debug.log`.
* Wallet is stored in `~/.silentdragonlite/silentdragonlite-cli.dat`
### Note Management
silentdragonlite does automatic note and utxo management, which means it doesn't allow you to manually select which address to send outgoing transactions from. It follows these principles:
@ -38,8 +38,9 @@ silentdragonlite does automatic note and utxo management, which means it doesn't
| Debian 11 | 1.50.0 | [USE RUSTUP](https://www.rust-lang.org/tools/install) |
| Arch Linux | 1.56.0 | pacman -S rustc cargo |
* Debian 11 comes with a much older rust compiler (1.48.0) and so you want to use rustup with Debian and install at least 1.50.0.
* Debian 11 comes with a much older rust compiler (1.48.0) and so you want to [use Rustup](https://www.rust-lang.org/tools/install) with Debian and install at least 1.50.0.
* If you're using another Linux distro, then consult their package manager for rustc and cargo, but if it's tool old then you want to [use Rustup](https://www.rust-lang.org/tools/install) to install at least 1.50.0.
* Please add to the list of working tests above if you're using this on a different OS.
#### The compilation
@ -58,9 +59,10 @@ Here are some CLI arguments you can pass to `silentdragonlite-cli`. Please run `
* `--server`: Connect to a custom SilentDragonLite lightwalletd server.
* Example: `./silentdragonlite-cli --server http://127.0.0.1:9067`
* Example: `./silentdragonlite-cli --server https://lite.hush.is`
* Note that you need the http and https above in the --server option.
* `--seed`: Restore a wallet from a seed phrase. **Note** that this will fail if there is an existing wallet. Delete (or move) any existing wallet to restore from the 24-word seed phrase
* Example: `./silentdragonlite-cli --seed "twenty four words seed phrase"`
* `--recover`: Attempt to recover the seed phrase from a corrupted wallet
* `--recover`: Attempt to recover the seed phrase from a corrupted wallet
* `-n, --nosync`: By default, Silentdragonlite-cli will sync the wallet at startup, so use this option to prevent the automatic sync at startup
### Support

Loading…
Cancel
Save