btcd/btcutil
Olaoluwa Osuntokun fdad1fab1f multi: pin new v2 submodule tags and bump to v0.26.0-beta.rc1
In this commit, we strip all of the local `replace ... => ../...`
directives that were introduced as part of #1825 (the v2 module
restructuring), now that proper tags exist for every freshly carved-out
submodule. Every in-tree go.mod is pinned to the newly published tags:
chainhash/v2.0.0, wire/v2.0.0, chaincfg/v2.0.0, address/v2.0.0,
txscript/v2.0.0, btcutil/v2.0.0, psbt/v2.0.0, and btcec is bumped to
v2.5.0 since it now depends on chainhash/v2 (previously
chaincfg/chainhash).

While here, we also unify the Go toolchain to 1.25 across every
submodule so the workspace resolves a consistent set of language
features.

Finally, we bump the main btcd version to v0.26.0-beta.rc1 in
preparation for the upcoming release candidate.
2026-05-14 19:25:06 -07:00
..
bloom multi: use new v2 modules everywhere 2026-05-14 18:05:33 -07:00
coinset multi: use new v2 modules everywhere 2026-05-14 18:05:33 -07:00
gcs btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
hdkeychain btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
txsort multi: use new v2 modules everywhere 2026-05-14 18:05:33 -07:00
amount.go multi: use new v2 modules everywhere 2026-05-14 18:05:33 -07:00
amount_test.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
appdata.go multi: Run gofmt on the entire repository 2023-06-21 22:31:09 +09:00
appdata_test.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
bench_test.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
block.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
block_test.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
certgen.go btcutil: export interfaceAddr 2026-05-14 16:16:14 -07:00
certgen_test.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
const.go btcutil: move btcutil into new sub-module 2022-01-10 18:44:56 -08:00
cov_report.sh multi: deprecation gocov 2025-03-19 09:45:48 +08:00
doc.go multi: Run gofmt on the entire repository 2023-06-21 22:31:09 +09:00
example_test.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
go.mod multi: pin new v2 submodule tags and bump to v0.26.0-beta.rc1 2026-05-14 19:25:06 -07:00
go.sum multi: pin new v2 submodule tags and bump to v0.26.0-beta.rc1 2026-05-14 19:25:06 -07:00
internal_test.go address: move to top-level module, use v2 2026-05-14 17:56:18 -07:00
LICENSE btcutil: move btcutil into new sub-module 2022-01-10 18:44:56 -08:00
net.go btcutil: export interfaceAddr 2026-05-14 16:16:14 -07:00
net_android.go btcutil: use anet instead of net for android builds 2026-05-14 16:16:14 -07:00
net_noop.go btcutil: rename interfaceAddrs to InterfaceAddrs in appengine variant 2026-05-14 16:22:44 -07:00
README.md multi: use new v2 modules everywhere 2026-05-14 18:05:33 -07:00
tx.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
tx_test.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
wif.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00
wif_test.go btcutil: remove circular dependency, use v2 2026-05-14 18:00:53 -07:00

btcutil

Build 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/btcd/btcutil/v2

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.