diff --git a/CHANGELOG.md b/CHANGELOG.md index 5421b912..8c80f2fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Change Monero nodes to [Rino tool nodes](https://community.rino.io/nodes.html) - Revert logs to use rfc3339 local time formatting. - Always write logs as JSON to files diff --git a/docs/asb/README.md b/docs/asb/README.md index 60fcdcf3..e39375a9 100644 --- a/docs/asb/README.md +++ b/docs/asb/README.md @@ -12,7 +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 nodes for running the Monero Wallet RPC can be found [here](https://melo.tools/nodes.html). +Public Monero nodes for running the Monero Wallet RPC can be found [here](https://community.rino.io/nodes.html). Run `./asb --help` for more information. diff --git a/monero-harness/src/image.rs b/monero-harness/src/image.rs index 6bfd7c3c..20370288 100644 --- a/monero-harness/src/image.rs +++ b/monero-harness/src/image.rs @@ -25,7 +25,7 @@ impl Image for Monerod { type EntryPoint = str; fn descriptor(&self) -> String { - "melotools/monero:v0.17.2.0".to_owned() + "rinocommunity/monero:v0.17.2.0".to_owned() } fn wait_until_ready(&self, container: &Container<'_, D, Self>) { @@ -70,7 +70,7 @@ impl Image for MoneroWalletRpc { type EntryPoint = str; fn descriptor(&self) -> String { - "melotools/monero:v0.17.2.0".to_owned() + "rinocommunity/monero:v0.17.2.0".to_owned() } fn wait_until_ready(&self, container: &Container<'_, D, Self>) { diff --git a/swap/src/cli/command.rs b/swap/src/cli/command.rs index 7b1e34fb..ae793e1d 100644 --- a/swap/src/cli/command.rs +++ b/swap/src/cli/command.rs @@ -15,8 +15,8 @@ use url::Url; use uuid::Uuid; // See: https://moneroworld.com/ -pub const DEFAULT_MONERO_DAEMON_ADDRESS: &str = "node.melo.tools:18081"; -pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "stagenet.melo.tools:38081"; +pub const DEFAULT_MONERO_DAEMON_ADDRESS: &str = "node.community.rino.io:18081"; +pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "stagenet.community.rino.io:38081"; // See: https://1209k.com/bitcoin-eye/ele.php?chain=btc const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://blockstream.info:700";