From a4a85f2d09a2abd6d4dcf50aea583a3a2437db37 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 26 Aug 2016 18:30:36 -0700 Subject: [PATCH] readme: more cli examples. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index fdf4a81a..dc08842e 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,12 @@ $ bcoin cli wallet balance # Derive new address $ bcoin cli wallet address + +# Create a new account +$ bcoin cli wallet account create foo + +# Send from account +$ bcoin cli wallet send [address] 0.01 --account=foo ``` #### RPC (bitcoind-like) @@ -82,6 +88,7 @@ $ bcoin rpc getblockchaininfo $ bcoin rpc getwalletinfo $ bcoin rpc getpeerinfo $ bcoin rpc getbalance +$ bcoin rpc listtransactions $ bcoin rpc sendtoaddress [address] 0.01 ```