Provides bitcoin-specific convenience functions and types
Go to file
2014-12-22 10:45:21 -06:00
base58 Add benchmarks to base58 package. 2014-12-22 10:45:21 -06:00
bloom Changed TxIn.PreviousOutpoint to TxIn.PreviousOutPoint after btcwire API change. 2014-10-01 13:54:42 +01:00
coinset Changed TxIn.PreviousOutpoint to TxIn.PreviousOutPoint after btcwire API change. 2014-10-01 13:54:42 +01:00
hdkeychain Integrate the new base58 package. 2014-12-22 12:01:50 +01:00
.gitignore Initial commit. 2013-05-28 17:20:28 -05:00
.travis.yml Add test coverage badge to README.md. 2014-12-20 05:19:47 -06:00
address.go Integrate the new base58 package. 2014-12-22 12:01:50 +01:00
address_test.go Switch to new subrepo import paths. 2014-12-11 10:28:43 -05:00
amount.go Make amount constants untyped. 2014-07-08 11:13:12 -05:00
amount_test.go Make amount constants untyped. 2014-07-08 11:13:12 -05:00
appdata.go Add 2014 to copyright dates. 2014-01-08 23:46:05 -06:00
appdata_test.go goimports -w . 2014-07-02 19:29:48 -05:00
base58.go Integrate the new base58 package. 2014-12-22 12:01:50 +01:00
block.go goimports -w . 2014-07-02 19:29:48 -05:00
block_test.go Changed TxIn.PreviousOutpoint to TxIn.PreviousOutPoint after btcwire API change. 2014-10-01 13:54:42 +01:00
certgen.go Add PEM encode error checking 2014-12-13 10:29:36 -05:00
certgen_test.go Add basic tests for NewTLSCertPair. 2014-12-20 15:30:08 -06:00
const.go Make amount constants untyped. 2014-07-08 11:13:12 -05:00
cov_report.sh Initial implementation. 2013-05-28 18:21:26 -05:00
doc.go Add 2014 to copyright dates. 2014-01-08 23:46:05 -06:00
hash160.go Switch to new subrepo import paths. 2014-12-11 10:28:43 -05:00
internal_test.go Integrate the new base58 package. 2014-12-22 12:01:50 +01:00
LICENSE Initial implementation. 2013-05-28 18:21:26 -05:00
net.go Made App Engine runtime compatible. 2014-08-30 15:10:29 -05:00
net_noop.go Made App Engine runtime compatible. 2014-08-30 15:10:29 -05:00
README.md Add test coverage badge to README.md. 2014-12-20 05:19:47 -06:00
test_coverage.txt Add PEM encode error checking 2014-12-13 10:29:36 -05:00
tx.go goimports -w . 2014-07-02 19:29:48 -05:00
tx_test.go goimports -w . 2014-07-02 19:29:48 -05:00
wif.go Integrate the new base58 package. 2014-12-22 12:01:50 +01:00
wif_test.go Update Address and WIF APIs to use btcnet. 2014-05-27 17:08:45 -05:00

btcutil

[Build Status] (https://travis-ci.org/conformal/btcutil) [![Coverage Status] (https://coveralls.io/repos/conformal/btcutil/badge.png?branch=master)] (https://coveralls.io/r/conformal/btcutil?branch=master)

Package btcutil provides bitcoin-specific convenience functions and types. A comprehensive suite of tests is provided to ensure proper functionality. See test_coverage.txt for the gocov coverage report. Alternatively, if you are running a POSIX OS, you can run the cov_report.sh script for a real-time report. Package btcutil is licensed under the liberal ISC license.

This package was developed for btcd, an alternative full-node implementation of bitcoin which is under active development by Conformal. Although it was primarily written for btcd, this package has intentionally been designed so it can be used as a standalone package for any projects needing the functionality provided.

Documentation

[GoDoc] (http://godoc.org/github.com/conformal/btcutil)

Full go doc style documentation for the project can be viewed online without installing this package by using the GoDoc site here: http://godoc.org/github.com/conformal/btcutil

You can also view the documentation locally once the package is installed with the godoc tool by running godoc -http=":6060" and pointing your browser to http://localhost:6060/pkg/github.com/conformal/btcutil

Installation

$ go get github.com/conformal/btcutil

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
    

License

Package btcutil is licensed under the copyfree ISC License.