Suppose I have a computer that doesn't have a lot of storage space, or suppose I don't want to wait a while for the blockchain to be synced with my computer. What can I do to use Monero faster without downloading the entire blockchain to my computer?
1 Answers
The Monero community encourages you to run a full node so you can get the highest level of privacy and support the network the most. However, we understand that convenience is sometimes more important. For these instances, there are a few options:
Use a web wallet.
This allows you to use Monero from a web browser without downloading anything, and you can use Monero wherever you have access to the webpage. I suggest MyMonero since it is run by a Monero core team member. Web wallets are the least secure of all wallets.
Use a remote node (SPV wallet).
You have the option of downloading Monero and simply using someone else's node instead of your own. This could be a friend's or a complete stranger's. Using a remote node is less safe than using your own, but it should still be safe for most uses and it is very easy. By default, the --trusted-daemon option is off, which means that Monero will automatically obfuscate data sent to this node. Read more about risks using a remote node here.
There are many users who have chosen to open their nodes for other people to use. The most commonly suggested nodes to use are the MoneroWorld nodes.
Command Line Interface (CLI) Wallet
If you are using the Monero command line wallet, you can run one of the following commands depending on your operating system when starting the Monero wallet:
Windows
monero-wallet-cli.exe --daemon-host ADDRESS.OF.HOST:18081
Mac/Linux
./monero-wallet-cli --daemon-host ADDRESS.OF.HOST:18081
Graphical User Interface (GUI) Wallet
If you are using the GUI, use the simple mode OR simply specify a custom daemon address in the startup screen as shown below:
Alternatively, you can go to the Settings panel and change the Daemon address to the remote node of your choosing
What nodes can I use?
You can use any node you know about or any of the nodes found on this page. The one I suggest using is below:
node.moneroworld.com:18089
If in the settings page of the GUI wallet, omit the :18089 part. The GUI does this automatically under this page in the box to the right (see the examples above to see whether you should use it or not). For some of the MoneroWorld nodes, use port 18081 instead. The page should clearly state which port to use.
Use a phone wallet (SPV wallet).
You can use the Monero Monerujo wallet for Android (Google Play link). This wallet automatically connects to an open node, though you can specify another remote node if you wish.
You can use Cake Wallet or X Wallet for Apple iOS. These will automatically connect to open remote nodes.
Use a lightweight wallet.
You can use a lightweight wallet that shares your view key with a provider for greater convenience at the cost of some privacy.
MyMonero desktop apps, which automatically connects to the MyMonero backend. You can optionally point to a different service.
MyMonero Apple iOS app, which automatically connects to the MyMonero backend. You can optionally point to a different service.
Edge Wallet for Apple iOS and android, which connects to the MyMonero backend.

- 8,806
- 6
- 42
- 113
--daemon-address
instead of--daemon-host
, as the latter doesn't take custom port. – Alex Fliker Apr 20 '21 at 10:55