eclair
eclair copied to clipboard
A scala implementation of the Lightning Network.
Finalize the dual-funding flow: exchange signatures and wait for the funding transaction to confirm. If an error occurs, we need to wait for the funding tx to be double-spent before...
Add support for DNS host names Notable changes: - you can now specify a DNS host name as one of your `server.public-ips` addresses (see PR [#911](https://github.com/lightning/bolts/pull/911)). Note: you can not...
Based on https://github.com/ACINQ/eclair/pull/2038. We use bitcoin-kmp's Psbt classes and methods directly (there is no need for a wrapper here imho).
When a tx is confirmed. ask for and check a tx inclusion proof, and check the p.o.w of the block in which it was published as well as the following...
- Channels (4 panels)  - Register (4 panels)  - Peers (4 panels) 
To match the latest changes in https://github.com/lightning/bolts/pull/765 at commit https://github.com/lightning/bolts/pull/765/commits/28704e7935721ab4cb1c1d83c4e0016c16964ded The main change was the introduction of the `payment_relay` and `payment_constraints` tlvs, with small additional codec updates. This PR builds...
Apply @rustyrussell's neat truncating integer arithmetic formula to calculate the amount that should be forwarded by blinded path nodes instead of our previous approximation. This simply expands `ceil(a/b)` as `(a+b-1)/b`...
In this is pull request I have added following: - `eclair-metircs.json` file to monitor eclair host metrics on Grafana. The JSON file contain fours rows with various panels. That helps...