@@ -39,6 +39,7 @@ interface Builder {
39
39
void set_chain_source_bitcoind_rpc(string rpc_host, u16 rpc_port, string rpc_user, string rpc_password);
40
40
void set_gossip_source_p2p();
41
41
void set_gossip_source_rgs(string rgs_server_url);
42
+ void set_liquidity_source_lsps1(PublicKey node_id, SocketAddress address, string? token);
42
43
void set_liquidity_source_lsps2(PublicKey node_id, SocketAddress address, string? token);
43
44
void set_storage_dir_path(string storage_dir_path);
44
45
void set_network(Network network);
@@ -78,6 +79,7 @@ interface Node {
78
79
SpontaneousPayment spontaneous_payment();
79
80
OnchainPayment onchain_payment();
80
81
UnifiedQrPayment unified_qr_payment();
82
+ Lsps1Liquidity lsps1_liquidity();
81
83
[Throws=NodeError]
82
84
void connect(PublicKey node_id, SocketAddress address, boolean persist);
83
85
[Throws=NodeError]
@@ -173,6 +175,13 @@ interface UnifiedQrPayment {
173
175
QrPaymentResult send([ByRef]string uri_str);
174
176
};
175
177
178
+ interface Lsps1Liquidity {
179
+ [Throws=NodeError]
180
+ LSPS1OrderStatus request_channel(u64 lsp_balance_sat, u64 client_balance_sat, u32 channel_expiry_blocks, boolean announce_channel);
181
+ [Throws=NodeError]
182
+ LSPS1OrderStatus check_order_status(OrderId order_id);
183
+ };
184
+
176
185
[Error]
177
186
enum NodeError {
178
187
"AlreadyRunning",
@@ -220,6 +229,8 @@ enum NodeError {
220
229
"InvalidUri",
221
230
"InvalidQuantity",
222
231
"InvalidNodeAlias",
232
+ "InvalidDateTime",
233
+ "InvalidFeeRate",
223
234
"DuplicatePayment",
224
235
"UnsupportedCurrency",
225
236
"InsufficientFunds",
@@ -370,6 +381,59 @@ dictionary CustomTlvRecord {
370
381
sequence<u8> value;
371
382
};
372
383
384
+ dictionary LSPS1OrderStatus {
385
+ OrderId order_id;
386
+ OrderParameters order_params;
387
+ PaymentInfo payment_options;
388
+ ChannelOrderInfo? channel_state;
389
+ };
390
+
391
+ dictionary OrderParameters {
392
+ u64 lsp_balance_sat;
393
+ u64 client_balance_sat;
394
+ u16 required_channel_confirmations;
395
+ u16 funding_confirms_within_blocks;
396
+ u32 channel_expiry_blocks;
397
+ string? token;
398
+ boolean announce_channel;
399
+ };
400
+
401
+ dictionary PaymentInfo {
402
+ Bolt11PaymentInfo? bolt11;
403
+ OnchainPaymentInfo? onchain;
404
+ };
405
+
406
+ dictionary Bolt11PaymentInfo {
407
+ PaymentState state;
408
+ DateTime expires_at;
409
+ u64 fee_total_sat;
410
+ u64 order_total_sat;
411
+ Bolt11Invoice invoice;
412
+ };
413
+
414
+ dictionary OnchainPaymentInfo {
415
+ PaymentState state;
416
+ DateTime expires_at;
417
+ u64 fee_total_sat;
418
+ u64 order_total_sat;
419
+ Address address;
420
+ u16? min_onchain_payment_confirmations;
421
+ FeeRate min_fee_for_0conf;
422
+ Address? refund_onchain_address;
423
+ };
424
+
425
+ dictionary ChannelOrderInfo {
426
+ DateTime funded_at;
427
+ OutPoint funding_outpoint;
428
+ DateTime expires_at;
429
+ };
430
+
431
+ enum PaymentState {
432
+ "ExpectPayment",
433
+ "Paid",
434
+ "Refunded",
435
+ };
436
+
373
437
[Enum]
374
438
interface MaxTotalRoutingFeeLimit {
375
439
None ();
@@ -622,3 +686,12 @@ typedef string UntrustedString;
622
686
623
687
[Custom]
624
688
typedef string NodeAlias;
689
+
690
+ [Custom]
691
+ typedef string OrderId;
692
+
693
+ [Custom]
694
+ typedef string DateTime;
695
+
696
+ [Custom]
697
+ typedef string FeeRate;
0 commit comments