mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Update default Monero node URLs and info
xmr.to nodes are not served at the xmr.to domain but moved to melo.tools
This commit is contained in:
parent
7ff57ff0d4
commit
1821a4b623
@ -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
|
||||
|
@ -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.
|
||||
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user