From d36b4acc58a4f452e87f62d6ff7c0417f7e433dd Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Tue, 17 Feb 2015 18:51:15 -0300 Subject: [PATCH] Create README.md --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1cd5d6d --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# bitcore-wallet-service + + +# Quick Guide + +``` bash + # Start the server + npm ./app.js + + # Try the CLI interfase + cd bit-wallet + + # Create a 2-2 wallet (john.dat is the file were the wallet critical data will be stored) + + ./bit -c john.dat create 2-2 john -n testnet + * Secret to share: + 0a18bed5-5607-4fde-a809-dc6561bc0664:L3WtafRAEHty7h2J7VCHdiyzFboAdVFnNZXMmqDGw4yiu5kW9Tp4:T + ./bit -c join.dat status + + # Join the wallet + ./bit -c pete.dat join 0a18bed5-5607-4fde-a809-dc6561bc0664:L3WtafRAEHty7h2J7VCHdiyzFboAdVFnNZXMmqDGw4yiu5kW9Tp4:T + ./bit -c pete.dat status + + export BIT_FILE=pete.dat + ./bit address + [1bitcoinaddress] + ./bit balance + ./bit send 1xxxxx 100 "100 satoshis to mother" + ./bit status + + # List all commands: + ./bit --help + ```