We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bdc6d2 commit 8a128f6Copy full SHA for 8a128f6
src/mappings/authz/grants.ts
@@ -77,7 +77,7 @@ function _handleMsgGrant(msg: CosmosMessage<MsgGrant>): AuthzProps {
77
78
export async function handleEventGrant(events: CosmosEvent[]): Promise<void> {
79
// only handle the events that are finalized because the non-finalized events are being indexed in the /cosmos.authz.v1beta1.MsgGrant msg handler
80
- await store.bulkCreate("AuthzEventGrant", events.filter(isEventOfFinalizedBlockKind).map(_handleEventGrant));
+ await store.bulkCreate("Authz", events.filter(isEventOfFinalizedBlockKind).map(_handleEventGrant));
81
}
82
83
export async function handleMsgGrant(messages: CosmosMessage[]): Promise<void> {
0 commit comments