Issued

AllowancesByGranter returns all the grants given by an address

Since: cosmos-sdk 0.46

GET//osmo.nownodes.io/cosmos/feegrant/v1beta1/issued/{granter}
Path parameters
granter*string
Query parameters
Response

A successful response.

Body
allowancesarray of Grant is stored in the KVStore to record a grant with full context

allowances that have been issued by the granter.

paginationobject

pagination defines an pagination for the response.

Request
const response = await fetch('//osmo.nownodes.io/cosmos/feegrant/v1beta1/issued/{granter}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "allowances": [
    {
      "granter": "text",
      "grantee": "text",
      "allowance": {
        "type_url": "text",
        "value": "Ynl0ZXM="
      }
    }
  ],
  "pagination": {
    "next_key": "Ynl0ZXM=",
    "total": "text"
  }
}