-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfeeConfig.json.example
More file actions
83 lines (83 loc) · 2.62 KB
/
feeConfig.json.example
File metadata and controls
83 lines (83 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"Terminal_output": true,
"LNDg_fee_update": False,
"write_charge_lnd_file": true,
"update_channel_notes": true,
"groups": {
"sink": {
"group_adjustment_percentage": 0.10,
"max_cap": 3500,
"trend_sensitivity": 0.5,
"fee_base": "median",
"fee_delta_threshold": 12,
"inbound_auto_fee_enabled": true,
"fee_bands": {
"enabled": true,
"discount": -0.15,
"premium": 0.30
},
"stuck_channel_adjustment": {
"enabled": true,
"stuck_time_period": 7,
"min_local_balance_for_stuck_discount": 0.2,
"min_updates_for_discount": 50
}
},
"expensive": {
"group_adjustment_percentage": 0.15,
"max_cap": 4000,
"trend_sensitivity": 0.6,
"fee_base": "mean",
"fee_delta_threshold": 25,
"inbound_auto_fee_enabled": false,
"fee_bands": {
"enabled": true,
"discount": -0.10,
"premium": 0.25
},
"stuck_channel_adjustment": {
"enabled": false,
"stuck_time_period": 5,
"min_local_balance_for_stuck_discount": 0.4,
"min_updates_for_discount": 50
}
}
},
"nodes": [
{
"pubkey": "021c97a90a411ff2b10dc2a8e32de2f29d2fa49d41bfbb52bd416e460db0747d0d",
"group": "sink"
},
{
"pubkey": "03cde60a6323f7122d5178255766e38114b4722ede08f7c9e0c5df9b912cc201d6",
"group": "expensive",
"inbound_auto_fee_enabled": true
},
{
"pubkey": "someotherpubkey",
"group": "expensive"
},
{
"pubkey": "03someotherpubkey",
"inbound_auto_fee_enabled": false,
"fee_conditions": {
"base_adjustment_percentage": 0.05,
"max_cap": 3000,
"trend_sensitivity": 0.4,
"fee_base": "mean",
"fee_delta_threshold": 10,
"fee_bands": {
"enabled": true,
"discount": -0.20,
"premium": 0.35
},
"stuck_channel_adjustment": {
"enabled": true,
"stuck_time_period": 3,
"min_local_balance_for_stuck_discount": 0.1,
"min_updates_for_discount": 50
}
}
}
]
}