Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.7.0] - 2026-03-05

- ASB + CONTROLLER: Add `withdraw-btc` and `refresh-bitcoin-wallet` JSON-RPC commands. `withdraw-btc` allows withdrawing BTC from the internal Bitcoin wallet to a specified address. The amount parameter on the wire protocol is in satoshis (`Option<u64>`, `null` to sweep the entire balance). The `asb-controller` accepts human-friendly amounts (e.g. `0.1 BTC`, `10000 sat`). `refresh-bitcoin-wallet` syncs the internal Bitcoin wallet with the blockchain.

## [3.6.7] - 2026-01-22
Expand Down Expand Up @@ -822,7 +824,8 @@ It is possible to migrate critical data from the old db to the sqlite but there
- Fixed an issue where Alice would not verify if Bob's Bitcoin lock transaction is semantically correct, i.e. pays the agreed upon amount to an output owned by both of them.
Fixing this required a **breaking change** on the network layer and hence old versions are not compatible with this version.

[unreleased]: https://github.com/eigenwallet/core/compare/3.6.7...HEAD
[unreleased]: https://github.com/eigenwallet/core/compare/3.7.0...HEAD
[3.7.0]: https://github.com/eigenwallet/core/compare/3.6.7...3.7.0
[3.6.7]: https://github.com/eigenwallet/core/compare/3.6.6...3.6.7
[3.6.6]: https://github.com/eigenwallet/core/compare/3.6.4...3.6.6
[3.6.4]: https://github.com/eigenwallet/core/compare/3.6.3...3.6.4
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unstoppableswap-gui-rs"
version = "3.6.7"
version = "3.7.0"
authors = ["binarybaron", "einliterflasche", "unstoppableswap"]
edition = "2021"
description = "GUI for XMR<>BTC Atomic Swaps written in Rust"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "eigenwallet",
"version": "3.6.7",
"version": "3.7.0",
"identifier": "net.unstoppableswap.gui",
"build": {
"devUrl": "http://localhost:1420",
Expand Down
2 changes: 1 addition & 1 deletion swap-asb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swap-asb"
version = "3.6.7"
version = "3.7.0"
authors = ["The eigenwallet guys <hello@eigenwallet.org>", "The COMIT guys <hello@comit.network>"]
edition = "2021"
description = "ASB (Automated Swap Backend) binary for XMR/BTC atomic swaps."
Expand Down
2 changes: 1 addition & 1 deletion swap-controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swap-controller"
version = "3.6.7"
version = "3.7.0"
edition = "2021"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion swap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swap"
version = "3.6.7"
version = "3.7.0"
authors = ["The COMIT guys <hello@comit.network>"]
edition = "2021"
description = "XMR/BTC trustless atomic swaps."
Expand Down
Loading