diff --git a/docs/use/wallets/cli/install-zano-cli-wallet-ubuntu.md b/docs/use/wallets/cli/install-zano-cli-wallet-ubuntu.md index 1cf560b..65ea22b 100644 --- a/docs/use/wallets/cli/install-zano-cli-wallet-ubuntu.md +++ b/docs/use/wallets/cli/install-zano-cli-wallet-ubuntu.md @@ -3,116 +3,121 @@ sidebar_position: 4 slug: /use/wallets/install-zano-cli-wallet-ubuntu --- -# Install a Zano CLI Wallet (Ubuntu) +# Install a Zano CLI Wallet (Linux) -**Step 1** +Download Zano, extract the CLI binaries, sync the blockchain, and create your first wallet. -Go to the official site: https://zano.org and navigate to the downloads section +## 1. Download -**Step 2** - -Download Linux (Ubuntu 16.04+) CLI Wallet - -![alt install-zano-cli-wallet-step-3](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-3.png "install-zano-cli-wallet-step-3") - -**Step 3** - -Right click the file and select Properties - -![alt install-zano-cli-wallet-step-4](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-4.png "install-zano-cli-wallet-step-4") - -**Step 4** - -Copy the file name - -![alt install-zano-cli-wallet-step-5](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-5.png "install-zano-cli-wallet-step-5") - -**Step 5** - -Open a terminal in this directory & validate the authenticity of the file by running a checksum (XXX represents your version): +Go to [zano.org](https://zano.org) and navigate to the downloads section. Download the Linux release — it's distributed as an **AppImage** file: ``` -sha256sum zano-linux-x64-v.tar.bz2 +zano-linux-x64-release-v[].AppImage ``` -(Results should match release notes from Download page) +## 2. Verify the download -![alt install-zano-cli-wallet-step-6-1](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-6-1.png "install-zano-cli-wallet-step-6-1") -![alt install-zano-cli-wallet-step-6-2](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-6-2.png "install-zano-cli-wallet-step-6-2") +Open a terminal in the download directory and run a checksum against the file: -**Step 6** - -If checksums match, decompress & extract the .tar.bz2 file: - -``` -tar -xvjf zano-linux-x64-release-devtools-v1.5.0.143[336fac2].tar.bz2 +```bash +sha256sum zano-linux-x64-release-v*.AppImage ``` -![alt install-zano-cli-wallet-step-7](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-7.png "install-zano-cli-wallet-step-7") +Compare the output against the SHA256 hash published in the [release notes](https://github.com/hyle-team/zano/releases). If they don't match, re-download the file. -**Steps 7-9** +## 3. Extract the CLI binaries -1. Delete your original .tar.bz2 file -2. Move the Zano folder to a location of your choice -3. Within the Zano directory, open a terminal and run the daemon to start the node and download the blockchain: +The AppImage contains both the GUI wallet and CLI tools. To extract the CLI binaries: + +```bash +chmod +x zano-linux-x64-release-v*.AppImage +./zano-linux-x64-release-v*.AppImage --appimage-extract +``` + +This creates a `squashfs-root/` directory. The CLI binaries you need are inside: ``` +squashfs-root/usr/bin/zanod # the daemon (node) +squashfs-root/usr/bin/simplewallet # the CLI wallet +``` + +Move them to a directory of your choice: + +```bash +mkdir -p ~/zano +cp squashfs-root/usr/bin/zanod squashfs-root/usr/bin/simplewallet ~/zano/ +``` + +You can delete `squashfs-root/` after copying the binaries. + +![Extract CLI binaries from AppImage](/img/use/install-zano-cli-wallet-ubuntu/install-extract-appimage.png) + +## 4. Start the daemon + +The daemon (`zanod`) connects to the Zano network and downloads the blockchain. Open a terminal in your Zano directory and run: + +```bash ./zanod ``` -![alt install-zano-cli-wallet-step-8-10-1](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-8-10-1.png "install-zano-cli-wallet-step-8-10-1") -![alt install-zano-cli-wallet-step-8-10-2](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-8-10-2.png "install-zano-cli-wallet-step-8-10-2") +Wait for the blockchain to fully sync — this can take a few hours on the first run, depending on your connection speed. Keep the daemon running; you'll need it for the next step. -**Step 11** +![Starting the daemon](/img/use/install-zano-cli-wallet-ubuntu/install-zanod-sync.png) -Wait for the blockchain to download and sync. This may take quite a few hours, depending on your download speed. And leave the daemon running! We’ll need that to create our new wallet. +:::tip Skip the sync with a public node +If you don't want to download the full blockchain, you can connect your wallet directly to a public node instead. Skip to step 5 and add `--daemon-address` when opening your wallet: -![alt install-zano-cli-wallet-step-11](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-11.png "install-zano-cli-wallet-step-11") - -**Step 12** - -Once sync is complete, open another terminal in the Zano directory with the simplewalletbinary—that's our CLI wallet executable. Give command: - -``` -./simplewallet --generate-new-wallet=name.wallet +```bash +./simplewallet --generate-new-wallet name.wallet --daemon-address 37.27.100.59:10500 ``` -Replace “name” with your new wallet’s name, e.g.,: +See [Public Nodes](/docs/build/public-nodes) for available endpoints. +::: -``` -./simplewallet --generate-new-wallet=zanocli.wallet +## 5. Create a new wallet + +Once the daemon is synced (or if you're using a public node), open a new terminal in the same directory: + +```bash +./simplewallet --generate-new-wallet name.wallet ``` -![alt install-zano-cli-wallet-step-12](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-12.png "install-zano-cli-wallet-step-12") +Replace `name` with whatever you'd like to call your wallet (e.g., `mywallet.wallet`). -**Step 13** +You'll be prompted to create a password. Use a strong one — a password manager like KeePass or Bitwarden is recommended. -When asked, enter a password for your wallet. You should use a password generator, found in password managers such as KeePass. +After the password is set, the wallet will display your receive address (starts with `Zx`). This is the address you'll use to receive ZANO. -![alt install-zano-cli-wallet-step-13](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-13.png "install-zano-cli-wallet-step-13") +![Create a new wallet](/img/use/install-zano-cli-wallet-ubuntu/install-generate-wallet.png) -**Steps 14-15** +## 6. Back up your seed phrase -14. To open your new wallet, give the following command in the same terminal (again, substituting "name"): +Your seed phrase is the only way to recover your wallet if you lose the wallet file or forget the password. -``` -./simplewallet --wallet-file name.wallet -``` - -15. Enter your password, when prompted. Notice that the wallet displays your receive address after “Opened wallet.” You will use this to fund your new wallet. - -![alt install-zano-cli-wallet-step-15](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-15.png "install-zano-cli-wallet-step-15") - -**Steps 16-17** - -16. Now we must get our wallet’s seed phrase, as well as set an additional password for the seed itself. Give the command: +Inside the wallet console, run: ``` show_seed ``` -17. Again, when prompted provide a password for the seed phrase you’re about to get. Confirm the password, and be sure to save both it and your seed phrase!! +You'll be prompted for your wallet password, then asked to set a **seed password** (also called a [passphrase](/docs/use/seed-phrase#passphrase)). This is optional — if you set one, you'll need both the seed phrase and the passphrase to restore the wallet. -![alt install-zano-cli-wallet-step-17](/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-17.png "install-zano-cli-wallet-step-17") +The wallet will display your **seed phrase** (26 words for current wallets). Write it down and store it somewhere safe and offline. -**You've successfully installed your new Zano Wallet!** +![Back up your seed phrase](/img/use/install-zano-cli-wallet-ubuntu/install-show-seed.png) + +:::warning +Anyone with access to your seed phrase (and passphrase, if set) can take full control of your wallet. Never share it, never store it digitally in plain text. +::: + +## 7. Open an existing wallet + +To reopen your wallet in the future: + +```bash +./simplewallet --wallet-file name.wallet +``` + +Enter your password when prompted. + +**You're done.** Head over to [Using a Zano CLI Wallet](/docs/use/wallets/using-zano-cli-wallet-ubuntu) for sending, receiving, and more advanced operations. diff --git a/docs/use/wallets/cli/using-zano-cli-wallet-ubuntu.md b/docs/use/wallets/cli/using-zano-cli-wallet-ubuntu.md index ac05d9e..7f89b65 100644 --- a/docs/use/wallets/cli/using-zano-cli-wallet-ubuntu.md +++ b/docs/use/wallets/cli/using-zano-cli-wallet-ubuntu.md @@ -3,209 +3,278 @@ sidebar_position: 5 slug: /use/wallets/using-zano-cli-wallet-ubuntu --- -# Using a Zano CLI Wallet (Ubuntu) +# Using a Zano CLI Wallet -Open a terminal in the directory with Zanod. Start your node, by giving the command: +This guide assumes you've already [installed Zano and created a wallet](/docs/use/wallets/install-zano-cli-wallet-ubuntu). -``` +## Starting up + +Start the daemon in one terminal: + +```bash ./zanod ``` -Open another terminal in the same directory (with simplewallet). Start your wallet, by giving the following command, substituting the name of your wallet: +Once it's synced, open a second terminal and launch your wallet: -``` +```bash ./simplewallet --wallet-file name.wallet ``` -Enter your password, when prompted. Notice that the wallet displays your receive address after “Opened wallet.” You will use this to fund your new wallet. +Enter your password when prompted. The wallet will display your receive address after "Opened wallet." -![alt using-zano-ubuntu-enter-password](/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-enter-password.png "using-zano-ubuntu-enter-password") +![Open an existing wallet](/img/use/using-zano-cli-wallet-ubuntu/usage-open-wallet.png) -P.S. Zanod (your node) can be left running, if you’ll be transferring funds to your wallet soon. If not, close your wallet by giving the command: +To close the wallet cleanly, use the `exit` command. The daemon can be left running. -``` -exit -``` +## Checking your balance -After you’ve funded your new Zano CLI wallet, open it again and check for your funds (steps 1-2 above). If they’re not visible, wait a bit and then give the command: +If you've received funds but they aren't showing, resynchronize: ``` refresh ``` -Now let’s send some ZANO to a friend! - -The command for sending ZANO consists of four important bits of information: - -1. the command itself -2. the number of UTXOs with which to mix yours (between 10-50/maximum available) -3. the receiving address -4. the amount of ZANO you wish to send - -
-For example:
-(1) (2) (3) (4) - -![alt using-zano-ubuntu-send-bits-example](/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-send-bits-example.png "using-zano-ubuntu-send-bits-example") - -### Creating an Auditable CLI Wallet - -Owing to the inherent privacy of Zano wallets, no third parties can see their content on the blockchain, as with other cryptocurrencies with transparent ledgers. - -There are instances, however, in which a user may want, or even need, the balance and transaction history of a wallet to be visible to a third-party (e.g., a public foundation). In such a case, one can use an Zano auditable CLI wallet (the auditable wallets are currently only available as CLI). - -For further information on the auditable wallet, see https://docs.zano.org/docs/auditable-wallets - -Give the following command, substituting "name": +To see your balance: ``` +balance +``` + +To see balances for all assets (ZANO, confidential assets, etc.): + +``` +balance raw +``` + +![Check balance](/img/use/using-zano-cli-wallet-ubuntu/usage-balance.png) + +## Sending ZANO + +The `transfer` command takes a mixin count, destination address, and amount: + +``` +transfer
+``` + +- **mixin_count**: the number of decoy outputs mixed with yours for privacy. Use **15** for standard wallets, **0** for auditable wallets. +- **address**: the recipient's Zano address (starts with `Zx` or `aZx`) +- **amount**: the amount of ZANO to send + +Example — send 10 ZANO: + +``` +transfer 15 ZxD4wSgHgE5TRVHQRbPKNthSpNSJoQp6DPLNaL4f3YT5dDQarAEHB2bVroPWhkCD59GDfVDjBBHmgLd2M1P92h5c21KwPZqg 10 +``` + +You can send to multiple recipients in one transaction: + +``` +transfer 15 +``` + +An optional **payment_id** can be appended at the end for services that require it. + +![Send ZANO](/img/use/using-zano-cli-wallet-ubuntu/usage-transfer.png) + +### Sending assets + +To send a confidential asset other than ZANO, prefix the address with the asset ID: + +``` +transfer 15 :
+``` + +## Receiving ZANO + +Your receive address is shown when the wallet opens, or at any time with: + +``` +address +``` + +To generate an integrated address with an embedded payment ID (useful for exchanges or services): + +``` +integrated_address +``` + +Or with a specific payment ID: + +``` +integrated_address +``` + +## Transaction history + +View recent transactions (last 100 by default): + +``` +list_recent_transfers +``` + +With offset and count: + +``` +list_recent_transfers +``` + +Export transaction history to CSV: + +``` +export_history +``` + +Export recent transfers as JSON: + +``` +export_recent_transfers +``` + +## Restoring a wallet from seed + +If you've lost your wallet file or password, you can restore it using your seed phrase. + +Start the daemon, then in another terminal: + +```bash +./simplewallet --restore-wallet name.wallet +``` + +You'll be prompted to create a password for the restored wallet file, then enter your seed phrase. Current wallets use 26-word seeds; older wallets may have 24 or 25 words. If the seed was secured with a [passphrase](/docs/use/seed-phrase#passphrase), you'll need that too. + +![Restore wallet from seed](/img/use/using-zano-cli-wallet-ubuntu/usage-restore-wallet.png) + +If your seed phrase has a typo or swapped words, try the [Seed Doctor](/docs/use/wallets/seed-doctor) tool: + +```bash +./simplewallet --seed-doctor +``` + +## Auditable wallets + +Zano wallets are private by default — no third party can see balances or transactions on the blockchain. An **auditable wallet** lets a third party see your balances and transactions (e.g., for a public foundation or compliance). + +For more details, see the [Auditable Wallets](/docs/use/auditable-wallets) page. + +### Create an auditable wallet + +```bash ./simplewallet --generate-new-auditable-wallet name.wallet ``` -When prompted, enter your new password, preferably generated from a password generator. +Set a password when prompted. Note that auditable wallet addresses start with `aZx` (standard wallets start with `Zx`). -![alt using-zano-ubuntu-enter-new-password](/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-enter-new-password.png "using-zano-ubuntu-enter-new-password") +![Create an auditable wallet](/img/use/using-zano-cli-wallet-ubuntu/usage-auditable-wallet.png) -You now have an auditable CLI. Anyone to whom you provide the tracking seed will be able to see the wallet's balance and transaction history. +### Get the tracking seed -If you ever need to retrieve the tracking seed, simply open the wallet and give the following command: +Open the auditable wallet and run: ``` tracking_seed ``` -![alt using-zano-ubuntu-tracking-seed](/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-tracking-seed.png "using-zano-ubuntu-tracking-seed") +Share this tracking seed with anyone who needs to audit the wallet. They can restore a read-only copy using `--restore-wallet` and entering the tracking seed instead of a seed phrase. -Now, we must get our seed phrase, in case we ever need to restore our auditable CLI wallet. Within the wallet, give the command: +![Get tracking seed](/img/use/using-zano-cli-wallet-ubuntu/usage-tracking-seed.png) + +### Back up the seed phrase + +Just like a standard wallet: ``` show_seed ``` -Again, when prompted, supply and confirm another password, specific to the seed itself. +## Watch-only wallets -![alt using-zano-ubuntu-show-seed](/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-show-seed.png "using-zano-ubuntu-show-seed") - -Lastly, note that the address of an auditable wallet always begins with an initial "a", in contrast to a standard wallet, which always begins with "Zx": +A watch-only wallet lets someone view your wallet without being able to spend from it. Open the wallet you want to create a watch-only copy of, then: ``` -aZxazX8e7rgRdRgrukJnQ3US3P81jas2TZfY7tz99Hab7yUyB8rAGkAhoHH3jrBpSBJP8PyrU3YsHb7HRtmXk4CjeYvjCHVPU3g +save_watch_only ``` -### Restoring a CLI Wallet from Seed - -For whatever reason, you may lose your original Zano CLI wallet (your name.wallet file) or its password. All is not lost, if you safeguarded your seed. - -After starting zanod, open another terminal in the simple-wallet directory. Give the following command, supplying your seed phrase: +Example: ``` -./simplewallet --restore-wallet your 26 word seedphrase +save_watch_only mywallet_watchonly.wallet mypassword ``` -You will then be asked to reenter the seedphrase, enter the password specific to that seedphrase, and then enter your restored wallet's password. +## PoS staking -![alt using-zano-ubuntu-restore-wallet](/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-restore-wallet.png "using-zano-ubuntu-restore-wallet") +You can stake ZANO directly from the CLI wallet by launching it with the `--do-pos-mining` flag: -### Creating a Watch-Only CLI Wallet - -If you wish to allow someone to merely view your wallet, without being able to spend from it, you'll create a watch-only wallet. Open the wallet for which you wish to generate a watch-only wallet. Within the console, give the command, substituting the name of, and new password for, your new watch-only wallet: - -``` -save_watch_only new_name.wallet password_for_wallet +```bash +./simplewallet --wallet-file name.wallet --do-pos-mining ``` -![alt using-zano-ubuntu-watch-only](/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-watch-only.png "using-zano-ubuntu-watch-only") +To send staking rewards to a different address: -### Other Useful in-Terminal Flags - -To skip supplying your password when opening wallet - -``` ---password arg +```bash +./simplewallet --wallet-file name.wallet --do-pos-mining --pos-mining-reward-address
``` -Use daemon instance at : for changing default host and port +For an automated staking setup with PM2, see [Stake Zano on Boot](/docs/stake/advanced-setup/stake-zano-on-boot). -``` ---daemon-address arg -``` +![PoS staking](/img/use/using-zano-cli-wallet-ubuntu/usage-staking.png) -Prevents connecting to Zanod (daemon) for working offline (e.g., for cold-signing) +## Command-line flags -``` ---offline-mode -``` +These flags are passed when launching simplewallet. -Disables Tor from running with your wallet; this may be necessary if the Tor network itself is down. +| Flag | Description | +|------|-------------| +| `--wallet-file ` | Open an existing wallet | +| `--generate-new-wallet ` | Create a new standard wallet | +| `--generate-new-auditable-wallet ` | Create a new auditable wallet | +| `--restore-wallet ` | Restore a wallet from seed phrase or tracking seed | +| `--password ` | Supply wallet password (skip interactive prompt) | +| `--daemon-address :` | Connect to a specific daemon (local or [public node](/docs/build/public-nodes)) | +| `--offline-mode` | Don't connect to the daemon (for [cold-signing](/docs/build/exchange-guidelines/signing-transactions-offline)) | +| `--do-pos-mining` | Enable PoS staking | +| `--pos-mining-reward-address ` | Send staking rewards to a different address | +| `--rpc-bind-port ` | Run wallet as an RPC server on this port | +| `--rpc-bind-ip ` | Bind RPC server to this IP (default: 127.0.0.1) | +| `--jwt-secret ` | Enable JWT authentication for RPC | +| `--disable-tor-relay` | Disable Tor relay (may help if Tor network is down) | +| `--seed-doctor` | Attempt to recover a broken seed phrase (see [Seed Doctor](/docs/use/wallets/seed-doctor)) | +| `--derive_custom_seed` | Derive a seed from custom 24 words (advanced) | +| `--no-refresh` | Don't sync the wallet on startup | +| `--log-file ` | Set log file location | +| `--log-level <0-4>` | Set log verbosity | +| `--deaf` | Ignore all RPC commands (safe PoS mining mode) | +| `--command ` | Execute a wallet command non-interactively | -``` ---disable-tor-relay -``` +## In-wallet commands -Restores wallet from seed +These commands are used inside the wallet console after opening. -``` ---restore-wallet -``` - -Attempts to recover a seed phrase with a typo or swapped words (see [Seed Doctor](/docs/use/wallets/seed-doctor)) - -``` ---seed-doctor -``` - -Provides the destination for the log file, relative to the simplewalletbinary - -``` ---log-file arg -``` - -Sets the level of detail for the log - -``` ---log-level arg -``` - -Sets the level of detail for the log (same effect as above) - -``` ---set-log arg -``` - -Generates a new wallet that is auditable by a third party - -``` ---generate-new-auditable-wallet -``` - -And finally, to run any of the following commands outside of the wallet: - -``` ---command arg -``` - -**Other Useful in-Wallet Commands** - -address = Shows current wallet public address - -balance = Shows current wallet balance - -exit = Closes the wallet - -export_history [filename needed?] = Exports tx history into a CSV file - -export_recent_transfers = Writes recent transfer txs in json to wallet_recent_transfers.txt (in Zano directory) - -help = Shows a list of flags and commands - -list_recent_transfers = Shows recent maximum 1000 sent amounts, offset default = 0, count default = 100 - -refresh = Resynchronize transactions and balance - -resync = Resets all transfers and re-synchronize the wallet - -save = Saves wallet synchronized data - -show_seed = Displays secret 26 word phrase used to recover wallet - -sweep_below `` `` [payment_id]: Tries to transfer all coins with amount below the given limit to the given address +| Command | Description | +|---------|-------------| +| `address` | Show wallet public address | +| `balance` | Show balance (`balance raw` for all assets) | +| `refresh` | Resynchronize transactions and balance | +| `resync` | Reset all transfers and re-synchronize from scratch | +| `save` | Save wallet state | +| `exit` | Close the wallet | +| `help` | Show all available commands | +| `transfer` | `transfer [payment_id]` | +| `list_recent_transfers` | `[offset] [count]` — show recent transactions (max 1000) | +| `list_outputs` / `lo` | `[spent\|unspent] [ticker=ZANO]` — list UTXOs | +| `show_seed` | Display seed recovery phrase (26 words for current wallets) | +| `spendkey` | Display secret spend key | +| `viewkey` | Display secret view key | +| `tracking_seed` | Display tracking seed (auditable wallets) | +| `save_watch_only` | ` ` — export a watch-only wallet | +| `integrated_address` | `[payment_id]` — generate or decode an integrated address | +| `show_staking_history` | `[days]` — show PoS staking rewards | +| `export_history` | Export transaction history to CSV | +| `export_recent_transfers` | Export recent transfers as JSON | +| `sweep_below` | `
[payment_id]` — consolidate small outputs | +| `sweep_bare_outs` | Transfer all bare (non-ZC) outputs to self | +| `set_log` | `` — change log verbosity (0-4) | +| `deploy_new_asset` | `` — deploy a new confidential asset | +| `emit_asset` | ` ` — mint more of an asset you own | +| `burn_asset` | ` ` — burn asset tokens | +| `check_all_tx_keys` | Verify one-time secret keys for all sent transactions | diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-extract-appimage.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-extract-appimage.png new file mode 100644 index 0000000..443c5e3 Binary files /dev/null and b/static/img/use/install-zano-cli-wallet-ubuntu/install-extract-appimage.png differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-generate-wallet.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-generate-wallet.png new file mode 100644 index 0000000..06da16c Binary files /dev/null and b/static/img/use/install-zano-cli-wallet-ubuntu/install-generate-wallet.png differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-show-seed.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-show-seed.png new file mode 100644 index 0000000..3e00fe8 Binary files /dev/null and b/static/img/use/install-zano-cli-wallet-ubuntu/install-show-seed.png differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-1.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-1.png deleted file mode 100644 index 06a7650..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-1.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-11.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-11.png deleted file mode 100644 index 99b65bf..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-11.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-12.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-12.png deleted file mode 100644 index cc727a5..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-12.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-13.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-13.png deleted file mode 100644 index 500ca4a..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-13.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-15.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-15.png deleted file mode 100644 index 7b9293a..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-15.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-17.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-17.png deleted file mode 100644 index 69929c2..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-17.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-2.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-2.png deleted file mode 100644 index f4675d9..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-2.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-3.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-3.png deleted file mode 100644 index 755a074..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-3.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-4.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-4.png deleted file mode 100644 index 6ab66ee..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-4.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-5.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-5.png deleted file mode 100644 index b80d4b3..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-5.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-6-1.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-6-1.png deleted file mode 100644 index dcb22e1..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-6-1.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-6-2.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-6-2.png deleted file mode 100644 index ecc2160..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-6-2.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-7.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-7.png deleted file mode 100644 index c64b9da..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-7.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-8-10-1.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-8-10-1.png deleted file mode 100644 index e113a4f..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-8-10-1.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-8-10-2.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-8-10-2.png deleted file mode 100644 index fe10c0d..0000000 Binary files a/static/img/use/install-zano-cli-wallet-ubuntu/install-zano-cli-wallet-step-8-10-2.png and /dev/null differ diff --git a/static/img/use/install-zano-cli-wallet-ubuntu/install-zanod-sync.png b/static/img/use/install-zano-cli-wallet-ubuntu/install-zanod-sync.png new file mode 100644 index 0000000..7e813c9 Binary files /dev/null and b/static/img/use/install-zano-cli-wallet-ubuntu/install-zanod-sync.png differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/usage-auditable-wallet.png b/static/img/use/using-zano-cli-wallet-ubuntu/usage-auditable-wallet.png new file mode 100644 index 0000000..cc2578b Binary files /dev/null and b/static/img/use/using-zano-cli-wallet-ubuntu/usage-auditable-wallet.png differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/usage-balance.png b/static/img/use/using-zano-cli-wallet-ubuntu/usage-balance.png new file mode 100644 index 0000000..99ccfae Binary files /dev/null and b/static/img/use/using-zano-cli-wallet-ubuntu/usage-balance.png differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/usage-open-wallet.png b/static/img/use/using-zano-cli-wallet-ubuntu/usage-open-wallet.png new file mode 100644 index 0000000..57a6fc7 Binary files /dev/null and b/static/img/use/using-zano-cli-wallet-ubuntu/usage-open-wallet.png differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/usage-restore-wallet.png b/static/img/use/using-zano-cli-wallet-ubuntu/usage-restore-wallet.png new file mode 100644 index 0000000..52edf8e Binary files /dev/null and b/static/img/use/using-zano-cli-wallet-ubuntu/usage-restore-wallet.png differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/usage-staking.png b/static/img/use/using-zano-cli-wallet-ubuntu/usage-staking.png new file mode 100644 index 0000000..b4ab73b Binary files /dev/null and b/static/img/use/using-zano-cli-wallet-ubuntu/usage-staking.png differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/usage-tracking-seed.png b/static/img/use/using-zano-cli-wallet-ubuntu/usage-tracking-seed.png new file mode 100644 index 0000000..a557f46 Binary files /dev/null and b/static/img/use/using-zano-cli-wallet-ubuntu/usage-tracking-seed.png differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/usage-transfer.png b/static/img/use/using-zano-cli-wallet-ubuntu/usage-transfer.png new file mode 100644 index 0000000..273429d Binary files /dev/null and b/static/img/use/using-zano-cli-wallet-ubuntu/usage-transfer.png differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-enter-new-password.png b/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-enter-new-password.png deleted file mode 100644 index 9c25a8d..0000000 Binary files a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-enter-new-password.png and /dev/null differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-enter-password.png b/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-enter-password.png deleted file mode 100644 index 7b9293a..0000000 Binary files a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-enter-password.png and /dev/null differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-restore-wallet.png b/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-restore-wallet.png deleted file mode 100644 index abb051c..0000000 Binary files a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-restore-wallet.png and /dev/null differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-send-bits-example.png b/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-send-bits-example.png deleted file mode 100644 index 3b35944..0000000 Binary files a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-send-bits-example.png and /dev/null differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-show-seed.png b/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-show-seed.png deleted file mode 100644 index 56f74dd..0000000 Binary files a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-show-seed.png and /dev/null differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-tracking-seed.png b/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-tracking-seed.png deleted file mode 100644 index fbcf6bf..0000000 Binary files a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-tracking-seed.png and /dev/null differ diff --git a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-watch-only.png b/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-watch-only.png deleted file mode 100644 index b7452e3..0000000 Binary files a/static/img/use/using-zano-cli-wallet-ubuntu/using-zano-ubuntu-watch-only.png and /dev/null differ