You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@for c in`grep -v '\[plugin ' doc/lightningd-config.5.md | sed -n 's/^ \*\*\([^*]*\)\*\*.*/\1/p'| grep -v '^\(help\|version\|mainnet\|testnet\|signet\|plugin\|important-plugin\|plugin-dir\|clear-plugins\)$$'`;doif! grep -q '"'"$$c"'"' doc/schemas/lightning-listconfigs.json;thenecho"$$c documented but not in schema!";exit 1;fi;done
263
+
@for c in`grep -v '\[plugin ' doc/lightningd-config.5.md | sed -n 's/^ \*\*\([^*]*\)\*\*.*/\1/p'| grep -v '^\(help\|version\|mainnet\|testnet\|testnet4\|signet\|plugin\|important-plugin\|plugin-dir\|clear-plugins\)$$'`;doif! grep -q '"'"$$c"'"' doc/schemas/lightning-listconfigs.json;thenecho"$$c documented but not in schema!";exit 1;fi;done
Copy file name to clipboardExpand all lines: doc/getting-started/getting-started/configuration.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ The [`lightning-listconfigs`](ref:lightning-listconfigs) command will output a v
63
63
64
64
**network**=_NETWORK_
65
65
66
-
- Select the network parameters (_bitcoin_, _testnet_, _signet_, or _regtest_).
66
+
- Select the network parameters (_bitcoin_, _testnet_, _testnet4_, _signet_, or _regtest_).
67
67
This is not valid within the per-network configuration file.
68
68
69
69
-**mainnet**
@@ -74,6 +74,10 @@ The [`lightning-listconfigs`](ref:lightning-listconfigs) command will output a v
74
74
75
75
Alias for _network=testnet_.
76
76
77
+
-**testnet4**
78
+
79
+
Alias for _network=testnet4_.
80
+
77
81
-**signet**
78
82
79
83
Alias for _network=signet_.
@@ -384,11 +388,11 @@ You can instead use _addr_ to override this (eg. to change the port), or precise
384
388
Set an IP address (v4 or v6) or automatic Tor address to listen on and (maybe) announce as our node address.
385
389
386
390
An empty 'IPADDRESS' is a special value meaning bind to IPv4 and/or IPv6 on all interfaces, '0.0.0.0' means bind to all IPv4 interfaces, '::' means 'bind to all IPv6 interfaces' (if you want to specify an IPv6 address _and_ a port, use `[]` around the IPv6 address, like `[::]:9750`).
387
-
If 'PORT' is not specified, the default port 9735 is used for mainnet (testnet: 19735, signet: 39735, regtest: 19846). If we can determine a public IP address from the resulting binding,
391
+
If 'PORT' is not specified, the default port 9735 is used for mainnet (testnet: 19735, signet: 39735, regtest: 19846, testnet4: 49735). If we can determine a public IP address from the resulting binding,
388
392
the address is announced.
389
393
390
394
If the argument begins with 'autotor:' then it is followed by the IPv4 or IPv6 address of the Tor control port (default port 9051), and this will be used to configure a Tor hidden service for port 9735 in case of mainnet (bitcoin) network whereas other networks (testnet,
391
-
signet, regtest) will set the same default ports they use for non-Tor addresses (see above).
395
+
signet, regtest, testnet4) will set the same default ports they use for non-Tor addresses (see above).
392
396
The Tor hidden service will be configured to point to the first IPv4 or IPv6 address we bind to and is by default unique to your node's id.
393
397
394
398
If the argument begins with 'statictor:' then it is followed by the IPv4 or IPv6 address of the Tor control port (default port 9051), and this will be used to configure a static Tor hidden service.
0 commit comments