-
Notifications
You must be signed in to change notification settings - Fork 82
/
logic.py
470 lines (432 loc) · 21.6 KB
/
logic.py
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
import math
import output
from output import Output, format_alias, format_fee_msat, format_ppm, format_amount, \
format_warning, format_error, format_earning, format_fee_msat_red, format_fee_msat_white, format_channel_id
from routes import Routes
DEFAULT_BASE_FEE_SAT_MSAT = 1_000
DEFAULT_FEE_RATE_MSAT = 0.001
MAX_FEE_RATE = 2_000
class Logic:
def __init__(
self,
lnd,
first_hop_channel,
last_hop_channel,
amount,
excluded,
fee_factor,
fee_limit_sat,
fee_ppm_limit,
min_local,
min_remote,
output: Output,
reckless,
ignore_missed_fee
):
self.lnd = lnd
self.first_hop_channel = first_hop_channel
self.last_hop_channel = last_hop_channel
self.amount = amount
self.excluded = excluded
self.fee_factor = fee_factor
self.fee_limit_sat = fee_limit_sat
self.fee_ppm_limit = fee_ppm_limit
self.min_local = min_local
self.min_remote = min_remote
self.output = output
self.reckless = reckless
self.ignore_missed_fee = ignore_missed_fee
if not self.fee_factor:
self.fee_factor = 1.0
def rebalance(self):
first_hop_alias_formatted = ""
last_hop_alias_formatted = ""
first_channel_id = 0
if self.first_hop_channel:
first_hop_alias_formatted = format_alias(self.lnd.get_node_alias(self.first_hop_channel.remote_pubkey))
first_channel_id = format_channel_id(self.first_hop_channel.chan_id)
if self.last_hop_channel:
last_hop_alias_formatted = format_alias(self.lnd.get_node_alias(self.last_hop_channel.remote_pubkey))
amount_formatted = format_amount(self.amount)
if self.first_hop_channel and self.last_hop_channel:
self.output.print_line(
f"Sending {amount_formatted} satoshis from channel {first_channel_id} with {first_hop_alias_formatted} "
f"back through {last_hop_alias_formatted}."
)
elif self.last_hop_channel:
self.output.print_line(f"Sending {amount_formatted} satoshis back through {last_hop_alias_formatted}.")
else:
self.output.print_line(
f"Sending {self.amount:,} satoshis from channel {first_channel_id} with {first_hop_alias_formatted}."
)
fee_limit_msat = self.get_fee_limit_msat()
payment_request = self.generate_invoice()
min_fee_last_hop = None
if self.first_hop_channel:
fee_rate_first_hop = self.lnd.get_ppm_to(self.first_hop_channel.chan_id)
policy_first_hop = self.lnd.get_policy_to(self.first_hop_channel.chan_id)
min_fee_last_hop = self.compute_fee(self.amount, fee_rate_first_hop, policy_first_hop)
routes = Routes(
self.lnd,
payment_request,
self.first_hop_channel,
self.last_hop_channel,
fee_limit_msat,
self.output
)
self.initialize_ignored_channels(routes, fee_limit_msat, min_fee_last_hop)
tried_routes = []
while routes.has_next():
route = routes.get_next()
success = self.try_route(payment_request, route, routes, tried_routes)
if success:
return True
self.output.print_line("Could not find any suitable route")
self.lnd.cancel_invoice(payment_request.payment_hash)
return False
def get_fee_limit_msat(self):
fee_limit_msat = None
if self.fee_limit_sat:
fee_limit_msat = self.fee_limit_sat * 1_000
elif self.fee_ppm_limit:
if self.reckless:
fee_limit_msat = self.fee_ppm_limit * self.amount / 1_000
else:
fee_limit_msat = max(1_000, self.fee_ppm_limit * self.amount / 1_000)
elif not self.last_hop_channel:
return None
if self.last_hop_channel and not self.reckless:
fee_rate = self.lnd.get_ppm_to(self.last_hop_channel.chan_id)
if fee_rate > MAX_FEE_RATE:
last_hop_alias = self.lnd.get_node_alias(self.last_hop_channel.remote_pubkey)
self.output.print_line(
f"Calculating using capped fee rate {MAX_FEE_RATE} "
f"for inbound channel (with {last_hop_alias}, original fee rate {fee_rate})"
)
fee_rate = MAX_FEE_RATE
policy = self.lnd.get_policy_to(self.last_hop_channel.chan_id)
if fee_limit_msat:
fee_limit_msat = min(
fee_limit_msat,
self.compute_fee(self.amount, self.fee_factor * fee_rate, policy) * 1_000
)
else:
fee_limit_msat = self.compute_fee(self.amount, self.fee_factor * fee_rate, policy) * 1_000
if not self.reckless:
fee_limit_msat = max(1_000, fee_limit_msat)
ppm_limit = int(fee_limit_msat / self.amount * 1_000)
fee_limit_formatted = format_fee_msat(int(fee_limit_msat))
ppm_limit_formatted = format_ppm(ppm_limit)
self.output.print_without_linebreak(f"Setting fee limit to {fee_limit_formatted} ({ppm_limit_formatted})")
if self.fee_factor != 1.0:
self.output.print_line(f" (factor {self.fee_factor}).")
else:
self.output.print_line(".")
return fee_limit_msat
def try_route(self, payment_request, route, routes, tried_routes):
if self.route_is_invalid(route, routes):
return False
tried_routes.append(route)
self.output.print_line("")
self.output.print_without_linebreak(f"Trying route #{len(tried_routes)}")
fee_msat = route.total_fees_msat
route_ppm = int(route.total_fees_msat * 1_000_000 / route.total_amt_msat)
fee_formatted = format_fee_msat(fee_msat)
ppm_formatted = format_ppm(route_ppm)
self.output.print_line(f" (fee {fee_formatted}, {ppm_formatted})")
self.output.print_route(route)
response = self.lnd.send_payment(payment_request, route)
is_successful = response.failure.code == 0
if is_successful:
self.print_success_statistics(route, route_ppm)
return True
else:
self.handle_error(response, route, routes)
return False
def print_success_statistics(self, route, route_ppm):
first_hop = route.hops[0]
last_hop = route.hops[-1]
amount = last_hop.amt_to_forward
amount_msat = last_hop.amt_to_forward_msat
rebalance_fee_msat = route.total_fees_msat
policy_last_hop = self.lnd.get_policy_to(last_hop.chan_id)
policy_first_hop = self.lnd.get_policy_to(first_hop.chan_id)
last_hop_alias = self.lnd.get_node_alias(route.hops[-2].pub_key)
first_hop_alias = self.lnd.get_node_alias(first_hop.pub_key)
first_hop_ppm = self.lnd.get_ppm_to(first_hop.chan_id)
last_hop_ppm = self.lnd.get_ppm_to(last_hop.chan_id)
self.output.print_line("")
self.output.print_line(output.format_success(
f"Increased outbound liquidity on {last_hop_alias} ({last_hop_ppm:,}ppm) "
f"by {int(amount):,} sat"
))
self.output.print_line(output.format_success(
f"Increased inbound liquidity on {first_hop_alias} ({first_hop_ppm:,}ppm configured for outbound)")
)
self.output.print_line(output.format_success(
f"Fee: {route.total_fees:,} sats ({rebalance_fee_msat :,} mSAT, {route_ppm:,}ppm)"
))
self.output.print_line("")
self.output.print_line(output.format_success("Successful route:"))
self.output.print_route(route)
if self.ignore_missed_fee:
missed_fee_msat = 0
else:
missed_fee_msat = self.compute_fee(
amount_msat / 1_000, policy_first_hop.fee_rate_milli_msat, policy_first_hop
) * 1_000
expected_income_msat = self.compute_fee(
amount_msat / 1_000, policy_last_hop.fee_rate_milli_msat, policy_last_hop
) * 1_000
difference_msat = -rebalance_fee_msat - missed_fee_msat + expected_income_msat
future_income_formatted = format_earning(math.floor(expected_income_msat), 8)
self.output.print_line(
f" {future_income_formatted}: "
f"expected future fee income for inbound channel (with {last_hop_alias})"
)
missed_fee_formatted = format_fee_msat(math.ceil(missed_fee_msat), 8)
difference_formatted = format_fee_msat_white(math.ceil(difference_msat), 8)
transaction_fees_formatted = format_fee_msat(int(rebalance_fee_msat), 8)
self.output.print_line(f"- {transaction_fees_formatted}: rebalance transaction fees")
if not self.ignore_missed_fee:
self.output.print_line(
f"- {missed_fee_formatted}: "
f"missing out on future fees for outbound channel (with {first_hop_alias})"
)
self.output.print_line(f"= {difference_formatted}: potential profit!")
def handle_error(self, response, route, routes):
code = response.failure.code
failure_source_pubkey = Logic.get_failure_source_pubkey(response, route)
if code == 15:
self.output.print_line(format_warning("Temporary channel failure"))
routes.ignore_edge_on_route(failure_source_pubkey, route)
elif code == 18:
self.output.print_line(format_warning("Unknown next peer"))
routes.ignore_edge_on_route(failure_source_pubkey, route)
elif code == 12:
self.output.print_line(format_warning("Fee insufficient"))
elif code == 14:
self.output.print_line(format_warning("Channel disabled"))
routes.ignore_edge_on_route(failure_source_pubkey, route)
elif code == 13:
self.output.print_line(format_warning("Incorrect CLTV expiry"))
routes.ignore_edge_on_route(failure_source_pubkey, route)
else:
self.output.print_line(format_error(f"Unknown error code {repr(code)}:"))
self.output.print_line(format_error(repr(response)))
@staticmethod
def get_failure_source_pubkey(response, route):
if response.failure.failure_source_index == 0:
failure_source_pubkey = route.hops[-1].pub_key
else:
failure_source_pubkey = route.hops[
response.failure.failure_source_index - 1
].pub_key
return failure_source_pubkey
def route_is_invalid(self, route, routes):
first_hop = route.hops[0]
last_hop = route.hops[-1]
if self.low_outbound_liquidity_after_sending(first_hop, route.total_amt):
self.output.print_without_linebreak("Outbound channel would have low local ratio after sending, ")
routes.ignore_first_hop(self.get_channel_for_channel_id(first_hop.chan_id))
return True
if self.first_hop_and_last_hop_use_same_channel(first_hop, last_hop):
self.output.print_without_linebreak("Outbound and inbound channel are identical, ")
hop_before_last_hop = route.hops[-2]
routes.ignore_edge_from_to(
last_hop.chan_id, hop_before_last_hop.pub_key, last_hop.pub_key
)
return True
if self.low_inbound_liquidity_after_receiving(last_hop):
self.output.print_without_linebreak(
"Inbound channel would have high local ratio after receiving, "
)
hop_before_last_hop = route.hops[-2]
routes.ignore_edge_from_to(
last_hop.chan_id, hop_before_last_hop.pub_key, last_hop.pub_key
)
return True
return self.fees_too_high(route, routes)
def low_outbound_liquidity_after_sending(self, first_hop, total_amount):
if self.first_hop_channel:
# Just use the computed/specified amount to drain the first hop, ignoring fees
return False
channel_id = first_hop.chan_id
channel = self.get_channel_for_channel_id(channel_id)
if channel is None:
self.output.print_line(f"Unable to get channel information for hop {repr(first_hop)}")
return True
return max(0, channel.local_balance - channel.local_chan_reserve_sat) - total_amount < self.min_local
def low_inbound_liquidity_after_receiving(self, last_hop):
if self.last_hop_channel:
return False
channel_id = last_hop.chan_id
channel = self.get_channel_for_channel_id(channel_id)
if channel is None:
self.output.print_line(f"Unable to get channel information for hop {repr(last_hop)}")
return True
amount = last_hop.amt_to_forward
return max(0, channel.remote_balance - channel.remote_chan_reserve_sat) - amount < self.min_remote
@staticmethod
def first_hop_and_last_hop_use_same_channel(first_hop, last_hop):
return first_hop.chan_id == last_hop.chan_id
def fees_too_high(self, route, routes):
policy_first_hop = self.lnd.get_policy_to(route.hops[0].chan_id)
amount_msat = route.total_amt_msat
if self.ignore_missed_fee:
missed_fee_msat = 0
else:
missed_fee_msat = self.compute_fee(
amount_msat / 1_000, policy_first_hop.fee_rate_milli_msat, policy_first_hop
) * 1_000
policy_last_hop = self.lnd.get_policy_to(route.hops[-1].chan_id)
fee_rate_last_hop = policy_last_hop.fee_rate_milli_msat
original_fee_rate_last_hop = fee_rate_last_hop
if fee_rate_last_hop > MAX_FEE_RATE:
fee_rate_last_hop = MAX_FEE_RATE
last_hop = route.hops[-1]
amount_arriving_at_target_channel = last_hop.amt_to_forward_msat
expected_income_msat = self.fee_factor * self.compute_fee(
amount_arriving_at_target_channel / 1_000, fee_rate_last_hop, policy_last_hop
) * 1_000
rebalance_fee_msat = route.total_fees_msat
high_fees = rebalance_fee_msat + missed_fee_msat > expected_income_msat
if high_fees:
if self.reckless:
self.output.print_line(format_error("Considering route with high fees"))
return False
difference_msat = -rebalance_fee_msat - missed_fee_msat + expected_income_msat
first_hop_alias = format_alias(self.lnd.get_node_alias(route.hops[0].pub_key))
last_hop_alias = format_alias(self.lnd.get_node_alias(route.hops[-2].pub_key))
self.output.print_line("")
if fee_rate_last_hop != original_fee_rate_last_hop:
self.output.print_line(
f"Calculating using capped fee rate {MAX_FEE_RATE} for inbound channel "
f"(with {last_hop_alias}, original fee rate {original_fee_rate_last_hop})"
)
route_ppm = int(route.total_fees_msat * 1_000_000 / route.total_amt_msat)
route_fee_formatted = format_fee_msat(rebalance_fee_msat)
route_ppm_formatted = format_ppm(route_ppm)
self.output.print_line(
f"Skipping route due to high fees "
f"(fee {route_fee_formatted}, {route_ppm_formatted})"
)
self.output.print_route(route)
future_income_formatted = format_earning(math.floor(expected_income_msat), 8)
self.output.print_without_linebreak(
f" {future_income_formatted}: "
f"expected future fee income for inbound channel (with {last_hop_alias})"
)
if self.fee_factor != 1.0:
self.output.print_line(f" (factor {self.fee_factor})")
else:
self.output.print_line("")
transaction_fees_formatted = format_fee_msat(int(rebalance_fee_msat), 8)
missed_fee_formatted = format_fee_msat(math.ceil(missed_fee_msat), 8)
difference_formatted = format_fee_msat_red(math.ceil(difference_msat), 8)
self.output.print_line(f"- {transaction_fees_formatted}: rebalance transaction fees")
if not self.ignore_missed_fee:
self.output.print_line(f"- {missed_fee_formatted}: "
f"missing out on future fees for outbound channel (with {first_hop_alias})")
self.output.print_line(f"= {difference_formatted}")
routes.ignore_high_fee_hops(route)
return high_fees
@staticmethod
def compute_fee(amount_sat, fee_rate, policy):
expected_fee = amount_sat / 1_000_000 * fee_rate + policy.fee_base_msat / 1_000
return expected_fee
def generate_invoice(self):
if self.last_hop_channel:
memo = f"Rebalance of channel with ID {self.last_hop_channel.chan_id}"
else:
memo = f"Rebalance of channel with ID {self.first_hop_channel.chan_id}"
return self.lnd.generate_invoice(memo, self.amount)
def get_channel_for_channel_id(self, channel_id, clear_cache_if_not_found=True):
for channel in self.lnd.get_channels():
if channel.chan_id == channel_id:
if not hasattr(channel, "local_balance"):
channel.local_balance = 0
if not hasattr(channel, "remote_balance"):
channel.remote_balance = 0
return channel
if clear_cache_if_not_found:
self.lnd.get_channels.cache_clear()
return self.get_channel_for_channel_id(channel_id, clear_cache_if_not_found=False)
raise Exception(f"Unable to find channel with id {channel_id}!")
def initialize_ignored_channels(self, routes, fee_limit_msat, min_fee_last_hop):
if self.reckless:
self.output.print_line(format_error("Also considering economically unviable channels for routes."))
for chan_id in self.excluded:
self.output.print_line(f"Channel {format_channel_id(chan_id)} is excluded:")
routes.ignore_channel(chan_id)
if self.first_hop_channel:
if min_fee_last_hop and not self.reckless:
self.ignore_cheap_channels_for_last_hop(min_fee_last_hop, routes)
if not self.last_hop_channel and not self.reckless:
self.ignore_last_hops_with_low_inbound(routes)
# avoid me - X - me via the same channel/peer
chan_id = self.first_hop_channel.chan_id
from_pub_key = self.first_hop_channel.remote_pubkey
to_pub_key = self.lnd.get_own_pubkey()
routes.ignore_edge_from_to(
chan_id, from_pub_key, to_pub_key, show_message=False
)
if self.last_hop_channel:
if not self.reckless:
self.ignore_first_hops_with_fee_rate_higher_than_last_hop(routes)
# avoid me - X - me via the same channel/peer
chan_id = self.last_hop_channel.chan_id
from_pub_key = self.lnd.get_own_pubkey()
to_pub_key = self.last_hop_channel.remote_pubkey
routes.ignore_edge_from_to(
chan_id, from_pub_key, to_pub_key, show_message=False
)
if self.last_hop_channel and fee_limit_msat and not self.reckless:
# ignore first hops with high fee rate configured by our node (causing high missed future fees)
max_fee_rate_first_hop = math.ceil(fee_limit_msat * 1_000 / self.amount)
for channel in self.lnd.get_channels():
try:
fee_rate = self.lnd.get_ppm_to(channel.chan_id)
if fee_rate > max_fee_rate_first_hop and self.first_hop_channel != channel:
routes.ignore_first_hop(channel, show_message=False)
except:
pass
for channel in self.lnd.get_channels():
if self.low_outbound_liquidity_after_sending(channel, self.amount):
routes.ignore_first_hop(channel, show_message=False)
def ignore_cheap_channels_for_last_hop(self, min_fee_last_hop, routes):
for channel in self.lnd.get_channels():
channel_id = channel.chan_id
try:
ppm = self.lnd.get_ppm_to(channel_id)
policy = self.lnd.get_policy_to(channel_id)
fee = self.compute_fee(self.amount, self.fee_factor * ppm, policy)
if fee < min_fee_last_hop:
routes.ignore_edge_from_to(
channel_id, channel.remote_pubkey, self.lnd.get_own_pubkey(), show_message=False
)
except:
pass
def ignore_first_hops_with_fee_rate_higher_than_last_hop(self, routes):
last_hop_fee_rate = self.lnd.get_ppm_to(self.last_hop_channel.chan_id)
from_pub_key = self.lnd.get_own_pubkey()
for channel in self.lnd.get_channels():
chan_id = channel.chan_id
try:
if self.lnd.get_ppm_to(chan_id) > last_hop_fee_rate:
to_pub_key = channel.remote_pubkey
routes.ignore_edge_from_to(
chan_id, from_pub_key, to_pub_key, show_message=False
)
except:
pass
def ignore_last_hops_with_low_inbound(self, routes):
for channel in self.lnd.get_channels():
channel_id = channel.chan_id
if channel is None:
return
if max(0, channel.remote_balance - channel.remote_chan_reserve_sat) - self.amount < self.min_remote:
to_pub_key = self.lnd.get_own_pubkey()
routes.ignore_edge_from_to(
channel_id, channel.remote_pubkey, to_pub_key, show_message=False
)