@@ -22,13 +22,31 @@ exchange_name = ""
22
22
# Experimental LSPS2 Service Support
23
23
# CAUTION: LSPS2 support is highly experimental and for testing purposes only.
24
24
[liquidity .lsps2_service ]
25
+ # Indicates whether the LSPS service will be announced via the gossip network.
25
26
advertise_service = false
27
+
28
+ # The fee we withhold for the channel open from the initial payment.
26
29
channel_opening_fee_ppm = 1000 # 0.1% fee
30
+
31
+ # The proportional overprovisioning for the channel.
27
32
channel_over_provisioning_ppm = 500000 # 50% extra capacity
33
+
34
+ # The minimum fee required for opening a channel.
28
35
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.
29
38
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.
30
41
max_client_to_self_delay = 1440 # ~10 days
42
+
43
+ # The minimum payment size that we will accept when opening a channel.
31
44
min_payment_size_msat = 10000000 # 10,000 satoshis
45
+
46
+ # The maximum payment size that we will accept when opening a channel.
32
47
max_payment_size_msat = 25000000000 # 0.25 BTC
48
+
33
49
# 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)
34
52
# require_token = ""
0 commit comments