Chain
Block Height
…
Total Difficulty
…
Latest Block Hash
…
Circulating Supply
…
Emission Rate
1 GRIN / second
60 GRIN / block · 86,400 GRIN / day
Node
Node Version
…
Header Version (increments on hard fork)
…
Response Time — last get_tip round-trip
…
Connected Peers
—
Chain Data Size
This one's tough for me to crack ^^ — help welcome!
Connect Your Wallet to This Node
grin-wallet · Edit
grin-wallet.tomlcheck_node_api_http_addr = "https://…"
Set
check_node_api_http_addr to this node's URL, then restart your wallet.
No local node required — the wallet will sync directly via this HTTPS endpoint.
Grim GUI Wallet · External Connections
https://…
- Open Grim → go to External Connections
- Click ADD NODE
- Paste the URL shown above and click ADD
- The node should appear with status Available
External connections let Grim use a remote node — no local Grin node process needed.
REST Endpoints
REST API status — simple GET endpoints updated every 60 s
Checking…
Enable via script 04 → select network, then option 7
Available endpoints — click to open, or copy URL to fetch from anywhere
…
GET request · CORS enabled (
Access-Control-Allow-Origin: *)
· Cache-Control: public, max-age=60
Which API style should I use?
JSON-RPC /v2/foreign | REST /rest/*.json | |
|---|---|---|
| Request method | POST | GET |
| Auth required | No (foreign API) | No |
| Response format | {"result":{"Ok":{…}}} | {"height":…} |
| Live data | Always fresh | Up to 60 s old |
| Best for | Wallets, explorers, tx push, full chain queries | CoinGecko, widgets, spreadsheets, no-code tools |
| Browser fetch | Needs POST + JSON body | One-line fetch(url) |
Developer — JSON-RPC
Live API test — runs get_tip directly from this browser
Click "Run Test" to fetch live data from this node…
Executes in your browser — no terminal needed · same-origin fetch to
/v2/foreignCORS test — verify any website can query this API
…
Expected response header:
Access-Control-Allow-Origin: *
· Run from any terminal on any machine
Browser fetch test — get chain tip & circulating supply from any website's console
- Open any website — e.g.
https://www.google.com - Press
F12(or right-click anywhere → Inspect) - Click the Console tab at the top of DevTools
- Paste the command below and press
Enter - The JSON response from this node will appear directly below
…
Circulating supply is not a direct field — it is derived as
height × 60
· Copy this snippet into your own site to display live Grin data
Remote API checker — test another Grin node's public endpoint
Enter a remote Grin node origin above and click Check…
Sends
get_tip to {origin}/v2/foreign directly from your browser
· If CORS is missing on the remote node, the browser will block it and show an error