From b650287a091a127c076de62b9694780e2caba872 Mon Sep 17 00:00:00 2001 From: h4sh3d Date: Mon, 2 Jan 2023 18:02:07 +0100 Subject: [PATCH 1/3] chore: prepare changelog for release 0.8.3 --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 240109b44..9f2229080 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Swapd: Don't add color coding to progress message by @TheCharlatan in +- Farcasterd: Add delay between xmr auto-funding reattempts by @Lederstrumpf in +- Swapd: Simplify key manager encoding by @TheCharlatan in +- Swapd: Simplify commitment creation by @TheCharlatan in +- Doc: Update diagrams by @TheCharlatan in and +- Swapd: Some simple refactors by @TheCharlatan in +- Config: Improved deal validation by @h4sh3d in +- TSM: Log with SwapLogging trait by @TheCharlatan in +- Chore: update core to version 0.6.4 by @h4sh3d in + ## [0.8.2] - 2022-12-28 ### Changed From 94a5d71db1850f1ed4027bac2d5b13e2df924da2 Mon Sep 17 00:00:00 2001 From: h4sh3d Date: Mon, 2 Jan 2023 18:03:12 +0100 Subject: [PATCH 2/3] chore: update monero to 0.17.3 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9f8d7a4e7..2c653d8c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1856,9 +1856,9 @@ dependencies = [ [[package]] name = "monero" -version = "0.17.2" +version = "0.17.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afa5d322a573d345588c3255aaf3316b6a13f3b94f8e776c5ffcde237ec481d" +checksum = "403883d12972e916dd9754cdb90c25441a9abcf435f8e09c3146de100150eeb0" dependencies = [ "base58-monero", "curve25519-dalek", From df806222f983824f70549f353ffc042ba0610eb7 Mon Sep 17 00:00:00 2001 From: h4sh3d Date: Mon, 2 Jan 2023 18:05:30 +0100 Subject: [PATCH 3/3] style: prefer lower case denomination in config example --- farcasterd.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/farcasterd.toml b/farcasterd.toml index 027cf9b00..d32afdc5a 100644 --- a/farcasterd.toml +++ b/farcasterd.toml @@ -41,12 +41,12 @@ monero_rpc_wallet = "http://localhost:38084" [swap.bitcoin.mainnet] safety = 7 finality = 6 -min_amount = "0.00001 BTC" -max_amount = "0.01 BTC" +min_amount = "0.00001 btc" +max_amount = "0.01 btc" [swap.monero.mainnet] finality = 20 -min_amount = "0.001 XMR" -max_amount = "2 XMR" +min_amount = "0.001 xmr" +max_amount = "2 xmr" # Swap parameter for the Bitcoin blockchain [swap.bitcoin.testnet] @@ -61,18 +61,18 @@ safety = 3 # smaller than safety. finality = 1 # The minimum acceptable amount of bitcoin to trade -min_amount = "0.00001 BTC" +min_amount = "0.00001 btc" # The maximum acceptable amount of bitcoin to trade -max_amount = "1 BTC" +max_amount = "1 btc" # Swap parameter for the Monero blockchain [swap.monero.testnet] # Number of confirmations required to consider a transaction final finality = 1 # The minimum acceptable amount of monero to trade -min_amount = "0.001 XMR" +min_amount = "0.001 xmr" # The maximum acceptable amount of monero to trade -max_amount = "20 XMR" +max_amount = "20 xmr" # Defines grpc options [grpc]