mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-13 12:33:07 +02:00
Completes backend coverage of RTL's three implementations in the docker/ dev fixture: an eclair node (polarlightning/eclair 0.13.1) joins the three LND nodes and the CLN node, wired to RTL over its HTTP API with basic auth, and the seed opens an eclair->bob channel (3.5M sats, 1M pushed), sends two direct payments and leaves one open invoice. Non-obvious plumbing this needed: - polarlightning/eclair instead of acinq/eclair: the official image is amd64-only (useless on Apple Silicon) and its newest versioned tag is years stale; Polar builds the same ACINQ source multi-arch. - Eclair has no on-chain wallet of its own -- it drives a bitcoind wallet. A new eclair-wallet-init container creates a dedicated "eclair" wallet before the node starts; without it eclair attaches to "the default loaded wallet", i.e. the rtldev mining wallet. - bitcoind now also publishes a zmqpubhashblock endpoint (28336): eclair's bitcoind.zmqblock consumes the hashblock topic, not the rawblock one LND uses. Wired to rawblock, eclair never sees new blocks and channels hang in WAIT_FOR_FUNDING_CONFIRMED. - Eclair confirms channels at 8 blocks (channel.min-depth-blocks), not 6, and 'open' returns before the funding tx is broadcast -- the seed waits for the mempool and mines 8 blocks for this channel. Adds a bin/e-cli helper (eclair-cli with the API password), updates the README, and verified end-to-end: seed completes, the channel reaches NORMAL, both payments settle, and RTL's /rtl/api/ecl endpoints return the node, channel and invoice data.
103 lines
2.6 KiB
JSON
103 lines
2.6 KiB
JSON
{
|
|
"multiPass": "rtldev",
|
|
"port": "3000",
|
|
"defaultNodeIndex": 1,
|
|
"dbDirectoryPath": "/RTL/database",
|
|
"SSO": {
|
|
"rtlSSO": 0,
|
|
"rtlCookiePath": "",
|
|
"logoutRedirectLink": ""
|
|
},
|
|
"nodes": [
|
|
{
|
|
"index": 1,
|
|
"lnNode": "alice",
|
|
"lnImplementation": "LND",
|
|
"authentication": {
|
|
"macaroonPath": "/lnd/alice/data/chain/bitcoin/regtest"
|
|
},
|
|
"settings": {
|
|
"userPersona": "OPERATOR",
|
|
"themeMode": "DAY",
|
|
"themeColor": "PURPLE",
|
|
"logLevel": "ERROR",
|
|
"lnServerUrl": "https://alice:8080",
|
|
"fiatConversion": false,
|
|
"unannouncedChannels": false,
|
|
"blockExplorerUrl": "https://mempool.space"
|
|
}
|
|
},
|
|
{
|
|
"index": 2,
|
|
"lnNode": "bob",
|
|
"lnImplementation": "LND",
|
|
"authentication": {
|
|
"macaroonPath": "/lnd/bob/data/chain/bitcoin/regtest"
|
|
},
|
|
"settings": {
|
|
"userPersona": "OPERATOR",
|
|
"themeMode": "DAY",
|
|
"themeColor": "PURPLE",
|
|
"logLevel": "ERROR",
|
|
"lnServerUrl": "https://bob:8080",
|
|
"fiatConversion": false,
|
|
"unannouncedChannels": false,
|
|
"blockExplorerUrl": "https://mempool.space"
|
|
}
|
|
},
|
|
{
|
|
"index": 3,
|
|
"lnNode": "carol",
|
|
"lnImplementation": "LND",
|
|
"authentication": {
|
|
"macaroonPath": "/lnd/carol/data/chain/bitcoin/regtest"
|
|
},
|
|
"settings": {
|
|
"userPersona": "MERCHANT",
|
|
"themeMode": "DAY",
|
|
"themeColor": "PURPLE",
|
|
"logLevel": "ERROR",
|
|
"lnServerUrl": "https://carol:8080",
|
|
"fiatConversion": false,
|
|
"unannouncedChannels": false,
|
|
"blockExplorerUrl": "https://mempool.space"
|
|
}
|
|
},
|
|
{
|
|
"index": 4,
|
|
"lnNode": "cln",
|
|
"lnImplementation": "CLN",
|
|
"authentication": {
|
|
"runePath": "/cln/rtl.rune"
|
|
},
|
|
"settings": {
|
|
"userPersona": "OPERATOR",
|
|
"themeMode": "DAY",
|
|
"themeColor": "PURPLE",
|
|
"logLevel": "ERROR",
|
|
"lnServerUrl": "https://cln:3010",
|
|
"fiatConversion": false,
|
|
"unannouncedChannels": false,
|
|
"blockExplorerUrl": "https://mempool.space"
|
|
}
|
|
},
|
|
{
|
|
"index": 5,
|
|
"lnNode": "eclair",
|
|
"lnImplementation": "ECL",
|
|
"authentication": {
|
|
"lnApiPassword": "rtldev"
|
|
},
|
|
"settings": {
|
|
"userPersona": "OPERATOR",
|
|
"themeMode": "DAY",
|
|
"themeColor": "PURPLE",
|
|
"logLevel": "ERROR",
|
|
"lnServerUrl": "http://eclair:8080",
|
|
"fiatConversion": false,
|
|
"unannouncedChannels": false,
|
|
"blockExplorerUrl": "https://mempool.space"
|
|
}
|
|
}
|
|
]
|
|
}
|