Go to file
Matias Alejo Garcia a03f2f7b8f Update README.md 2015-02-17 18:55:37 -03:00
bit-wallet working after refactor 2015-02-16 19:58:17 -03:00
lib merge SignUtils into WalletUtils 2015-02-17 16:42:47 -03:00
test merge SignUtils into WalletUtils 2015-02-17 16:42:47 -03:00
.gitignore move / rename client files 2015-02-15 11:35:21 -03:00
README.md Update README.md 2015-02-17 18:55:37 -03:00
TODO move / rename client files 2015-02-15 11:35:21 -03:00
TODO.txt add express app 2015-02-11 10:54:43 -03:00
app.js fix broadcasting 2015-02-15 19:12:45 -03:00
package.json test minimum fee 2015-02-16 14:27:01 -03:00

README.md

bitcore-wallet-service

Quick Guide

 # 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
   
   # Export your critical wallet data (you need quorum of wallet's copayer to extract coins)
   ./bit export
   # Or export it to a QR 
   ./bit export --qr
   
   # Import it later
   ./bit import <file>
   
   # List all commands:
    ./bit --help