You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
4.5 KiB

10 years ago
# bitcore-wallet-service
10 years ago
[![NPM Package](https://img.shields.io/npm/v/bitcore-wallet-service.svg?style=flat-square)](https://www.npmjs.org/package/bitcore-wallet-service)
[![Build Status](https://img.shields.io/travis/bitpay/bitcore-wallet-service.svg?branch=master&style=flat-square)](https://travis-ci.org/bitpay/bitcore-wallet-service)
[![Coverage Status](https://img.shields.io/coveralls/bitpay/bitcore-wallet-service.svg?style=flat-square)](https://coveralls.io/r/bitpay/bitcore-wallet-service)
10 years ago
10 years ago
A Multisig HD Wallet Service, with minimun server trust.
10 years ago
# Quick Guide
``` bash
# Start the server
npm ./app.js
10 years ago
# Try the CLI interface
10 years ago
cd bit-wallet
10 years ago
# Create a 2-2 wallet (john.dat is the file were the wallet critical data will be stored, add -t for testnet)
./bit -c john.dat create 2-2 john
10 years ago
* Secret to share:
0a18bed5-5607-4fde-a809-dc6561bc0664:L3WtafRAEHty7h2J7VCHdiyzFboAdVFnNZXMmqDGw4yiu5kW9Tp4:T
./bit -c join.dat status
10 years ago
# User -h or BIT_HOST to setup the base URL for your server.
# Join the wallet from other copayer
10 years ago
./bit -c pete.dat join 0a18bed5-5607-4fde-a809-dc6561bc0664:L3WtafRAEHty7h2J7VCHdiyzFboAdVFnNZXMmqDGw4yiu5kW9Tp4:T
./bit -c pete.dat status
10 years ago
# Sets default file to use
10 years ago
export BIT_FILE=pete.dat
10 years ago
export BIT_HOST=http://pepe.com/bws
10 years ago
./bit address
[1bitcoinaddress]
./bit balance
10 years ago
# Spend coins. Values always in satoshis
10 years ago
./bit send 1xxxxx 100 "100 satoshis to mother"
10 years ago
# List pending TX Proposals
10 years ago
./bit status
10 years ago
# Sign or reject TXs from other copayers
./bit -c pete.data reject <id>
./bit -c pete.data sign <id>
# Export your critical wallet data (you need *quorum* of wallet's copayer to extract coins)
10 years ago
./bit export
# Or export it to a QR
./bit export --qr
10 years ago
# Import it later. It can be safetly used from multiple devices.
10 years ago
./bit import <file>
10 years ago
# In case you use a new server, recreate the wallet from our local information
./bit recreate
10 years ago
# List all commands:
./bit --help
10 years ago
10 years ago
```
10 years ago
# Server API
10 years ago
## create a wallet
10 years ago
POST `/v1/wallets`
10 years ago
## join a wallet
10 years ago
POST `/v1/wallets/:id/copayers`
10 years ago
10 years ago
...
10 years ago
10 years ago
[To be completed, see app.js]
10 years ago
# Local data
Copayers store its extended private key and their copayer's extended public key locally. We call this the ``Wallet Critical Data``.
10 years ago
# Security Considerations
* Private keys are never send to the server. Copayers store them locally.
10 years ago
* Extended public keys are stored on the server. This allow the server to easily check wallet's balances, send offline notifications to copayers, etc.
* During wallet creation a wallet secret is created by the initial copayer containg a private key. Following copayers need to proof the have the secret by signing their information with it to join the wallet. The secret should be shared using secured channels.
## All server responses are verified:
* Addresses, change addresses are derived independently and locally by the copayers from their local data.
10 years ago
* TX Proposals templates are signed by copayers, and verified by others, so the server cannot create / tamper them
10 years ago
## Notes
* A copayer could join the wallet more that one time, and there is not mechanism to prevent it. Copayers should use the command 'confirm' to check others copayer's identity.
## In case the server is compromised
* It could be possible to see past (and future) wallet's transactions.
* It is not possible to spend wallet's funds, since private keys are never send or stored at the server
* It is not possible to tamper tx proposal or wallet addresses since they are computed and verified by copayers
10 years ago
* Copayers could switch to other server using their local data (see `recreate` command). In this case only the wallet extended data will be lost. (Decorated TX History, some copayer metadata, pending transaction proposals, transacion proposal metadata).
10 years ago
10 years ago
# Export Format
Exporting a wallet will expose copayer's extended private key and other's copayers extended public keys. This information is enough to extract funds from the wallet, given the required quorum is meet.
10 years ago
The format is:
10 years ago
``` json
[ "(copayer extender private key)",
"required signatured",
"(array of other copayer's extended public keys, excluding this copayer)"]
10 years ago
```
10 years ago
Example, of a 1-2 wallet:
``` json
[
"tprv8ZgxMBicQKsPds3YbNWdCcsvxhnpjEecCJv1pBPCLEekwhwWNqpRwA283ASepgTnwAXhu4vZPeRAiX1CpPcjcY6izWSC3NVqyk1gWhF8xWy",
1,
["tpubD6NzVbkrYhZ4Y1DE1F6s4NWbLjwQSReggiksexkJ7R7p4tCKH1vmu7G9TafmkGs252PMrs5j6xz7uSiDLbUsE43eHbRa5wCauXqhJnhN9MB"]
]
10 years ago
```
10 years ago