-
Notifications
You must be signed in to change notification settings - Fork 45
/
breez_sdk.udl
1001 lines (824 loc) · 19.7 KB
/
breez_sdk.udl
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
dictionary RouteHintHop {
string src_node_id;
string short_channel_id;
u32 fees_base_msat;
u32 fees_proportional_millionths;
u64 cltv_expiry_delta;
u64? htlc_minimum_msat;
u64? htlc_maximum_msat;
};
[Error]
enum SdkError {
"Generic",
"ServiceConnectivity",
};
[Error]
enum ConnectError {
"Generic",
"RestoreOnly",
"ServiceConnectivity",
};
[Error]
enum LnUrlAuthError {
"Generic",
"InvalidUri",
"ServiceConnectivity",
};
[Error]
enum LnUrlPayError {
"AlreadyPaid",
"Generic",
"InvalidAmount",
"InvalidInvoice",
"InvalidNetwork",
"InvalidUri",
"InvoiceExpired",
"PaymentFailed",
"PaymentTimeout",
"RouteNotFound",
"RouteTooExpensive",
"ServiceConnectivity",
};
[Error]
enum LnUrlWithdrawError {
"Generic",
"InvalidAmount",
"InvalidInvoice",
"InvalidUri",
"ServiceConnectivity",
"InvoiceNoRoutingHints",
};
[Error]
enum ReceiveOnchainError {
"Generic",
"ServiceConnectivity",
"SwapInProgress",
};
[Error]
enum ReceivePaymentError {
"Generic",
"InvalidAmount",
"InvalidInvoice",
"InvoiceExpired",
"InvoiceNoDescription",
"InvoicePreimageAlreadyExists",
"ServiceConnectivity",
"InvoiceNoRoutingHints",
};
[Error]
enum SendOnchainError {
"Generic",
"InvalidDestinationAddress",
"OutOfRange",
"PaymentFailed",
"PaymentTimeout",
"ServiceConnectivity",
};
[Error]
enum SendPaymentError {
"AlreadyPaid",
"Generic",
"InvalidAmount",
"InvalidInvoice",
"InvoiceExpired",
"InvalidNetwork",
"PaymentFailed",
"PaymentTimeout",
"RouteNotFound",
"RouteTooExpensive",
"ServiceConnectivity",
};
[Error]
enum RedeemOnchainError {
"Generic",
"ServiceConnectivity",
"InsufficientFunds",
};
enum EnvironmentType {
"Production",
"Staging",
};
enum Network {
"Bitcoin",
"Testnet",
"Signet",
"Regtest",
};
dictionary GreenlightCredentials {
sequence<u8> developer_key;
sequence<u8> developer_cert;
};
dictionary GreenlightDeviceCredentials {
sequence<u8> device;
};
[Enum]
interface NodeCredentials {
Greenlight(GreenlightDeviceCredentials credentials);
};
dictionary GreenlightNodeConfig {
GreenlightCredentials? partner_credentials;
string? invite_code;
};
[Enum]
interface NodeConfig {
Greenlight(GreenlightNodeConfig config);
};
dictionary Config {
string breezserver;
string chainnotifier_url;
string? mempoolspace_url;
string working_dir;
Network network;
u32 payment_timeout_sec;
string? default_lsp_id;
string? api_key;
f64 maxfee_percent;
u64 exemptfee_msat;
NodeConfig node_config;
};
dictionary RouteHint {
sequence<RouteHintHop> hops;
};
dictionary LNInvoice {
string bolt11;
Network network;
string payee_pubkey;
string payment_hash;
string? description;
string? description_hash;
u64? amount_msat;
u64 timestamp;
u64 expiry;
sequence<RouteHint> routing_hints;
sequence<u8> payment_secret;
u64 min_final_cltv_expiry_delta;
};
dictionary UnspentTransactionOutput {
sequence<u8> txid;
u32 outnum;
u64 amount_millisatoshi;
string address;
boolean reserved;
};
dictionary NodeState {
string id;
u32 block_height;
u64 channels_balance_msat;
u64 onchain_balance_msat;
u64 pending_onchain_balance_msat;
sequence<UnspentTransactionOutput> utxos;
u64 max_payable_msat;
u64 max_receivable_msat;
u64 max_single_payment_amount_msat;
u64 max_chan_reserve_msats;
sequence<string> connected_peers;
u64 max_receivable_single_payment_amount_msat;
u64 total_inbound_liquidity_msats;
};
dictionary ConfigureNodeRequest {
string? close_to_address;
};
dictionary ConnectRequest {
Config config;
sequence<u8> seed;
boolean? restore_only = null;
};
dictionary SignMessageRequest {
string message;
};
dictionary SignMessageResponse {
string signature;
};
dictionary CheckMessageRequest {
string message;
string pubkey;
string signature;
};
dictionary CheckMessageResponse {
boolean is_valid;
};
enum PaymentTypeFilter {
"Sent",
"Received",
"ClosedChannel",
};
dictionary MetadataFilter {
string json_path;
string json_value;
};
enum PaymentStatus {
"Pending",
"Complete",
"Failed",
};
enum PaymentType {
"Sent",
"Received",
"ClosedChannel"
};
dictionary Payment {
string id;
PaymentType payment_type;
i64 payment_time;
u64 amount_msat;
u64 fee_msat;
PaymentStatus status;
string? error;
string? description;
PaymentDetails details;
string? metadata;
};
dictionary ListPaymentsRequest {
sequence<PaymentTypeFilter>? filters = null;
sequence<MetadataFilter>? metadata_filters = null;
i64? from_timestamp = null;
i64? to_timestamp = null;
boolean? include_failures = null;
u32? offset = null;
u32? limit = null;
};
[Enum]
interface PaymentDetails {
Ln(LnPaymentDetails data);
ClosedChannel(ClosedChannelPaymentDetails data);
};
dictionary TlvEntry {
u64 field_number;
sequence<u8> value;
};
[Enum]
interface AesSuccessActionDataResult {
Decrypted(AesSuccessActionDataDecrypted data);
ErrorStatus(string reason);
};
dictionary AesSuccessActionDataDecrypted {
string description;
string plaintext;
};
dictionary MessageSuccessActionData {
string message;
};
dictionary UrlSuccessActionData {
string description;
string url;
boolean matches_callback_domain;
};
[Enum]
interface SuccessActionProcessed {
Aes(AesSuccessActionDataResult result);
Message(MessageSuccessActionData data);
Url(UrlSuccessActionData data);
};
dictionary LnPaymentDetails {
string payment_hash;
string label;
string destination_pubkey;
string payment_preimage;
boolean keysend;
string bolt11;
string? open_channel_bolt11;
SuccessActionProcessed? lnurl_success_action;
string? lnurl_pay_domain;
string? lnurl_pay_comment;
string? lnurl_metadata;
string? ln_address;
string? lnurl_withdraw_endpoint;
SwapInfo? swap_info;
ReverseSwapInfo? reverse_swap_info;
u32? pending_expiration_block;
};
dictionary ClosedChannelPaymentDetails {
ChannelState state;
string funding_txid;
string? short_channel_id;
string? closing_txid;
};
enum ChannelState {
"PendingOpen",
"Opened",
"PendingClose",
"Closed",
};
dictionary Rate {
string coin;
f64 value;
};
dictionary Symbol {
string? grapheme;
string? template;
boolean? rtl;
u32? position;
};
dictionary LocaleOverrides {
string locale;
u32? spacing;
Symbol symbol;
};
dictionary LocalizedName {
string locale;
string name;
};
dictionary CurrencyInfo {
string name;
u32 fraction_size;
u32? spacing;
Symbol? symbol;
Symbol? uniq_symbol;
sequence<LocalizedName> localized_name;
sequence<LocaleOverrides> locale_overrides;
};
dictionary FiatCurrency {
string id;
CurrencyInfo info;
};
enum FeeratePreset {
"Regular",
"Economy",
"Priority",
};
dictionary LogEntry {
string line;
string level;
};
dictionary InvoicePaidDetails {
string payment_hash;
string bolt11;
Payment? payment;
};
dictionary PaymentFailedData {
string error;
string node_id;
LNInvoice? invoice;
string? label;
};
dictionary BackupFailedData {
string error;
};
[Enum]
interface BreezEvent {
NewBlock(u32 block);
InvoicePaid(InvoicePaidDetails details);
Synced();
PaymentSucceed(Payment details);
PaymentFailed(PaymentFailedData details);
BackupStarted();
BackupSucceeded();
BackupFailed(BackupFailedData details);
ReverseSwapUpdated(ReverseSwapInfo details);
SwapUpdated(SwapInfo details);
};
dictionary BackupStatus {
boolean backed_up;
u64? last_backup_time;
};
callback interface LogStream {
void log(LogEntry l);
};
callback interface EventListener {
void on_event(BreezEvent e);
};
dictionary OpeningFeeParams {
u64 min_msat;
u32 proportional;
string valid_until;
u32 max_idle_time;
u32 max_client_to_self_delay;
string promise;
};
dictionary ReverseSwapFeesRequest {
u64? send_amount_sat = null;
u32? claim_tx_feerate = null;
};
dictionary OnchainPaymentLimitsResponse {
u64 min_sat;
u64 max_sat;
u64 max_payable_sat;
};
enum SwapAmountType {
"Send",
"Receive",
};
dictionary PrepareOnchainPaymentRequest {
u64 amount_sat;
SwapAmountType amount_type;
u32 claim_tx_feerate;
};
dictionary ReceivePaymentRequest {
u64 amount_msat;
string description;
sequence<u8>? preimage = null;
OpeningFeeParams? opening_fee_params = null;
boolean? use_description_hash = null;
u32? expiry = null;
u32? cltv = null;
};
dictionary ReceivePaymentResponse {
LNInvoice ln_invoice;
OpeningFeeParams? opening_fee_params;
u64? opening_fee_msat;
};
dictionary StaticBackupRequest {
string working_dir;
};
dictionary StaticBackupResponse {
sequence<string>? backup;
};
dictionary ReceiveOnchainRequest {
OpeningFeeParams? opening_fee_params = null;
};
dictionary BuyBitcoinRequest {
BuyBitcoinProvider provider;
OpeningFeeParams? opening_fee_params = null;
string? redirect_url = null;
};
dictionary BuyBitcoinResponse {
string url;
OpeningFeeParams? opening_fee_params;
};
dictionary OpeningFeeParamsMenu {
sequence<OpeningFeeParams> values;
};
dictionary LspInformation {
string id;
string name;
string widget_url;
string pubkey;
string host;
i64 base_fee_msat;
f64 fee_rate;
u32 time_lock_delta;
i64 min_htlc_msat;
sequence<u8> lsp_pubkey;
OpeningFeeParamsMenu opening_fee_params_list;
};
dictionary OpenChannelFeeRequest {
u64? amount_msat;
u32? expiry = null;
};
dictionary OpenChannelFeeResponse {
u64? fee_msat;
OpeningFeeParams fee_params;
};
enum SwapStatus {
"Initial",
"WaitingConfirmation",
"Redeemable",
"Redeemed",
"Refundable",
"Completed",
};
enum ReverseSwapStatus {
"Initial",
"InProgress",
"Cancelled",
"CompletedSeen",
"CompletedConfirmed",
};
dictionary SwapInfo {
string bitcoin_address;
i64 created_at;
i64 lock_height;
sequence<u8> payment_hash;
sequence<u8> preimage;
sequence<u8> private_key;
sequence<u8> public_key;
sequence<u8> swapper_public_key;
sequence<u8> script;
string? bolt11;
u64 paid_msat;
u64 unconfirmed_sats;
u64 confirmed_sats;
u64 total_incoming_txs;
SwapStatus status;
sequence<string> refund_tx_ids;
sequence<string> unconfirmed_tx_ids;
sequence<string> confirmed_tx_ids;
i64 min_allowed_deposit;
i64 max_allowed_deposit;
i64 max_swapper_payable;
string? last_redeem_error;
OpeningFeeParams? channel_opening_fees;
u32? confirmed_at;
};
dictionary ListSwapsRequest {
sequence<SwapStatus>? status = null;
i64? from_timestamp = null;
i64? to_timestamp = null;
u32? offset = null;
u32? limit = null;
};
dictionary ReverseSwapPairInfo {
u64 min;
u64 max;
string fees_hash;
f64 fees_percentage;
u64 fees_lockup;
u64 fees_claim;
u64? total_fees;
};
dictionary PrepareOnchainPaymentResponse {
string fees_hash;
f64 fees_percentage;
u64 fees_lockup;
u64 fees_claim;
u64 sender_amount_sat;
u64 recipient_amount_sat;
u64 total_fees;
};
dictionary ReverseSwapInfo {
string id;
string claim_pubkey;
string? lockup_txid;
string? claim_txid;
u64 onchain_amount_sat;
ReverseSwapStatus status;
};
dictionary BitcoinAddressData {
string address;
Network network;
u64? amount_sat;
string? label;
string? message;
};
dictionary LnUrlPaySuccessData {
SuccessActionProcessed? success_action;
Payment payment;
};
dictionary LnUrlErrorData {
string reason;
};
dictionary LnUrlPayErrorData {
string payment_hash;
string reason;
};
dictionary LnUrlPayRequest {
LnUrlPayRequestData data;
u64 amount_msat;
boolean use_trampoline;
string? comment = null;
string? payment_label = null;
boolean? validate_success_action_url = null;
};
dictionary LnUrlPayRequestData {
string callback;
u64 min_sendable;
u64 max_sendable;
string metadata_str;
u16 comment_allowed;
string domain;
boolean allows_nostr;
string? nostr_pubkey;
string? ln_address;
};
dictionary LnUrlWithdrawRequestData {
string callback;
string k1;
string default_description;
u64 min_withdrawable;
u64 max_withdrawable;
};
[Enum]
interface LnUrlPayResult {
EndpointSuccess(LnUrlPaySuccessData data);
EndpointError(LnUrlErrorData data);
PayError(LnUrlPayErrorData data);
};
[Enum]
interface LnUrlCallbackStatus {
Ok();
ErrorStatus(LnUrlErrorData data);
};
dictionary LnUrlWithdrawRequest {
LnUrlWithdrawRequestData data;
u64 amount_msat;
string? description = null;
};
[Enum]
interface LnUrlWithdrawResult {
Ok(LnUrlWithdrawSuccessData data);
Timeout(LnUrlWithdrawSuccessData data);
ErrorStatus(LnUrlErrorData data);
};
dictionary LnUrlWithdrawSuccessData {
LNInvoice invoice;
};
dictionary LnUrlAuthRequestData {
string k1;
string domain;
string url;
string? action = null;
};
dictionary ReportPaymentFailureDetails {
string payment_hash;
string? comment = null;
};
[Enum]
interface ReportIssueRequest {
PaymentFailure(ReportPaymentFailureDetails data);
};
enum HealthCheckStatus {
"Operational",
"Maintenance",
"ServiceDisruption",
};
dictionary ServiceHealthCheckResponse {
HealthCheckStatus status;
};
dictionary MetadataItem {
string key;
string value;
};
dictionary RecommendedFees {
u64 fastest_fee;
u64 half_hour_fee;
u64 hour_fee;
u64 economy_fee;
u64 minimum_fee;
};
[Enum]
interface InputType {
BitcoinAddress(BitcoinAddressData address);
Bolt11(LNInvoice invoice);
NodeId(string node_id);
Url(string url);
LnUrlPay(LnUrlPayRequestData data);
LnUrlWithdraw(LnUrlWithdrawRequestData data);
LnUrlAuth(LnUrlAuthRequestData data);
LnUrlError(LnUrlErrorData data);
};
enum BuyBitcoinProvider {
"Moonpay",
};
dictionary PrepareRedeemOnchainFundsRequest {
string to_address;
u32 sat_per_vbyte;
};
dictionary PrepareRedeemOnchainFundsResponse {
u64 tx_weight;
u64 tx_fee_sat;
};
dictionary RedeemOnchainFundsRequest {
string to_address;
u32 sat_per_vbyte;
};
dictionary RedeemOnchainFundsResponse {
sequence<u8> txid;
};
dictionary SendPaymentRequest {
string bolt11;
boolean use_trampoline;
u64? amount_msat = null;
string? label = null;
};
dictionary SendSpontaneousPaymentRequest {
string node_id;
u64 amount_msat;
sequence<TlvEntry>? extra_tlvs = null;
string? label = null;
};
dictionary SendPaymentResponse {
Payment payment;
};
dictionary PayOnchainRequest {
string recipient_address;
PrepareOnchainPaymentResponse prepare_res;
};
dictionary PayOnchainResponse {
ReverseSwapInfo reverse_swap_info;
};
dictionary PrepareRefundRequest {
string swap_address;
string to_address;
u32 sat_per_vbyte;
};
dictionary PrepareRefundResponse {
u32 refund_tx_weight;
u64 refund_tx_fee_sat;
};
dictionary RefundRequest {
string swap_address;
string to_address;
u32 sat_per_vbyte;
};
dictionary RefundResponse {
string refund_tx_id;
};
interface BlockingBreezServices {
[Throws=SdkError]
void disconnect();
[Throws=SdkError]
void configure_node(ConfigureNodeRequest req);
[Throws=SendPaymentError]
SendPaymentResponse send_payment(SendPaymentRequest req);
[Throws=SendPaymentError]
SendPaymentResponse send_spontaneous_payment(SendSpontaneousPaymentRequest req);
[Throws=ReceivePaymentError]
ReceivePaymentResponse receive_payment(ReceivePaymentRequest req);
[Throws=LnUrlPayError]
LnUrlPayResult pay_lnurl(LnUrlPayRequest req);
[Throws=LnUrlWithdrawError]
LnUrlWithdrawResult withdraw_lnurl(LnUrlWithdrawRequest request);
[Throws=LnUrlAuthError]
LnUrlCallbackStatus lnurl_auth(LnUrlAuthRequestData req_data);
[Throws=SdkError]
void report_issue(ReportIssueRequest req);
[Throws=SdkError]
NodeCredentials? node_credentials();
[Throws=SdkError]
NodeState node_info();
[Throws=SdkError]
SignMessageResponse sign_message(SignMessageRequest req);
[Throws=SdkError]
CheckMessageResponse check_message(CheckMessageRequest req);
[Throws=SdkError]
BackupStatus backup_status();
[Throws=SdkError]
void backup();
[Throws=SdkError]
sequence<Payment> list_payments(ListPaymentsRequest req);
[Throws=SdkError]
Payment? payment_by_hash(string hash);
[Throws=SdkError]
void set_payment_metadata(string hash, string metadata);
[Throws=RedeemOnchainError]
RedeemOnchainFundsResponse redeem_onchain_funds(RedeemOnchainFundsRequest req);
[Throws=SdkError]
sequence<Rate> fetch_fiat_rates();
[Throws=SdkError]
sequence<FiatCurrency> list_fiat_currencies();
[Throws=SdkError]
sequence<LspInformation> list_lsps();
[Throws=SdkError]
void connect_lsp(string lsp_id);
[Throws=SdkError]
LspInformation? fetch_lsp_info(string lsp_id);
[Throws=SdkError]
OpenChannelFeeResponse open_channel_fee(OpenChannelFeeRequest req);
[Throws=SdkError]
string? lsp_id();
[Throws=SdkError]
LspInformation lsp_info();
[Throws=SdkError]
void close_lsp_channels();
[Throws=SdkError]
void register_webhook(string webhook_url);
[Throws=SdkError]
void unregister_webhook(string webhook_url);
[Throws=ReceiveOnchainError]
SwapInfo receive_onchain(ReceiveOnchainRequest req);
[Throws=SdkError]
SwapInfo? in_progress_swap();
[Throws=SdkError]
void rescan_swaps();
[Throws=SdkError]
void redeem_swap(string swap_address);
[Throws=SdkError]
sequence<SwapInfo> list_refundables();
[Throws=SdkError]
PrepareRefundResponse prepare_refund(PrepareRefundRequest req);
[Throws=SdkError]
RefundResponse refund(RefundRequest req);
[Throws=SdkError]
sequence<SwapInfo> list_swaps(ListSwapsRequest req);
[Throws=SdkError]
ReverseSwapPairInfo fetch_reverse_swap_fees(ReverseSwapFeesRequest req);
[Throws=SdkError]
OnchainPaymentLimitsResponse onchain_payment_limits();
[Throws=SendOnchainError]
PrepareOnchainPaymentResponse prepare_onchain_payment(PrepareOnchainPaymentRequest req);
[Throws=SdkError]
sequence<ReverseSwapInfo> in_progress_onchain_payments();
[Throws=SdkError]
void claim_reverse_swap(string lockup_address);
[Throws=SendOnchainError]
PayOnchainResponse pay_onchain(PayOnchainRequest req);
[Throws=SdkError]
string execute_dev_command(string command);
[Throws=SdkError]
string generate_diagnostic_data();
[Throws=SdkError]
void sync();
[Throws=SdkError]
RecommendedFees recommended_fees();
[Throws=ReceiveOnchainError]
BuyBitcoinResponse buy_bitcoin(BuyBitcoinRequest req);
[Throws=RedeemOnchainError]
PrepareRedeemOnchainFundsResponse prepare_redeem_onchain_funds(PrepareRedeemOnchainFundsRequest req);
};
namespace breez_sdk {
[Throws=ConnectError]
BlockingBreezServices connect(ConnectRequest req, EventListener listener);
[Throws=SdkError]
void set_log_stream(LogStream log_stream);
[Throws=SdkError]
LNInvoice parse_invoice(string invoice);
[Throws=SdkError]
InputType parse_input(string s);
[Throws=SdkError]
sequence<u8> mnemonic_to_seed(string phrase);
Config default_config(EnvironmentType env_type, string api_key, NodeConfig node_config);
[Throws=SdkError]
StaticBackupResponse static_backup(StaticBackupRequest req);
[Throws=SdkError]
ServiceHealthCheckResponse service_health_check(string api_key);