forked from lightninglabs/loop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.proto
2156 lines (1788 loc) · 56.5 KB
/
client.proto
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
syntax = "proto3";
import "swapserverrpc/common.proto";
package looprpc;
option go_package = "github.com/lightninglabs/loop/looprpc";
/*
SwapClient is a service that handles the client side process of onchain/offchain
swaps. The service is designed for a single client.
*/
service SwapClient {
/* loop: `out`
LoopOut initiates an loop out swap with the given parameters. The call
returns after the swap has been set up with the swap server. From that
point onwards, progress can be tracked via the SwapStatus stream that is
returned from Monitor().
*/
rpc LoopOut (LoopOutRequest) returns (SwapResponse);
/* loop: `in`
LoopIn initiates a loop in swap with the given parameters. The call
returns after the swap has been set up with the swap server. From that
point onwards, progress can be tracked via the SwapStatus stream
that is returned from Monitor().
*/
rpc LoopIn (LoopInRequest) returns (SwapResponse);
/* loop: `monitor`
Monitor will return a stream of swap updates for currently active swaps.
*/
rpc Monitor (MonitorRequest) returns (stream SwapStatus);
/* loop: `listswaps`
ListSwaps returns a list of all currently known swaps and their current
status.
*/
rpc ListSwaps (ListSwapsRequest) returns (ListSwapsResponse);
/* loop: `swapinfo`
SwapInfo returns all known details about a single swap.
*/
rpc SwapInfo (SwapInfoRequest) returns (SwapStatus);
/* loop: `abandonswap`
AbandonSwap allows the client to abandon a swap.
*/
rpc AbandonSwap (AbandonSwapRequest) returns (AbandonSwapResponse);
/* loop: `terms`
LoopOutTerms returns the terms that the server enforces for a loop out swap.
*/
rpc LoopOutTerms (TermsRequest) returns (OutTermsResponse);
/* loop: `quote`
LoopOutQuote returns a quote for a loop out swap with the provided
parameters.
*/
rpc LoopOutQuote (QuoteRequest) returns (OutQuoteResponse);
/* loop: `terms`
GetTerms returns the terms that the server enforces for swaps.
*/
rpc GetLoopInTerms (TermsRequest) returns (InTermsResponse);
/* loop: `quote`
GetQuote returns a quote for a swap with the provided parameters.
*/
rpc GetLoopInQuote (QuoteRequest) returns (InQuoteResponse);
/*
Probe asks he sever to probe the route to us to have a better upfront
estimate about routing fees when loopin-in.
*/
rpc Probe (ProbeRequest) returns (ProbeResponse);
/* loop: `listauth`
GetL402Tokens returns all L402 tokens the daemon ever paid for.
*/
rpc GetL402Tokens (TokensRequest) returns (TokensResponse);
/*
Deprecated: use GetL402Tokens.
This API is provided to maintain backward compatibility with gRPC clients
(e.g. `loop listauth`, Terminal Web, RTL).
Type LsatToken used by GetLsatTokens in the past was renamed to L402Token,
but this does not affect binary encoding, so we can use type L402Token here.
*/
rpc GetLsatTokens (TokensRequest) returns (TokensResponse);
/* loop: `fetchl402`
FetchL402Token fetches an L402 token from the server, this is required in
order to receive reservation notifications from the server.
*/
rpc FetchL402Token (FetchL402TokenRequest) returns (FetchL402TokenResponse);
/* loop: `getinfo`
GetInfo gets basic information about the loop daemon.
*/
rpc GetInfo (GetInfoRequest) returns (GetInfoResponse);
/* loop: `getparams`
GetLiquidityParams gets the parameters that the daemon's liquidity manager
is currently configured with. This may be nil if nothing is configured.
[EXPERIMENTAL]: endpoint is subject to change.
*/
rpc GetLiquidityParams (GetLiquidityParamsRequest)
returns (LiquidityParameters);
/* loop: `setparams`
SetLiquidityParams sets a new set of parameters for the daemon's liquidity
manager. Note that the full set of parameters must be provided, because
this call fully overwrites our existing parameters.
[EXPERIMENTAL]: endpoint is subject to change.
*/
rpc SetLiquidityParams (SetLiquidityParamsRequest)
returns (SetLiquidityParamsResponse);
/* loop: `suggestswaps`
SuggestSwaps returns a list of recommended swaps based on the current
state of your node's channels and it's liquidity manager parameters.
Note that only loop out suggestions are currently supported.
[EXPERIMENTAL]: endpoint is subject to change.
*/
rpc SuggestSwaps (SuggestSwapsRequest) returns (SuggestSwapsResponse);
/* loop: `listreservations`
ListReservations returns a list of all reservations the server opened to us.
*/
rpc ListReservations (ListReservationsRequest)
returns (ListReservationsResponse);
/* loop: `instantout`
InstantOut initiates an instant out swap with the given parameters.
*/
rpc InstantOut (InstantOutRequest) returns (InstantOutResponse);
/* loop: `instantoutquote`
InstantOutQuote returns a quote for an instant out swap with the provided
parameters.
*/
rpc InstantOutQuote (InstantOutQuoteRequest)
returns (InstantOutQuoteResponse);
/* loop: `listinstantouts`
ListInstantOuts returns a list of all currently known instant out swaps and
their current status.
*/
rpc ListInstantOuts (ListInstantOutsRequest)
returns (ListInstantOutsResponse);
/* loop: `static newstaticaddress`
NewStaticAddress requests a new static address for loop-ins from the server.
*/
rpc NewStaticAddress (NewStaticAddressRequest)
returns (NewStaticAddressResponse);
/* loop: `static listunspentdeposits`
ListUnspentDeposits returns a list of utxos deposited at a static address.
*/
rpc ListUnspentDeposits (ListUnspentDepositsRequest)
returns (ListUnspentDepositsResponse);
/* loop:`static withdraw`
WithdrawDeposits withdraws a selection or all deposits of a static address.
*/
rpc WithdrawDeposits (WithdrawDepositsRequest)
returns (WithdrawDepositsResponse);
/* loop:`listdeposits`
ListStaticAddressDeposits returns a list of filtered static address
deposits.
*/
rpc ListStaticAddressDeposits (ListStaticAddressDepositsRequest)
returns (ListStaticAddressDepositsResponse);
/* loop:`listswaps`
ListStaticAddressSwaps returns a list of filtered static address
swaps.
*/
rpc ListStaticAddressSwaps (ListStaticAddressSwapsRequest)
returns (ListStaticAddressSwapsResponse);
/* loop:`static summary`
GetStaticAddressSummary returns a summary of static address related
statistics.
*/
rpc GetStaticAddressSummary (StaticAddressSummaryRequest)
returns (StaticAddressSummaryResponse);
/* loop:`static`
StaticAddressLoopIn initiates a static address loop-in swap.
*/
rpc StaticAddressLoopIn (StaticAddressLoopInRequest)
returns (StaticAddressLoopInResponse);
}
message LoopOutRequest {
/*
Requested swap amount in sat. This does not include the swap and miner fee.
*/
int64 amt = 1;
/*
Base58 encoded destination address for the swap.
*/
string dest = 2;
/*
Maximum off-chain fee in sat that may be paid for swap payment to the
server. This limit is applied during path finding. Typically this value is
taken from the response of the GetQuote call.
*/
int64 max_swap_routing_fee = 3;
/*
Maximum off-chain fee in sat that may be paid for the prepay to the server.
This limit is applied during path finding. Typically this value is taken
from the response of the GetQuote call.
*/
int64 max_prepay_routing_fee = 4;
/*
Maximum we are willing to pay the server for the swap. This value is not
disclosed in the swap initiation call, but if the server asks for a
higher fee, we abort the swap. Typically this value is taken from the
response of the GetQuote call. It includes the prepay amount.
*/
int64 max_swap_fee = 5;
/*
Maximum amount of the swap fee that may be charged as a prepayment.
*/
int64 max_prepay_amt = 6;
/*
Maximum in on-chain fees that we are willing to spend. If we want to
sweep the on-chain htlc and the fee estimate turns out higher than this
value, we cancel the swap. If the fee estimate is lower, we publish the
sweep tx.
If the sweep tx is not confirmed, we are forced to ratchet up fees until it
is swept. Possibly even exceeding max_miner_fee if we get close to the htlc
timeout. Because the initial publication revealed the preimage, we have no
other choice. The server may already have pulled the off-chain htlc. Only
when the fee becomes higher than the swap amount, we can only wait for fees
to come down and hope - if we are past the timeout - that the server is not
publishing the revocation.
max_miner_fee is typically taken from the response of the GetQuote call.
*/
int64 max_miner_fee = 7;
/*
Deprecated, use outgoing_chan_set. The channel to loop out, the channel
to loop out is selected based on the lowest routing fee for the swap
payment to the server.
*/
uint64 loop_out_channel = 8 [deprecated = true];
/*
A restriction on the channel set that may be used to loop out. The actual
channel(s) that will be used are selected based on the lowest routing fee
for the swap payment to the server.
*/
repeated uint64 outgoing_chan_set = 11;
/*
The number of blocks from the on-chain HTLC's confirmation height that it
should be swept within.
*/
int32 sweep_conf_target = 9;
/*
The number of confirmations that we require for the on chain htlc that will
be published by the server before we reveal the preimage.
*/
int32 htlc_confirmations = 13;
/*
The latest time (in unix seconds) we allow the server to wait before
publishing the HTLC on chain. Setting this to a larger value will give the
server the opportunity to batch multiple swaps together, and wait for
low-fee periods before publishing the HTLC, potentially resulting in a
lower total swap fee.
*/
uint64 swap_publication_deadline = 10;
/*
An optional label for this swap. This field is limited to 500 characters
and may not start with the prefix [reserved], which is used to tag labels
produced by the daemon.
*/
string label = 12;
/*
An optional identification string that will be appended to the user agent
string sent to the server to give information about the usage of loop. This
initiator part is meant for user interfaces to add their name to give the
full picture of the binary used (loopd, LiT) and the method used for
triggering the swap (loop CLI, autolooper, LiT UI, other 3rd party UI).
*/
string initiator = 14;
/*
An alternative destination address source for the swap. This field
represents the name of the account in the backing lnd instance.
Refer to lnd's wallet import functions for reference.
*/
string account = 15;
/*
The address type of the account specified in the account field.
*/
AddressType account_addr_type = 16;
/*
A flag indicating whether the defined destination address does not belong to
the wallet. This is used to flag whether this loop out swap could have its
associated sweep batched.
*/
bool is_external_addr = 17;
/*
The reservations to use for the swap. If this field is set, loop will try
to use the instant out flow using the given reservations. If the
reservations are not sufficient, the swap will fail. The swap amount must
be equal to the sum of the amounts of the reservations.
*/
repeated bytes reservation_ids = 18;
/*
The timeout in seconds to use for off-chain payments. Note that the swap
payment is attempted multiple times where each attempt will set this value
as the timeout for the payment.
*/
uint32 payment_timeout = 19;
/*
The optional asset information to use for the swap. If set, the swap will
be paid in the specified asset using the provided edge node. An Asset client
must be connected to the loop client to use this feature.
*/
AssetLoopOutRequest asset_info = 20;
/*
The optional RFQ information to use for the swap. If set, the swap will
use the provided RFQs to pay for the swap invoice.
*/
AssetRfqInfo asset_rfq_info = 21;
}
/*
`AddressType` has to be one of:
- `unknown`: Unknown address type
- `p2tr`: Pay to taproot pubkey (`TAPROOT_PUBKEY` = 1)
*/
enum AddressType {
ADDRESS_TYPE_UNKNOWN = 0;
TAPROOT_PUBKEY = 1;
}
message LoopInRequest {
/*
Requested swap amount in sat. This does not include the swap and miner
fee.
*/
int64 amt = 1;
/*
Maximum we are willing to pay the server for the swap. This value is not
disclosed in the swap initiation call, but if the server asks for a
higher fee, we abort the swap. Typically this value is taken from the
response of the GetQuote call.
*/
int64 max_swap_fee = 2;
/*
Maximum in on-chain fees that we are willing to spend. If we want to
publish the on-chain htlc and the fee estimate turns out higher than this
value, we cancel the swap.
max_miner_fee is typically taken from the response of the GetQuote call.
*/
int64 max_miner_fee = 3;
/*
The last hop to use for the loop in swap. If empty, the last hop is selected
based on the lowest routing fee for the swap payment from the server.
*/
bytes last_hop = 4;
/*
If external_htlc is true, we expect the htlc to be published by an external
actor.
*/
bool external_htlc = 5;
/*
The number of blocks that the on chain htlc should confirm within.
*/
int32 htlc_conf_target = 6;
/*
An optional label for this swap. This field is limited to 500 characters
and may not be one of the reserved values in loop/labels Reserved list.
*/
string label = 7;
/*
An optional identification string that will be appended to the user agent
string sent to the server to give information about the usage of loop. This
initiator part is meant for user interfaces to add their name to give the
full picture of the binary used (loopd, LiT) and the method used for
triggering the swap (loop CLI, autolooper, LiT UI, other 3rd party UI).
*/
string initiator = 8;
/*
Optional route hints to reach the destination through private channels.
*/
repeated looprpc.RouteHint route_hints = 9;
/*
Private indicates whether the destination node should be considered
private. In which case, loop will generate hophints to assist with
probing and payment.
*/
bool private = 10;
}
message SwapResponse {
/*
Swap identifier to track status in the update stream that is returned from
the Start() call. Currently this is the hash that locks the htlcs.
DEPRECATED: To make the API more consistent, this field is deprecated in
favor of id_bytes and will be removed in a future release.
*/
string id = 1 [deprecated = true];
/*
Swap identifier to track status in the update stream that is returned from
the Start() call. Currently this is the hash that locks the htlcs.
*/
bytes id_bytes = 3;
/*
DEPRECATED. This field stores the address of the onchain htlc, but
depending on the request, the semantics are different.
- For internal loop-in htlc_address contains the address of the
native segwit (P2WSH) htlc.
/ - For loop-out htlc_address always contains the native segwit (P2WSH)
htlc address.
*/
string htlc_address = 2 [deprecated = true];
reserved 4;
/*
The native segwit address of the on-chain htlc.
Used for both loop-in and loop-out.
*/
string htlc_address_p2wsh = 5;
// The address of the v3 (taproot) htlc. Used for both loop-in and loop-out.
string htlc_address_p2tr = 7;
// A human-readable message received from the loop server.
string server_message = 6;
}
message MonitorRequest {
}
message SwapStatus {
/*
Requested swap amount in sat. This does not include the swap and miner
fee.
*/
int64 amt = 1;
/*
Swap identifier to track status in the update stream that is returned from
the Start() call. Currently this is the hash that locks the htlcs.
DEPRECATED: To make the API more consistent, this field is deprecated in
favor of id_bytes and will be removed in a future release.
*/
string id = 2 [deprecated = true];
/*
Swap identifier to track status in the update stream that is returned from
the Start() call. Currently this is the hash that locks the htlcs.
*/
bytes id_bytes = 11;
/*
The type of the swap.
*/
SwapType type = 3;
/*
State the swap is currently in, see State enum.
*/
SwapState state = 4;
/*
A failure reason for the swap, only set if the swap has failed.
*/
FailureReason failure_reason = 14;
/*
Initiation time of the swap.
*/
int64 initiation_time = 5;
/*
Initiation time of the swap.
*/
int64 last_update_time = 6;
/*
DEPRECATED: This field stores the address of the onchain htlc.
- For internal loop-in htlc_address contains the address of the
native segwit (P2WSH) htlc.
- For loop-out htlc_address always contains the native segwit (P2WSH)
htlc address.
*/
string htlc_address = 7 [deprecated = true];
// HTLC address (native segwit), used in loop-in and loop-out swaps.
string htlc_address_p2wsh = 12;
// The address of the v3 (taproot) htlc. Used for both loop-in and loop-out.
string htlc_address_p2tr = 18;
// Swap server cost
int64 cost_server = 8;
// On-chain transaction cost
int64 cost_onchain = 9;
// Off-chain routing fees
int64 cost_offchain = 10;
// Optional last hop if provided in the loop in request.
bytes last_hop = 16;
// Optional outgoing channel set if provided in the loop out request.
repeated uint64 outgoing_chan_set = 17;
// An optional label given to the swap on creation.
string label = 15;
// If the swap was an asset swap, the asset information will be returned.
AssetLoopOutInfo asset_info = 19;
}
enum SwapType {
// LOOP_OUT indicates an loop out swap (off-chain to on-chain)
LOOP_OUT = 0;
// LOOP_IN indicates a loop in swap (on-chain to off-chain)
LOOP_IN = 1;
}
enum SwapState {
/*
INITIATED is the initial state of a swap. At that point, the initiation
call to the server has been made and the payment process has been started
for the swap and prepayment invoices.
*/
INITIATED = 0;
/*
PREIMAGE_REVEALED is reached when the sweep tx publication is first
attempted. From that point on, we should consider the preimage to no
longer be secret and we need to do all we can to get the sweep confirmed.
This state will mostly coalesce with StateHtlcConfirmed, except in the
case where we wait for fees to come down before we sweep.
*/
PREIMAGE_REVEALED = 1;
/*
HTLC_PUBLISHED is reached when the htlc tx has been published in a loop in
swap.
*/
HTLC_PUBLISHED = 2;
/*
SUCCESS is the final swap state that is reached when the sweep tx has
the required confirmation depth.
*/
SUCCESS = 3;
/*
FAILED is the final swap state for a failed swap with or without loss of
the swap amount.
*/
FAILED = 4;
/*
INVOICE_SETTLED is reached when the swap invoice in a loop in swap has been
paid, but we are still waiting for the htlc spend to confirm.
*/
INVOICE_SETTLED = 5;
}
enum FailureReason {
/*
FAILURE_REASON_NONE is set when the swap did not fail, it is either in
progress or succeeded.
*/
FAILURE_REASON_NONE = 0;
/*
FAILURE_REASON_OFFCHAIN indicates that a loop out failed because it wasn't
possible to find a route for one or both off chain payments that met the fee
and timelock limits required.
*/
FAILURE_REASON_OFFCHAIN = 1;
/*
FAILURE_REASON_TIMEOUT indicates that the swap failed because on chain htlc
did not confirm before its expiry, or it confirmed too late for us to reveal
our preimage and claim.
*/
FAILURE_REASON_TIMEOUT = 2;
/*
FAILURE_REASON_SWEEP_TIMEOUT indicates that a loop out permanently failed
because the on chain htlc wasn't swept before the server revoked the
htlc.
*/
FAILURE_REASON_SWEEP_TIMEOUT = 3;
/*
FAILURE_REASON_INSUFFICIENT_VALUE indicates that a loop out has failed
because the on chain htlc had a lower value than requested.
*/
FAILURE_REASON_INSUFFICIENT_VALUE = 4;
/*
FAILURE_REASON_TEMPORARY indicates that a swap cannot continue due to an
internal error. Manual intervention such as a restart is required.
*/
FAILURE_REASON_TEMPORARY = 5;
/*
FAILURE_REASON_INCORRECT_AMOUNT indicates that a loop in permanently failed
because the amount extended by an external loop in htlc is insufficient.
*/
FAILURE_REASON_INCORRECT_AMOUNT = 6;
/*
FAILURE_REASON_ABANDONED indicates that a swap permanently failed because
the client manually abandoned the swap.
*/
FAILURE_REASON_ABANDONED = 7;
/*
FAILURE_REASON_INSUFFICIENT_CONFIRMED_BALANCE indicates that a swap
wasn't published due to insufficient confirmed balance.
*/
FAILURE_REASON_INSUFFICIENT_CONFIRMED_BALANCE = 8;
/*
FAILURE_REASON_INCORRECT_HTLC_AMT_SWEPT indicates that a swap
wasn't published due to insufficient confirmed balance.
*/
FAILURE_REASON_INCORRECT_HTLC_AMT_SWEPT = 9;
}
message ListSwapsRequest {
// Optional filter to only return swaps that match the filter.
ListSwapsFilter list_swap_filter = 1;
}
message ListSwapsFilter {
enum SwapTypeFilter {
// ANY indicates that no filter is applied.
ANY = 0;
// LOOP_OUT indicates an loop out swap (off-chain to on-chain).
LOOP_OUT = 1;
// LOOP_IN indicates a loop in swap (on-chain to off-chain).
LOOP_IN = 2;
}
// The type of the swap.
SwapTypeFilter swap_type = 1;
// If set, only pending swaps are returned.
bool pending_only = 2;
// If specified on creation, the outgoing channel set of the swap.
repeated uint64 outgoing_chan_set = 3;
// Label of swap to filter for.
string label = 4;
// If specified on creation, the last hop of the swap.
bytes loop_in_last_hop = 5;
// If specified, only returns asset swaps.
bool asset_swap_only = 6;
}
message ListSwapsResponse {
/*
The list of all currently known swaps and their status.
*/
repeated SwapStatus swaps = 1;
}
message SwapInfoRequest {
/*
The swap identifier which currently is the hash that locks the HTLCs. When
using REST, this field must be encoded as URL safe base64.
*/
bytes id = 1;
}
message TermsRequest {
}
message InTermsResponse {
reserved 1, 2, 3, 4, 7;
/*
Minimum swap amount (sat)
*/
int64 min_swap_amount = 5;
/*
Maximum swap amount (sat)
*/
int64 max_swap_amount = 6;
}
message OutTermsResponse {
reserved 1, 2, 3, 4, 7;
/*
Minimum swap amount (sat)
*/
int64 min_swap_amount = 5;
/*
Maximum swap amount (sat)
*/
int64 max_swap_amount = 6;
// The minimally accepted cltv delta of the on-chain htlc.
int32 min_cltv_delta = 8;
// The maximally accepted cltv delta of the on-chain htlc.
int32 max_cltv_delta = 9;
}
message QuoteRequest {
/*
The amount to swap in satoshis.
*/
int64 amt = 1;
/*
The confirmation target that should be used either for the sweep of the
on-chain HTLC broadcast by the swap server in the case of a Loop Out, or for
the confirmation of the on-chain HTLC broadcast by the swap client in the
case of a Loop In.
*/
int32 conf_target = 2;
/*
If external_htlc is true, we expect the htlc to be published by an external
actor.
*/
bool external_htlc = 3;
/*
The latest time (in unix seconds) we allow the server to wait before
publishing the HTLC on chain. Setting this to a larger value will give the
server the opportunity to batch multiple swaps together, and wait for
low-fee periods before publishing the HTLC, potentially resulting in a
lower total swap fee. This only has an effect on loop out quotes.
*/
uint64 swap_publication_deadline = 4;
/*
Optionally the client can specify the last hop pubkey when requesting a
loop-in quote. This is useful to get better off-chain routing fee from the
server.
*/
bytes loop_in_last_hop = 5;
/*
Optional route hints to reach the destination through private channels.
*/
repeated looprpc.RouteHint loop_in_route_hints = 6;
/*
Private indicates whether the destination node should be considered
private. In which case, loop will generate hophints to assist with
probing and payment.
*/
bool private = 7;
/*
Static address deposit outpoints that will be quoted for. This option only
pertains to loop in swaps. Either this or the amt parameter can be set at
the same time.
*/
repeated string deposit_outpoints = 8;
/*
The optional asset information to use for the swap. If set, the quote will
be returned in the specified asset.
*/
AssetLoopOutRequest asset_info = 9;
}
message InQuoteResponse {
reserved 2, 4;
/*
The fee that the swap server is charging for the swap.
*/
int64 swap_fee_sat = 1;
/*
An estimate of the on-chain fee that needs to be paid to publish the HTLC
If a miner fee of 0 is returned, it means the external_htlc flag was set for
a loop in and the fee estimation was skipped. If a miner fee of -1 is
returned, it means lnd's wallet tried to estimate the fee but was unable to
create a sample estimation transaction because not enough funds are
available. An information message should be shown to the user in this case.
*/
int64 htlc_publish_fee_sat = 3;
/*
On-chain cltv expiry delta
*/
int32 cltv_delta = 5;
/*
The confirmation target to be used to publish the on-chain HTLC.
*/
int32 conf_target = 6;
}
message OutQuoteResponse {
/*
The fee that the swap server is charging for the swap.
*/
int64 swap_fee_sat = 1;
/*
The part of the swap fee that is requested as a prepayment.
*/
int64 prepay_amt_sat = 2;
/*
An estimate of the on-chain fee that needs to be paid to sweep the HTLC for
a loop out.
*/
int64 htlc_sweep_fee_sat = 3;
/*
The node pubkey where the swap payment needs to be paid
to. This can be used to test connectivity before initiating the swap.
*/
bytes swap_payment_dest = 4;
/*
On-chain cltv expiry delta
*/
int32 cltv_delta = 5;
/*
The confirmation target to be used for the sweep of the on-chain HTLC.
*/
int32 conf_target = 6;
/*
If the request was for an asset swap, the quote will return the rfq ids
that will be used to pay for the swap and prepay invoices.
*/
AssetRfqInfo asset_rfq_info = 7;
}
message ProbeRequest {
/*
The amount to probe.
*/
int64 amt = 1;
/*
Optional last hop of the route to probe.
*/
bytes last_hop = 2;
/*
Optional route hints to reach the destination through private channels.
*/
repeated looprpc.RouteHint route_hints = 3;
}
message ProbeResponse {
}
message TokensRequest {
}
message TokensResponse {
/*
List of all tokens the daemon knows of, including old/expired tokens.
*/
repeated L402Token tokens = 1;
}
message FetchL402TokenRequest {
}
message FetchL402TokenResponse {
}
message L402Token {
/*
The base macaroon that was baked by the auth server.
*/
bytes base_macaroon = 1;
/*
The payment hash of the payment that was paid to obtain the token.
*/
bytes payment_hash = 2;
/*
The preimage of the payment hash, knowledge of this is proof that the
payment has been paid. If the preimage is set to all zeros, this means the
payment is still pending and the token is not yet fully valid.
*/
bytes payment_preimage = 3;
/*
The amount of millisatoshis that was paid to get the token.
*/
int64 amount_paid_msat = 4;
/*
The amount of millisatoshis paid in routing fee to pay for the token.
*/
int64 routing_fee_paid_msat = 5;
/*
The creation time of the token as UNIX timestamp in seconds.
*/
int64 time_created = 6;
/*
Indicates whether the token is expired or still valid.
*/
bool expired = 7;
/*
Identifying attribute of this token in the store. Currently represents the
file name of the token where it's stored on the file system.
*/
string storage_name = 8;
/*
The l402 ID of the token.
*/
string id = 9;
}
message LoopStats {
/*
Number of currently pending swaps.
*/
uint64 pending_count = 1;
/*
Number of succeeded swaps.
*/
uint64 success_count = 2;
/*
Number failed swaps.
*/
uint64 fail_count = 3;
/*
The sum of all pending swap amounts.
*/
int64 sum_pending_amt = 4;
/*
The sum of all succeeded swap amounts.