A lightweight HTTP service that provides real-time Nolus (NLS) token supply data by querying the Nolus LCD (Light Client Daemon) API.
The service calculates circulating supply by subtracting the combined balance of designated reserve wallets from the total on-chain supply. Data is fetched from the Nolus blockchain and cached for 1 hour.
All endpoints return plain text numeric values.
| Endpoint | Description |
|---|---|
/?type=circulating |
Circulating supply (total supply minus reserve wallet balances) |
/?type=total |
Total on-chain supply |
/?type=max |
Maximum supply cap (1,000,000,000 NLS) |
/?type=burned |
Burned supply |
/ |
Service info with current supply summary |
cargo runThe server starts on port 5784.
cargo build --release