Skip to content

Latest commit

 

History

History
80 lines (48 loc) · 2.43 KB

File metadata and controls

80 lines (48 loc) · 2.43 KB

Eclair vnext

Major changes

Remove support for non-anchor channels

We remove the code used to support legacy channels that don't use anchor outputs or taproot. If you still have such channels, eclair won't start: you will need to close those channels, and will only be able to update eclair once they have been successfully closed.

Channel jamming accountability

We update our channel jamming mitigation to match the latest draft of the spec. Note that we use a different architecture for channel bucketing and confidence scoring than what is described in the BOLTs. We don't yet fail HTLCs that don't meet these restrictions: we're only collecting data so far to evaluate how the algorithm performs.

If you want to disable this feature entirely, you can set the following values in eclair.conf:

eclair.relay.peer-reputation.enabled = false
eclair.relay.reserved-for-accountable = 0.0

Configuration changes

API changes

Miscellaneous improvements and bug fixes

Verifying signatures

You will need gpg and our release signing key E04E48E72C205463. Note that you can get it:

To import our signing key:

$ gpg --import drouinf2.asc

To verify the release file checksums and signatures:

$ gpg -d SHA256SUMS.asc > SHA256SUMS.stripped
$ sha256sum -c SHA256SUMS.stripped

Building

Eclair builds are deterministic. To reproduce our builds, please use the following environment (*):

  • Ubuntu 24.04.1
  • Adoptium OpenJDK 21.0.6

Then use the following command to generate the eclair-node packages:

./mvnw clean install -DskipTests

That should generate eclair-node/target/eclair-node-<version>-XXXXXXX-bin.zip with sha256 checksums that match the one we provide and sign in SHA256SUMS.asc

(*) You may be able to build the exact same artefacts with other operating systems or versions of JDK 21, we have not tried everything.

Upgrading

This release is fully compatible with previous eclair versions. You don't need to close your channels, just stop eclair, upgrade and restart.

Changelog

<fill this section when publishing the release with git log v0.13.1... --format=oneline --reverse>