From 9bb55f405273b78c1770b6fb0e42f13bec25c937 Mon Sep 17 00:00:00 2001 From: "Abdel @ StarkWare" Date: Wed, 4 Sep 2024 15:49:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20add=20example=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ead0d08..0170618 100644 --- a/README.md +++ b/README.md @@ -77,10 +77,18 @@ Commands: Usage: btczee node Subcommands: - run Run the node help Display help for node ``` +Example: + +```sh +zig build run -- node + +# OR (after a build) +./zig-out/bin/btczee node +``` + ### Wallet ```sh @@ -92,6 +100,15 @@ Subcommands: help Display help for wallet ``` +Example: + +```sh +zig build run -- wallet create + +# OR (after a build) +./zig-out/bin/btczee wallet create +``` + ## Test ```sh