Skip to content

Commit

Permalink
Merge pull request #916 from h4sh3d/chore/prepare-release-0.8.3
Browse files Browse the repository at this point in the history
Chore: prepare changelog for release 0.8.3
  • Loading branch information
h4sh3d authored Jan 2, 2023
2 parents 6e36def + df80622 commit 22ebf44
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/farcaster-project/farcaster-node/pull/903>
- Farcasterd: Add delay between xmr auto-funding reattempts by @Lederstrumpf in <https://github.com/farcaster-project/farcaster-node/pull/733>
- Swapd: Simplify key manager encoding by @TheCharlatan in <https://github.com/farcaster-project/farcaster-node/pull/906>
- Swapd: Simplify commitment creation by @TheCharlatan in <https://github.com/farcaster-project/farcaster-node/pull/908>
- Doc: Update diagrams by @TheCharlatan in <https://github.com/farcaster-project/farcaster-node/pull/911> and <https://github.com/farcaster-project/farcaster-node/pull/909>
- Swapd: Some simple refactors by @TheCharlatan in <https://github.com/farcaster-project/farcaster-node/pull/913>
- Config: Improved deal validation by @h4sh3d in <https://github.com/farcaster-project/farcaster-node/pull/910>
- TSM: Log with SwapLogging trait by @TheCharlatan in <https://github.com/farcaster-project/farcaster-node/pull/912>
- Chore: update core to version 0.6.4 by @h4sh3d in <https://github.com/farcaster-project/farcaster-node/pull/915>

## [0.8.2] - 2022-12-28

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions farcasterd.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand Down

0 comments on commit 22ebf44

Please sign in to comment.