EEL Network • API

EEL PoW • lightweight UI • local-first interactions

API

Light reference for the frontend. One test button only, so it does not constantly poke the server.

🔌 /api/v1/chain
💸 /api/v1/balance/{address}
📦 /api/v1/block/{hash|height}
⛏ /api/v1/mining/*

Endpoint map

low-load
MethodEndpointPurpose
GET/api/v1/chainTip, height, difficulty, version
GET/api/v1/balance/{address}Balance lookup
GET/api/v1/block/{hash|height}Block details
GET/api/v1/blocks?limit=5Recent blocks (optional)
GET/api/v1/mining/workMining job
POST/api/v1/mining/submitSubmit solution/share
No test run yet.

Notes

Nginx proxy
Nginx should proxy /api/v1/ to 127.0.0.1:8080 on the VPS. Keep the backend local to avoid loops and extra firewall issues.
The frontend does not auto-refresh or poll the API. Use manual buttons to keep request counts low.