Revoke()
Less than 1 minute
Revoke()
import { defaultRegistryTypes } from "@cosmjs/stargate";
const foundMsgType = defaultRegistryTypes.find(
(element) => element[0] === "/cosmos.authz.v1beta1.MsgRevoke"
)
const finalMsg = {
typeUrl: foundMsgType[0],
value: foundMsgType[1].fromPartial({
"granter": "",
"grantee": "",
"msgTypeUrl": ""
}),
}
// const result = await signer.client.signAndBroadcast('address', [finalMsg], "auto", "")