mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-13 12:33:07 +02:00
Unannounced Channel Configuration #1036
This commit is contained in:
parent
6ce2ae82c8
commit
2c113030b4
45 changed files with 216 additions and 109 deletions
1
.github/README.md
vendored
1
.github/README.md
vendored
|
|
@ -104,6 +104,7 @@ Example RTL-Config.json:
|
|||
"bitcoindConfigPath": "<Optional: path of bitcoind.conf path if available locally>",
|
||||
"logLevel": "INFO",
|
||||
"fiatConversion": false,
|
||||
"unannouncedChannels": false,
|
||||
"lnServerUrl": "<url for LND REST APIs for node #1 e.g. https://192.168.0.1:8080>",
|
||||
"swapServerUrl": "<url for swap server REST APIs for the node. e.g. https://localhost:8081>",
|
||||
"boltzServerUrl": "<url for boltz server REST APIs for the node. e.g. https://localhost:9003>"
|
||||
|
|
|
|||
1
.github/docs/Application_configurations.md
vendored
1
.github/docs/Application_configurations.md
vendored
|
|
@ -35,6 +35,7 @@ parameters have `default` values for initial setup and can be updated after RTL
|
|||
"logLevel": <logging levels, will log in accordance with the logLevel value provided, Allowed values ERROR, WARN, INFO, DEBUG>,
|
||||
"fiatConversion": <parameter to turn fiat conversion off/on. Allowed values - true, false, default false, Required>,
|
||||
"currencyUnit": "<Optional: Fiat current Unit for currency conversion, default 'USD' If fiatConversion is true, Required if fiatConversion is true>",
|
||||
"unannouncedChannels": <parameter to turn off/on setting for opening announced Channels, default false, Optional>
|
||||
"lnServerUrl": "<Service url for LND/Core Lightning REST APIs for the node, e.g. https://192.168.0.1:8080 OR https://192.168.0.1:3001 OR http://192.168.0.1:8080. Default 'https://localhost:8080', Required",
|
||||
"swapServerUrl": "<Service url for swap server REST APIs for the node, e.g. https://localhost:8081, Optional>",
|
||||
"boltzServerUrl": "<Service url for boltz server REST APIs for the node, e.g. https://localhost:9003, Optional>"
|
||||
|
|
|
|||
1
.github/docs/Core_lightning_setup.md
vendored
1
.github/docs/Core_lightning_setup.md
vendored
|
|
@ -82,6 +82,7 @@ Ensure that the follow values are correct per your config:
|
|||
"bitcoindConfigPath": "",
|
||||
"logLevel": "INFO",
|
||||
"fiatConversion": false,
|
||||
"unannouncedChannels": false,
|
||||
"lnServerUrl": "https://<cl-rest api server ip address>:3001"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
1
.github/docs/Eclair_setup.md
vendored
1
.github/docs/Eclair_setup.md
vendored
|
|
@ -77,6 +77,7 @@ Ensure that the follow values are correct per your config:
|
|||
"bitcoindConfigPath": "",
|
||||
"logLevel": "INFO",
|
||||
"fiatConversion": false,
|
||||
"unannouncedChannels": false,
|
||||
"lnServerUrl": "http://<eclair api server ip address>:port"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
1
.github/docs/RTL_setups.md
vendored
1
.github/docs/RTL_setups.md
vendored
|
|
@ -39,6 +39,7 @@ If your running RTL and LND on different devices on your local LAN, certain conf
|
|||
"bitcoindConfigPath": "<Optional: path of bitcoind.conf path if available locally>",
|
||||
"logLevel": "INFO",
|
||||
"fiatConversion": false,
|
||||
"unannouncedChannels": false,
|
||||
"lnServerUrl": "<https://<ip-address-of-device-running-lnd>:8080; e.g. https://192.168.0.1:8080>",
|
||||
"swapServerUrl": "<https://<localhost>:8081>",
|
||||
"boltzServerUrl": "<https://<localhost>:9003>"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue