cic-chain-events/docs/filters.md

12 lines
232 B
Markdown

## Writing filters
Filters must conform to the interface:
```go
type Filter interface {
Execute(ctx context.Context, inputTransaction fetch.Transaction) (next bool, err error)
}
```
See examples in the `internal/filter` folder.