867f92c431
- Continuously parse storage diffs CSV data to read Pit contract state - Convert ilks in database to raw bytes32 value for use in generating storage keys dynamically - Persist storage diffs with block number and hash for validation
15 lines
374 B
Go
15 lines
374 B
Go
package storage
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/storage_diffs/shared"
|
|
)
|
|
|
|
type Transformer interface {
|
|
Execute(row shared.StorageDiffRow) error
|
|
ContractAddress() common.Address
|
|
}
|
|
|
|
type TransformerInitializer func(db *postgres.DB) Transformer
|