Since: cosmos-sdk 0.46
denom defines the coin denomination to query all account holders for.
A successful response.
pagination defines the pagination in the response.
const response = await fetch('https://lunc.nownodes.io/cosmos/bank/v1beta1/denom_owners/{denom}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "denom_owners": [ { "address": "text", "balance": { "denom": "text", "amount": "text" } } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }