lnd version, "hacked" to enable seedless restore from xprv + scb
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Anton Kovalenko 5e890bd21f Seedless restore from XPRV 3 years ago
..
base58 Seedless restore from XPRV 3 years ago
bech32 Seedless restore from XPRV 3 years ago
bloom Seedless restore from XPRV 3 years ago
coinset Seedless restore from XPRV 3 years ago
gcs Seedless restore from XPRV 3 years ago
hdkeychain Seedless restore from XPRV 3 years ago
psbt Seedless restore from XPRV 3 years ago
txsort Seedless restore from XPRV 3 years ago
LICENSE Seedless restore from XPRV 3 years ago
README.md Seedless restore from XPRV 3 years ago
address.go Seedless restore from XPRV 3 years ago
address_test.go Seedless restore from XPRV 3 years ago
amount.go Seedless restore from XPRV 3 years ago
amount_test.go Seedless restore from XPRV 3 years ago
appdata.go Seedless restore from XPRV 3 years ago
appdata_test.go Seedless restore from XPRV 3 years ago
block.go Seedless restore from XPRV 3 years ago
block_test.go Seedless restore from XPRV 3 years ago
certgen.go Seedless restore from XPRV 3 years ago
certgen_test.go Seedless restore from XPRV 3 years ago
const.go Seedless restore from XPRV 3 years ago
cov_report.sh Seedless restore from XPRV 3 years ago
doc.go Seedless restore from XPRV 3 years ago
example_test.go Seedless restore from XPRV 3 years ago
go.mod Seedless restore from XPRV 3 years ago
go.sum Seedless restore from XPRV 3 years ago
goclean.sh Seedless restore from XPRV 3 years ago
hash160.go Seedless restore from XPRV 3 years ago
internal_test.go Seedless restore from XPRV 3 years ago
net.go Seedless restore from XPRV 3 years ago
net_noop.go Seedless restore from XPRV 3 years ago
test_coverage.txt Seedless restore from XPRV 3 years ago
tx.go Seedless restore from XPRV 3 years ago
tx_test.go Seedless restore from XPRV 3 years ago
wif.go Seedless restore from XPRV 3 years ago
wif_test.go Seedless restore from XPRV 3 years ago

README.md

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/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.