mnr
Get a free token

Connect Ripley Terminal (RipleyOS) to mnr

Ripley Terminal (ripley.run/terminal) is an air-gapped / hardened Monero wallet and sovereign private OS shell. It operates as a local light wallet with client-side view key scanning: it never sends your private view key or wallet address to any daemon. Instead, it pulls block data in bulk (/get_blocks.bin) and scans transactions locally on your machine.

Because Ripley Terminal only needs a daemon RPC endpoint, your mnr token URL functions directly as that verified endpoint.


Quick configuration

In Ripley Terminal, navigate to Settings → Uplink_Protocols:

Uplink_Routing:         Clearnet
Manual_Uplink_Address:  https://rpc.mnr.network/v1/<token>

Important: Keep the https:// scheme and the /v1/<token> path exactly as shown. Do not append /json_rpc. Ripley posts each route as <base>/<route> (json_rpc, get_blocks.bin, get_height, etc.).


Step-by-step setup

  1. Obtain an mnr token: Generate an instant access token on the token page. The Free tier (500,000 requests/month) is more than enough for regular wallet balance scanning and daily transactions without any signup, email, or KYC.
  2. Open Uplink Protocols Settings: In Ripley Terminal, press Esc or open Settings and scroll down to Uplink_Protocols.
  3. Select Clearnet Routing: Under Uplink_Routing, choose Clearnet.
  4. Enter Manual Uplink Address: In the Manual_Uplink_Address field, paste your mnr token URL:
    https://rpc.mnr.network/v1/<token>
    
    Ensure there are no trailing spaces or /json_rpc appended to the path.
  5. Save & Connect: Save your settings. The terminal log will confirm the connection:
    🔗 Connecting to pinned node…
    ✅ Fastest node: custom (https://rpc.mnr.network)
    ⚡ Fast sync ON — bulk get_blocks.bin, trusting custom
    

From then on, blockchain synchronization, decoy selection, and transaction broadcasting are proxied and verified through mnr.


Tor & I2P routing limitation

Clearnet mode is required for mnr at this time.

Ripley's native Tor and custom-SOCKS routing modes dial host:port directly and strip the URL path component. Because Ripley currently lacks a dedicated daemon-login field (HTTP Basic/Digest auth), the bearer token cannot travel in the URL path over Ripley's internal Tor proxy.

Until upstream Ripley adds daemon-login (<token>:x) support:


Privacy & security guarantees


Technical specifications & facts


Response verification check

You can verify the connection status and multi-node consensus headers in any terminal:

curl -si -X POST https://rpc.mnr.network/v1/<token>/get_info -d '{}' | grep -i ^mnr-

Expected response headers:

mnr-verify: majority
mnr-agreeing: 5/5
mnr-cache: hit
mnr-tier: free

Troubleshooting