GranteeGrants()
Less than 1 minute
Connect rpc
import { Tendermint37Client } from "@cosmjs/tendermint-rpc"
import { createProtobufRpcClient, QueryClient } from "@cosmjs/stargate"
import * as authz from "cosmjs-types/cosmos/authz/v1beta1/query"
const client = await Tendermint37Client.connect('{rpc_url}')
const queryClient = new QueryClient(client)
const rpcClient = createProtobufRpcClient(queryClient)
const queryauthz = new authz.QueryClientImpl(rpcClient)
Example
let GranteeGrants = await queryauthz.GranteeGrants({
"grantee": ""
})
console.log(GranteeGrants)