lightwalletd/vendor/github.com/btcsuite/btcutil
Larry Ruane d292bfaea5 update to latest go, protobufs, grpc toolchain
Should be no functional differences. This patch was generated by
installing the latest tools and running `make update-grpc`.
2021-04-07 12:58:01 -06:00
..
base58 update to latest go, protobufs, grpc toolchain 2021-04-07 12:58:01 -06:00
bech32 module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
.gitignore module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
.travis.yml module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
LICENSE module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
README.md module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
address.go add GetLightdInfo RPC 2019-12-17 12:57:41 -07:00
amount.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
appdata.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
block.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
certgen.go rebase PR 175 - Use cobra and viper for configuration 2020-03-18 12:13:30 -06:00
const.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
cov_report.sh module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
doc.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
goclean.sh module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
hash160.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
net.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
net_noop.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
test_coverage.txt module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
tx.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00
wif.go module: run go mod tidy && go mod vendor 2019-02-14 18:56:16 +00:00

README.md

btcutil

Build Status Coverage Status ISC License GoDoc

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.

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.

Installation and Updating

$ go get -u github.com/btcsuite/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 the btcsuite developers. 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.