Releases: lightninglabs/chantools
v0.4.0
Changelog
- Add
rescuefunding
andsignrescuefunding
commands.
Verifying the Release
In order to verify the release, you'll need to have gpg
or gpg2
installed on your system. Once you've obtained a copy (and hopefully verified that as well), you'll first need to import guggero
's key from keybase:
curl https://keybase.io/guggero/pgp_keys.asc | gpg --import
Once you have his PGP key you can verify the release (assuming manifest-v0.4.0.txt.asc
is in the current directory) with:
gpg --verify manifest-v0.4.0.txt.asc
You should see the following if the verification was successful:
gpg: Signature made Mi 29 Jul 2020 14:59:19 CEST
gpg: using RSA key 6E01EEC9656903B0542B8F1003DB6322267C373B
gpg: Good signature from "Oliver Gugger <[email protected]>" [ultimate]
That will verify the signature on the main manifest page which ensures integrity and authenticity of the binaries you've downloaded locally. Next, depending on your operating system you should then re-calculate the sha256
sum of the binary, and compare that with the following hashes (which are
cat manifest-v0.4.0.txt
One can use the shasum -a 256 <file name here>
tool in order to re-compute the sha256
hash of the target binary for your operating system. The produced hash should be compared with the hashes listed above and they should match exactly.
Finally, you can also verify the tag itself with the following command:
git verify-tag v0.4.0
v0.3.0
Changelog
- Extracted some additional functions so they can be used as a library.
- Added BIP39 key derivation to
derivekey
andshowrootkey
commands. - Documented default recovery scenario.
- Added testnet support for
genimportscript
command. - Remove numbers, dots and spaces from
lnd
's aezeed phrase so it can easily be copy/pasted fromlnd
's output. - Add
vanitygen
command. - Add closed channels to
dumpchannels
command.
Verifying the Release
In order to verify the release, you'll need to have gpg
or gpg2
installed on your system. Once you've obtained a copy (and hopefully verified that as well), you'll first need to import guggero
's key from keybase:
curl https://keybase.io/guggero/pgp_keys.asc | gpg --import
Once you have his PGP key you can verify the release (assuming manifest-v0.3.0.txt.asc
is in the current directory) with:
gpg --verify manifest-v0.3.0.txt.asc
You should see the following if the verification was successful:
gpg: Signature made Mi 29 Jul 2020 14:59:19 CEST
gpg: using RSA key 6E01EEC9656903B0542B8F1003DB6322267C373B
gpg: Good signature from "Oliver Gugger <[email protected]>" [ultimate]
That will verify the signature on the main manifest page which ensures integrity and authenticity of the binaries you've downloaded locally. Next, depending on your operating system you should then re-calculate the sha256
sum of the binary, and compare that with the following hashes (which are
cat manifest-v0.3.0.txt
One can use the shasum -a 256 <file name here>
tool in order to re-compute the sha256
hash of the target binary for your operating system. The produced hash should be compared with the hashes listed above and they should match exactly.
Finally, you can also verify the tag itself with the following command:
git verify-tag v0.3.0
First official release with binaries
Version v0.2.0
is the first version with pre-built binaries for most operating systems. No more building the tool from source is required.