Skip to content

Commit ed7061b

Browse files
committed
fixup! Add experimental LSPS2 support.
1 parent c95ca65 commit ed7061b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

ldk-server/ldk-server-config.toml

+18
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,31 @@ exchange_name = ""
2222
# Experimental LSPS2 Service Support
2323
# CAUTION: LSPS2 support is highly experimental and for testing purposes only.
2424
[liquidity.lsps2_service]
25+
# Indicates whether the LSPS service will be announced via the gossip network.
2526
advertise_service = false
27+
28+
# The fee we withhold for the channel open from the initial payment.
2629
channel_opening_fee_ppm = 1000 # 0.1% fee
30+
31+
# The proportional overprovisioning for the channel.
2732
channel_over_provisioning_ppm = 500000 # 50% extra capacity
33+
34+
# The minimum fee required for opening a channel.
2835
min_channel_opening_fee_msat = 10000000 # 10,000 satoshis
36+
37+
# The minimum number of blocks after confirmation we promise to keep the channel open.
2938
min_channel_lifetime = 4320 # ~30 days
39+
40+
# The maximum number of blocks that the client is allowed to set its `to_self_delay` parameter.
3041
max_client_to_self_delay = 1440 # ~10 days
42+
43+
# The minimum payment size that we will accept when opening a channel.
3144
min_payment_size_msat = 10000000 # 10,000 satoshis
45+
46+
# The maximum payment size that we will accept when opening a channel.
3247
max_payment_size_msat = 25000000000 # 0.25 BTC
48+
3349
# Optional token for clients (uncomment and set if required)
50+
## A token we may require to be sent by the clients.
51+
## If set, only requests matching this token will be accepted. (uncomment and set if required)
3452
# require_token = ""

0 commit comments

Comments
 (0)