From 9a28e706cd0c33095321d43731c229883e696d1f Mon Sep 17 00:00:00 2001 From: rabi-siddique Date: Mon, 6 May 2024 16:47:48 +0500 Subject: [PATCH] chore: remove redundant events --- project.ts | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) diff --git a/project.ts b/project.ts index fc6c9b43..0c1d8c68 100644 --- a/project.ts +++ b/project.ts @@ -123,14 +123,6 @@ const project: CosmosProject = { type: "state_change", }, }, - // Bank Events - { - handler: "handleBalanceEvent", - kind: CosmosHandlerKind.Event, - filter: { - type: "coinbase", - }, - }, { handler: "handleBalanceEvent", kind: CosmosHandlerKind.Event, @@ -145,49 +137,6 @@ const project: CosmosProject = { type: "coin_spent", }, }, - { - handler: "handleBalanceEvent", - kind: CosmosHandlerKind.Event, - filter: { - type: "burn", - }, - }, - // Distribution Events - { - handler: "handleBalanceEvent", - kind: CosmosHandlerKind.Event, - filter: { - type: "rewards", - }, - }, - { - handler: "handleBalanceEvent", - kind: CosmosHandlerKind.Event, - filter: { - type: "commission", - }, - }, - { - handler: "handleBalanceEvent", - kind: CosmosHandlerKind.Event, - filter: { - type: "proposer_reward", - }, - }, - { - handler: "handleBalanceEvent", - kind: CosmosHandlerKind.Event, - filter: { - type: "withdraw_rewards", - }, - }, - { - handler: "handleBalanceEvent", - kind: CosmosHandlerKind.Event, - filter: { - type: "withdraw_commission", - }, - }, ], }, },