From ce7432e4987e5a58556ccece71db990031dcc5b6 Mon Sep 17 00:00:00 2001 From: ABresting Date: Wed, 11 Feb 2026 23:35:08 +0100 Subject: [PATCH] fix: correct CLI examples in README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 204e4a5..b02b08a 100644 --- a/README.md +++ b/README.md @@ -191,14 +191,14 @@ export VALIDATOR_HTTP_PORT=8080 ./target/release/setu-solver ``` -#### 3. Submit Transactions (CLI) +#### 3. Interact with the Network ```bash -# Check balance -./target/release/setu balance --address
+# Check balance (via HTTP API) +curl http://localhost:8080/api/v1/state/balance/
-# Transfer -./target/release/setu transfer --from --to --amount 100 +# Submit a transfer +./target/release/setu transfer submit --from --to --amount 100 ``` ### Docker Deployment