Skip to content

Releases: getlipa/lipa-lightning-lib

v0.66.2-beta

15 Oct 06:51
a549061
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.66.1-beta...v0.66.2-beta

v0.66.1-beta

11 Oct 13:15
577b4ce
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.66.0-beta...v0.66.1-beta

v0.66.0-beta

10 Oct 14:32
9303809
Compare
Choose a tag to compare

What's Changed

UDL Changes:

index c047fd5..1154f91 100644
--- a/src/lipalightninglib.udl
+++ b/src/lipalightninglib.udl
@@ -91,6 +91,9 @@ interface LightningNode {
 
     [Throws=LnError]
     void hide_channel_closes_funds_available_action_required_item();
+    
+    [Throws=LnError]
+    void hide_unresolved_failed_swap_action_required_item(FailedSwapInfo failed_swap_info);
 
     [Throws=LnError]
     sequence<OfferInfo> query_uncompleted_offers();
@@ -114,28 +117,34 @@ interface LightningNode {
     u32 query_onchain_fee_rate();
 
     [Throws=SweepError]
-    SweepInfo prepare_sweep(string address, u32 onchain_fee_rate);
+    SweepInfo prepare_sweep_funds_from_channel_closes(string address, u32 onchain_fee_rate);
 
     [Throws=LnError]
-    string sweep(SweepInfo sweep_info);
+    string sweep_funds_from_channel_closes(SweepInfo sweep_info);
 
     [Throws=SwapError]
     SwapAddressInfo generate_swap_address(OpeningFeeParams? lsp_fee_params);
 
     [Throws=LnError]
     sequence<FailedSwapInfo> get_unresolved_failed_swaps();
+    
+    [Throws=LnError]
+    OnchainResolvingFees? get_failed_swap_resolving_fees(FailedSwapInfo failed_swap_info);
 
     [Throws=LnError]
     ResolveFailedSwapInfo prepare_resolve_failed_swap(FailedSwapInfo failed_swap_info, string to_address, u32 onchain_fee_rate);
 
+    [Throws=LnError]
+    string swap_failed_swap_funds_to_lightning(FailedSwapInfo failed_swap_info, u32 sat_per_vbyte, OpeningFeeParams? lsp_fee_param);
+
     [Throws=LnError]
     string resolve_failed_swap(ResolveFailedSwapInfo resolve_failed_swap_info);
 
     [Throws=LnError]
-    ChannelCloseResolvingFees? get_channel_close_resolving_fees();
+    OnchainResolvingFees? get_channel_close_resolving_fees();
 
     [Throws=SweepError]
-    string swap_onchain_to_lightning(u32 sats_per_vbyte, OpeningFeeParams? lsp_fee_params);
+    string swap_channel_close_funds_to_lightning(u32 sats_per_vbyte, OpeningFeeParams? lsp_fee_params);
 
     [Throws=LnError]
     void hide_topup(string id);
@@ -575,6 +584,7 @@ dictionary SwapInfo {
     string bitcoin_address;
     TzTime created_at;
     Amount paid_amount;
+    string txid;
 };
 
 dictionary ReverseSwapInfo {
@@ -649,7 +659,7 @@ dictionary ClearWalletInfo {
     PrepareOnchainPaymentResponse prepare_response;
 };
 
-dictionary ChannelCloseResolvingFees {
+dictionary OnchainResolvingFees {
     SwapToLightningFees? swap_fees;
     Amount sweep_onchain_fee_estimate;
     u32 sat_per_vbyte;

Full Changelog: v0.65.2-beta...v0.66.0-beta

v0.65.2-beta

07 Oct 08:54
9c26fbb
Compare
Choose a tag to compare

What's Changed

  • Check the length of the vector before splitting off by @andrei-21 in #1210
  • Fix warning about filename collision when building pocket mock by @andrei-21 in #1211

Full Changelog: v0.65.1-beta...v0.65.2-beta

v0.65.1-beta

04 Oct 09:45
fdefc67
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.65.0-beta...v0.65.1-beta

v0.65.0-beta

02 Oct 08:11
d7c96d5
Compare
Choose a tag to compare

What's Changed

UDL Changes

@@ -767,7 +767,6 @@ enum RuntimeErrorCode {
     "BackupServiceUnavailable",
     "BackupNotFound",
     "NodeUnavailable",
-    "FailedFundMigration",
 };

Full Changelog: v0.64.0-beta...v0.65.0-beta

v0.64.0-beta

25 Sep 13:24
6b37f3a
Compare
Choose a tag to compare

What's Changed

UDL Changes

index 6f56078..5c23c1b 100644
--- a/src/lipalightninglib.udl
+++ b/src/lipalightninglib.udl
@@ -579,6 +579,7 @@ dictionary SwapInfo {
 
 dictionary ReverseSwapInfo {
     Amount paid_onchain_amount;
+    Amount swap_fees_amount;
     string? claim_txid;
     ReverseSwapStatus status;
 };

Full Changelog: v0.63.0-beta...v0.64.0-beta

v0.63.0-beta

24 Sep 16:45
3c8bda5
Compare
Choose a tag to compare

What's Changed

UDL Changes

index 910cc76..6f56078 100644
--- a/src/lipalightninglib.udl
+++ b/src/lipalightninglib.udl
@@ -259,7 +259,8 @@ dictionary NodeInfo {
 
 dictionary ChannelsInfo {
     Amount local_balance;
-    Amount inbound_capacity;
+    Amount max_receivable_single_payment;
+    Amount total_inbound_capacity;
     Amount outbound_capacity;
 };
 

Full Changelog: v0.61.0-beta...v0.63.0-beta

v0.62.3-beta

05 Sep 15:31
8405855
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.62.2-beta...v0.62.3-beta

v0.62.2-beta

03 Sep 14:47
0cab752
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.62.1-beta...v0.62.2-beta