Retrieves currency stats
OK
Returns an object with one member labeled as the symbol you requested, the object has three members: supply (Symbol), max_supply (Symbol) and issuer (Name)
const response = await fetch('https://eos.nownodes.io/v1/chain/get_currency_stats', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();