A secure lbry wallet daemon written in Go
Find a file
Josh Rickmar 284191ec4b Sync wallet, utxo, and tx files to disk.
This runs a syncer once every minute to write any dirty wallet data
structures out to disk.  As currently implemented, dirty wallets will
be lost if not written before btcwallet closes or crashes.
Deterministic wallet help migitate this issue (as private keys can be
created again as long as a previous wallet file was written) but this
can still be a nuisance as a longer rescan will be required to catch
up to chain.
2013-10-15 15:53:49 -04:00
tx Add func to remove utxos from a UtxoStore. 2013-10-15 10:05:51 -04:00
wallet Save correct addresses for new utxos 2013-10-10 18:44:44 -04:00
.gitignore Initial commit. 2013-08-21 10:37:30 -04:00
cmd.go Sync wallet, utxo, and tx files to disk. 2013-10-15 15:53:49 -04:00
cmdmgr.go Sync wallet, utxo, and tx files to disk. 2013-10-15 15:53:49 -04:00
config.go Default to testnet. 2013-10-07 13:25:05 -04:00
createtx.go Return used transaction inputs from txToPairs. 2013-10-14 16:14:04 -04:00
createtx_test.go Fix issues found by golint and go vet. 2013-10-14 16:39:15 -04:00
disksync.go Sync wallet, utxo, and tx files to disk. 2013-10-15 15:53:49 -04:00
README.md Remove finished items from TODO list 2013-10-01 14:45:06 -04:00
sample-btcwallet.conf Fix sample config file. 2013-10-14 15:32:15 -04:00
sockets.go Fix issues found by golint. 2013-10-15 10:40:31 -04:00
version.go Add missing licenses to files 2013-08-22 12:30:38 -04:00

btcwallet

btcwallet is a daemon handling bitcoin wallet functions. It relies on a running btcd instance for asynchronous blockchain queries and notifications over websockets.

In addition to the HTTP server run by btcd to provide RPC and websocket connections, btcwallet requires an HTTP server of its own to provide websocket connections to wallet frontends. Websockets allow for asynchronous queries, replies, and notifications.

This project is currently under active development is not production ready yet.

Usage

Frontends wishing to use btcwallet must connect to the websocket /wallet. Messages sent to btcwallet over this websocket are expected to follow the standard Bitcoin JSON API and replies follow the same API. The btcd package btcjson provides types and functions for creating messages that this API. However, due to taking a synchronous protocol like RPC and using it asynchronously, it is recommend for frontends to use the JSON id field as a sequence number so replies can be mapped back to the messages they originated from.

Installation

btcwallet can be installed with the go get command:

go get github.com/conformal/btcwallet

Running

To run btcwallet, you must have btcd installed and running. By default btcd will run its HTTP server for RPC and websocket connections on port 8332. However, bitcoind frontends expecting wallet functionality may require to poll on port 8332, requiring the btcd component in a btcwallet+btcd replacement stack to run on an alternate port. For this reason, btcwallet by default connects to btcd on port 8334 and runs its own HTTP server on 8332. When using both btcd and btcwallet, it is recommend to run btcd on the non-standard port 8334 using the -r command line flag.

Assumming btcd is running on port 8334, btcwallet can be started by running:

btcwallet -f /path/to/wallet

GPG Verification Key

All official release tags are signed by Conformal so users can ensure the code has not been tampered with and is coming from Conformal. To verify the signature perform the following:

  • Download the public key from the Conformal website at https://opensource.conformal.com/GIT-GPG-KEY-conformal.txt

  • Import the public key into your GPG keyring:

    gpg --import GIT-GPG-KEY-conformal.txt
    
  • Verify the release tag with the following command where TAG_NAME is a placeholder for the specific tag:

    git tag -v TAG_NAME
    

What works

  • New addresses can be queried if they are in the wallet file address pool
  • Unknown commands are sent to btcd
  • Unhandled btcd notifications (i.e. new blockchain height) are sent to each connected frontend
  • btcd replies are routed back to the correct frontend who initiated the request

TODO

  • Require authentication before wallet functionality can be accessed
  • Serve websocket connections over TLS
  • Documentation
  • Code cleanup
  • Optimize
  • Much much more. Stay tuned.

License

btcwallet is licensed under the liberal ISC License.