feat: index ownership changes, bump min go version

This commit is contained in:
2024-11-25 13:53:50 +03:00
parent afd8e3f30b
commit defde73bd4
8 changed files with 66 additions and 11 deletions

View File

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