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
Run `sim-cli -h` to see configuration options available. See [setup instructions](#simulation-file-setup) for details on configuring the simulation file.
51
58
52
59
### Simulation File Setup
53
-
The simulator requires access details for a set of `nodes` that you
54
-
have permission to execute commands on. Note that the current version
55
-
of the simulator uses keysend to execute payments, which must be
60
+
61
+
The simulator requires access details for a set of `nodes` that you
62
+
have permission to execute commands on. Note that the current version
63
+
of the simulator uses keysend to execute payments, which must be
56
64
enabled in LND using `--accept-keysend` (for CLN node it is enabled by default).
57
65
58
66
The required access details will depend on the node implementation. For LND, the following
@@ -82,17 +90,18 @@ Whereas for CLN nodes, the following information is required:
82
90
**Note that node addresses must be declare with HTTPS transport, i.e. <https://ip-or-domain:port>**
83
91
84
92
Payment activity can be simulated in two different ways:
85
-
* Random activity: generate random activity on the `nodes` provided,
93
+
94
+
* Random activity: generate random activity on the `nodes` provided,
86
95
using the graph topology to determine payment frequency and size.
87
-
* Defined activity: provide descriptions of specific payments that
96
+
* Defined activity: provide descriptions of specific payments that
88
97
you would like the generator to execute.
89
98
90
99
### Setup - Random Activity
91
100
92
-
To run the simulator with random activity generation, you just need to
93
-
provide a set of nodes and the simulator will generate activity based
94
-
on the topology of the underlying graph. Note that payments will only
95
-
be sent between the `nodes` that are provided so that liquidity does
101
+
To run the simulator with random activity generation, you just need to
102
+
provide a set of nodes and the simulator will generate activity based
103
+
on the topology of the underlying graph. Note that payments will only
104
+
be sent between the `nodes` that are provided so that liquidity does
96
105
not "drain" from the simulation.
97
106
98
107
```
@@ -116,35 +125,39 @@ not "drain" from the simulation.
116
125
```
117
126
118
127
Nodes can be identified by an arbitrary string ("Alice", "CLN1", etc) or
119
-
by their node public key. If a valid public key is provided it *must*
128
+
by their node public key. If a valid public key is provided it _must_
120
129
match the public key reported by the node.
121
130
122
-
There are a few cli flags that can be used to toggle the characteristics
123
-
of the random activity that is generated:
124
-
*`--expected-payment-amount`: the approximate average amount that
131
+
There are a few cli flags that can be used to toggle the characteristics
132
+
of the random activity that is generated:
133
+
134
+
*`--expected-payment-amount`: the approximate average amount that
125
135
will be sent by nodes, randomness will be introduced such that larger
126
136
nodes send a wider variety of payment sizes around this expectation.
127
-
*`--capacity-multiplier`: the number of times over that each node in
137
+
*`--capacity-multiplier`: the number of times over that each node in
128
138
the network sends their capacity in a calendar month, for example:
129
-
*`capacity-multiplier=2` means that each node sends double their
139
+
*`capacity-multiplier=2` means that each node sends double their
130
140
capacity in a month.
131
-
*`capacity-multiplier=0.5` means that each node sends half their
141
+
*`capacity-multiplier=0.5` means that each node sends half their
132
142
capacity in a month.
133
143
134
144
### Setup - Defined Activity
135
-
If you would like SimLN to generate a specific payments between source
136
-
and destination nodes, you can provide `activity` descriptions of the
137
-
source, destination, frequency and amount for payments that you'd like
138
-
to execute. Note that `source` nodes *must* be contained in `nodes`,
139
-
but destination nodes can be any public node in the network (though
145
+
146
+
If you would like SimLN to generate a specific payments between source
147
+
and destination nodes, you can provide `activity` descriptions of the
148
+
source, destination, frequency and amount for payments that you'd like
149
+
to execute. Note that `source` nodes _must_ be contained in `nodes`,
150
+
but destination nodes can be any public node in the network (though
140
151
this may result in liquidity draining over time).
141
152
142
153
The example simulation file below sets up the following simulation:
154
+
143
155
* Connect to `Alice` running LND to generate activity.
144
156
* Connect to `Bob` running CLN to generate activity.
145
157
* Dispatch 2000 msat payments from `Alice` to `Carol` every 1 seconds.
146
158
* Dispatch 140000 msat payments from `Bob` to `Alice` every 50 seconds.
147
159
* Dispatch 1000 msat payments from `Bob` to `Dave` every 2 seconds.
160
+
148
161
```
149
162
{
150
163
"nodes": [
@@ -187,9 +200,9 @@ The example simulation file below sets up the following simulation:
187
200
188
201
**Note that node addresses must be declare with HTTPS transport, i.e <https://ip-or-domain>**
189
202
190
-
Nodes can be identified by their public key or an id string (as
191
-
described above). Activity sources and destinations may reference the
192
-
`id` defined in `nodes`, but destinations that are not listed in `nodes`
203
+
Nodes can be identified by their public key or an id string (as
204
+
described above). Activity sources and destinations may reference the
205
+
`id` defined in `nodes`, but destinations that are not listed in `nodes`
193
206
*must* provide a valid public key.
194
207
195
208
### Simulation Output
@@ -201,10 +214,12 @@ Run `sim-cli -h` for details on data directory (`--data-dir`) and other options
201
214
which affect how simulation outputs are persisted
202
215
203
216
## Lightning Environments
217
+
204
218
If you're looking to get started with local lightning development, we
205
-
recommend [polar](https://lightningpolar.com/). For larger deployments,
206
-
see the [Scaling Lightning](https://github.com/scaling-lightning/scaling-lightning)
219
+
recommend [polar](https://lightningpolar.com/). For larger deployments,
220
+
see the [Scaling Lightning](https://github.com/scaling-lightning/scaling-lightning)
207
221
project.
208
222
209
223
## Docker
210
-
If you want to run the cli in a containerized environment, see the docker set up docs [here](./docker/README.md)
224
+
225
+
If you want to run the cli in a containerized environment, see the docker set up docs [here](./docker/README.md)
0 commit comments