Trampoline payments allow nodes running on constrained devices to sync only a small portion of the network and leverage trampoline nodes to calculate the missing parts of the payment route, while providing the same privacy as fully source-routed payments.
Eclair started supporting trampoline payments in v0.3.3. The specification has evolved since then and has recently been added to the BOLTs.
With this release, eclair nodes are able to relay and receive trampoline payments (activated by default). This feature can be disabled if you don't want to relay or receive trampoline payments:
eclair.features.trampoline_routing = disabledWith Bitcoin Core 28.1, eclair starts relying on the submitpackage RPC during channel force-close.
When using anchor outputs, allows propagating our local commitment transaction to peers who are also running Bitcoin Core 28.x or newer, even if the commitment feerate is low (package relay).
This removes the need for increasing the commitment feerate based on mempool conditions, which ensures that channels won't be force-closed anymore when nodes disagree on the current feerate.
Eclair now supports attributable failures which allow nodes to prove they are not the source of the failure. Previously a failing node could choose not to report the failure and we would penalize all nodes of the route. If all nodes of the route support attributable failures, we only need to penalize two nodes (there is still some uncertainty as to which of the two nodes is the failing one). See lightning/bolts#1044 for more details.
Attribution data also provides hold times from payment relayers, both for fulfilled and failed HTLCs.
Support is enabled by default.
It can be disabled by setting eclair.features.option_attribution_data = disabled.
listoffersnow returns more details about each offer.parseofferis added to display offer fields in a human-readable format.
-
The default for
eclair.features.option_channel_typeis nowmandatoryinstead ofoptional. This change prepares nodes to always assume the behavior ofoption_channel_typefrom peers when Bolts PR #1232 is adopted. Until #1232 is adopted you can still setoption_channel_typetooptionalin youreclair.conffile for specific peers that do not yet support this option, seeConfigure.mdfor more information. -
We added a configuration parameter to facilitate custom signet use. The parameter
eclair.bitcoind.signet-check-txshould be set to the txid of a transaction that exists in your signet or set to "" to skip this check. See issue #3079 for details.
We added a new configuration value to eclair.conf to limit the feerate used for force-close transactions where funds aren't at risk: eclair.on-chain-fees.max-closing-feerate.
This ensures that you won't end up paying a lot of fees during mempool congestion: your node will wait for the feerate to decrease to get your non-urgent transactions confirmed.
If you need those transactions to confirm because you are low on liquidity, you should update eclair.on-chain-fees.max-closing-feerate and restart your node: eclair will automatically RBF all available transactions.
We previously scaled the number of confirmations based on the channel funding amount.
However, this doesn't work with splicing, where the channel capacity may change drastically.
It's much simpler to always use the same number of confirmations, while choosing a value that is large enough to protect against malicious reorgs.
We now by default use 8 confirmations, which can be modified in eclair.conf:
// Minimum number of confirmations for channel transactions to be safe from reorgs.
eclair.channel.min-depth-blocks = 8Note however that we require min-depth to be at least 6 blocks, since the BOLTs require this before announcing channels.
See #3044 for more details.
You will need gpg and our release signing key E04E48E72C205463. Note that you can get it:
- from our website: https://acinq.co/pgp/drouinf2.asc
- from github user @sstone, a committer on eclair: https://api.github.com/users/sstone/gpg_keys
To import our signing key:
$ gpg --import drouinf2.ascTo verify the release file checksums and signatures:
$ gpg -d SHA256SUMS.asc > SHA256SUMS.stripped
$ sha256sum -c SHA256SUMS.strippedEclair builds are deterministic. To reproduce our builds, please use the following environment (*):
- Ubuntu 24.04.1
- Adoptium OpenJDK 21.0.6
Use the following command to generate the eclair-node package:
./mvnw clean install -DskipTestsThat 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.
This release is fully compatible with previous eclair versions. You don't need to close your channels, just stop eclair, upgrade and restart.
<fill this section when publishing the release with git log v0.12.0... --format=oneline --reverse>