Official Monero documentation
Start here if you want the canonical view of how Monero works and how to run a node safely.
monero.rs exposes a public, community-run Monero node so you can verify the chain, broadcast transactions, and explore the network without trusting a centralized exchange.
Remote node: monero.rs Β· Port: 18081
Monero (XMR) is a privacy-preserving cryptocurrency whose transactions are confidential by default. Running a node is how you verify the chain independently, broadcast transactions without a middle-man, and contribute to the networkβs decentralization.
A full node downloads and validates the entire blockchain, relaying blocks and transactions to other peers. In Monero, this means:
When your wallet connects to your own node, no third party learns how often or when you check your balance, which outputs you are interested in, or what IP you use.
A remote node is simply a node that runs on someone elseβs machine. It is convenient, but it means your wallet talks to a third party. Public nodes are ideal for:
For long-term privacy and resilience, treat public nodes as a convenience β and aim to run a full node at home or on your own server.
The monero.rs instance is a standard Monero mainnet daemon
(monerod) exposed over HTTPS, suitable as
a remote node for wallets and tools. Below are common ways you might
use it.
GUI wallet β remote node:
Address: monero.rs
Port: 18081
(Enable SSL / HTTPS if your wallet supports it.)
CLI wallet:
monero-wallet-cli --daemon-address monero.rs:18081 --daemon-ssl allowed
JSON-RPC via curl (example):
curl -X POST https://monero.rs:18081/json_rpc \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":"0","method":"get_info"}'
This endpoint is provided as-is, with no uptime guarantees. Do not treat it as your only gateway to the network, and never send wallet seeds, private keys, or view keys to any third-party service.
Use the links below to dig deeper: official documentation, curated public node lists, tutorials for running your own full node, and independent articles about Monero and privacy coins.
Start here if you want the canonical view of how Monero works and how to run a node safely.
These directories list community-run remote nodes. Always treat them as untrusted infrastructure and avoid relying on a single provider.
Independent reports and blog posts on how Monero is used in practice, and why privacy coins matter in 2024β2025.
Curious about how big the Monero blockchain is, or how blocks evolve over time? These resources track network growth.
If you are a Rust developer, you might actually be looking for the matching crate instead of a remote node.
The Monero Rust community maintains the monero crate and related tools under the monero-rs GitHub organization.
As the authors put it: "Rust is an awesome language, and we want to bring that into the brilliant world of the monero-project" β a set of crates which implement parts of the Monero protocol and let the community build powerful projects.
The monero crate is described as "a library which supports subsets of the Monero protocol and type primitives", designed for Rust programs built to work with the Monero ecosystem. Around it you can reach for monero-rpc for talking to daemons like https://monero.rs:18081, base58-monero for address encoding/decoding, monero-serai for low-level transaction primitives, or libmonero when you want a more batteries-included approach.