From 1821a4b6233f0be24b9e4421b776984b467da0c0 Mon Sep 17 00:00:00 2001 From: Daniel Karzel Date: Thu, 8 Jul 2021 10:35:18 +1000 Subject: [PATCH] Update default Monero node URLs and info xmr.to nodes are not served at the xmr.to domain but moved to melo.tools --- CHANGELOG.md | 5 +++++ docs/asb/README.md | 5 +---- swap/src/cli/command.rs | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00b7554c..2c16a52a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- An issue where the default Monero node connection string would not work, because the public nodes were moved to a different domain. + The default monerod nodes were updated to use the [melo tool nodes](https://melo.tools/nodes.html). + ## [0.8.0] - 2021-07-07 ### Added diff --git a/docs/asb/README.md b/docs/asb/README.md index f943931d..60fcdcf3 100644 --- a/docs/asb/README.md +++ b/docs/asb/README.md @@ -12,10 +12,7 @@ This quickstart guide assumes that you are running the software on testnet (i.e. 3. Run the ASB in terminal: `./asb --testnet start` 4. Follow the setup wizard in the terminal -Public Monero stagenet nodes for running the Monero Wallet RPC: - -- `monero-stagenet.exan.tech:38081` -- `stagenet.melo.tools:38081` +Public Monero nodes for running the Monero Wallet RPC can be found [here](https://melo.tools/nodes.html). Run `./asb --help` for more information. diff --git a/swap/src/cli/command.rs b/swap/src/cli/command.rs index 9f472030..6c3542f0 100644 --- a/swap/src/cli/command.rs +++ b/swap/src/cli/command.rs @@ -12,8 +12,8 @@ use url::Url; use uuid::Uuid; // See: https://moneroworld.com/ -pub const DEFAULT_MONERO_DAEMON_ADDRESS: &str = "node.xmr.to:18081"; -pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "monero-stagenet.exan.tech:38081"; +pub const DEFAULT_MONERO_DAEMON_ADDRESS: &str = "node.melo.tools:18081"; +pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "stagenet.melo.tools:38081"; // See: https://1209k.com/bitcoin-eye/ele.php?chain=btc const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://electrum.blockstream.info:50002";