Supply

TotalSupply queries the total supply of all coins.

When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set.

GEThttps://zetachain.nownodes.io/cosmos/bank/v1beta1/supply
Query parameters
Response

A successful response.

Body
supplysupply is the supply of the coins
paginationobject

pagination defines the pagination in the response.

Since: cosmos-sdk 0.43

Request
const response = await fetch('https://zetachain.nownodes.io/cosmos/bank/v1beta1/supply', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "supply": [
    {
      "denom": "text",
      "amount": "text"
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}