A Monero remote node is a full node run by someone else that your wallet connects to over the internet. Instead of downloading and verifying the entire Monero blockchain (~180GB), your wallet asks the remote node for the data it needs. This lets you start using Monero instantly.
How it works: Your wallet connects to a remote node at address:18089. The node sends you blockchain data. Your wallet scans it locally using your private keys to find your transactions and calculate your balance. Your private keys never leave your device.
The primary risk is IP address exposure. The node operator can log your IP and correlate it with your Monero activity timing. This doesn't reveal amounts or recipients, but links your real-world identity (via IP) to Monero usage.
Best practice: Connect to a .onion remote node via Tor. This hides your IP from the node operator AND prevents your ISP from seeing Monero connections. Feather Wallet does this automatically with one click.
| Connection Type | Node Sees Your IP | ISP Sees Monero | Speed |
|---|---|---|---|
| Clearnet (direct) | Yes | Yes | Fast |
| VPN + clearnet node | VPN IP (not yours) | VPN traffic | Fast |
| Tor + clearnet node | No (exit node IP) | Tor traffic | Medium |
| Tor + .onion node | No | No (just Tor) | Medium |
| Local node | N/A (localhost) | Peers see node IP, not wallet | Fastest |
monero.fail — The community-maintained node status page. Shows uptime, location, Tor/I2P availability, and response time for hundreds of public nodes. Filter by "Tor" for .onion nodes.
When choosing a node, look for:
Never enter your seed or private keys into a website that claims to be a "web node" or "online wallet." Legitimate remote nodes only serve blockchain data — they never ask for your keys. If a site asks for your seed, it's a phishing scam.
Feather: Settings → Network → Select "Tor (bundled)" + remote node auto-selects .onion nodes.
Cake: Settings → Nodes → Add custom node (paste .onion address from monero.fail).
GUI: Settings → Node → Remote node → Enter address:18089. For Tor: set SOCKS5 proxy 127.0.0.1:9050.
CLI: monero-wallet-cli --daemon-address address:18089 --proxy 127.0.0.1:9050
Run your own node if: You trade P2P regularly, hold significant amounts, or need maximum privacy. A local node eliminates third-party trust entirely. Your wallet connects to localhost — no network exposure. Requires ~180GB disk space, 4+ GB RAM, and 1-3 days for initial sync. See our full node guide.
Use a remote node if: You're starting out, use Monero casually, or can't spare 180GB. Connect via Tor for privacy. It's a reasonable trade-off for most users.