feat [UNTESTED]: set removed flags on pools and tokens

This commit is contained in:
2025-02-10 13:37:20 +03:00
parent 16ddf2b2ce
commit 8d26e7bf3d
6 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package handler
import (
"context"
"github.com/grassrootseconomics/eth-tracker/pkg/event"
)
func (h *Handler) IndexRemove(ctx context.Context, event event.Event) error {
return h.store.RemoveContractAddress(ctx, event)
}