A secure lbry wallet daemon written in Go
Find a file
Josh Rickmar cafd4666d9 Don't attempt tx resend if unmined in a new block.
Any and all resending should be handled directly by btcd, and btcd
ignores any duplicate transactions when adding to mempool anyways.  A
set of unmined txs is still kept and send to btcd in case of btcd
restarting and losing wallet transactions from its mempool.
2013-10-25 18:59:21 -04:00
tx Make tests build again. 2013-10-22 10:03:11 -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 Remove debugging line. 2013-10-22 13:37:44 -04:00
cmdmgr.go Keep a pool of unmined transactions, and resend if unmined. 2013-10-23 18:23:20 -04:00
config.go Choose correct ports for testnet and mainnet. 2013-10-16 17:29:48 -04:00
createtx.go Updates for btcscript api changes. 2013-10-25 15:21:38 -04:00
createtx_test.go Make tests build again. 2013-10-22 10:03:11 -04:00
disksync.go Close() temp files before renaming them. 2013-10-23 18:40:02 -04:00
params.go Choose correct ports for testnet and mainnet. 2013-10-16 17:29:48 -04:00
README.md Remove finished items from TODO list 2013-10-01 14:45:06 -04:00
sample-btcwallet.conf Use testnet ports in example conf. 2013-10-24 09:26:06 -04:00
sockets.go Don't attempt tx resend if unmined in a new block. 2013-10-25 18:59:21 -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.