Since: cosmos-sdk 0.46
A successful response.
grants is a list of grants granted by the granter.
pagination defines an pagination for the response.
const response = await fetch('https://thor.nownodes.io/cosmos/authz/v1beta1/grants/granter/{granter}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "grants": [ { "granter": "text", "grantee": "text", "authorization": { "type_url": "text", "value": "Ynl0ZXM=" }, "expiration": "2024-11-10T03:32:10.829Z" } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }