telosnetwork / api-telos-net

api.telos.net
MIT License
0 stars 1 forks source link

Token Supply REST API endpoint #131

Open pmjanus opened 3 months ago

pmjanus commented 3 months ago

Overview

Implement a couple ofpublicly accessible REST API endpoint that returns Total Supply and Circulating Supply data in JSON format and without requiring authentication or API keys. The expected endpoints and returns should look like this: /v1/supply/total/json /v1/supply/circulating/json

{
"result": "445655307.7672"
}

And will they return:

Links

https://github.com/telosnetwork/api-telos-net/blob/develop/src/v1-routes/tokens.js

Acceptance Criteria

Tasks