Last updated 8 months ago
Since: cosmos-sdk 0.46
A successful response.
grants is a list of grants granted to the grantee.
pagination defines an pagination for the response.
const response = await fetch('https://band-rest.nownodes.io/cosmos/authz/v1beta1/grants/grantee/{grantee}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "grants": [ { "granter": "text", "grantee": "text", "authorization": { "type_url": "text", "value": "Ynl0ZXM=" }, "expiration": "2024-12-21T16:20:03.842Z" } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }