From 9db96d17367680406da9fe598b12912208205729 Mon Sep 17 00:00:00 2001 From: Moudy Date: Wed, 4 Feb 2026 09:20:56 +0100 Subject: [PATCH] LEZ testnet v0.1 wallet setup tutorial --- LEZ testnet v0.1 tutorials/wallet setup.md | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 LEZ testnet v0.1 tutorials/wallet setup.md diff --git a/LEZ testnet v0.1 tutorials/wallet setup.md b/LEZ testnet v0.1 tutorials/wallet setup.md new file mode 100644 index 00000000..e5a43961 --- /dev/null +++ b/LEZ testnet v0.1 tutorials/wallet setup.md @@ -0,0 +1,26 @@ +This repository includes a CLI for interacting with the Logos Blockchain. To install it, run the following command from the root of the repository: + +```bash +cargo install --path wallet --force +``` + +To check that everythin is working, run `wallet help`. + +## Available Wallet Commands + +| Command | Description | +|------------------------|-------------------------------------------------------------| +| `wallet auth-transfer` | Authenticated transfer (init, send) | +| `wallet chain-info` | Chain info queries (current-block-id, block, transaction) | +| `wallet account` | Account management (get, list, new, sync-private) | +| `wallet pinata` | PiƱata faucet (claim) | +| `wallet token` | Token operations (new, send) | +| `wallet amm` | AMM operations (new, swap, add-liquidity, remove-liquidity) | +| `wallet check-health` | Health checks that the wallet is connected to the node | +| `wallet config` | Config Setup (get, set) | +| `wallet restore-keys ` | Keys restore from a given password at given `depth` | +| `wallet deploy-program`| Program deployment | +| `wallet help` | Help | + +Some completion scripts exists, see the [completions](./completions/README.md) folder. +