2018-10-15 20:04:17 +00:00
|
|
|
package vat_slip
|
|
|
|
|
2018-11-08 15:14:35 +00:00
|
|
|
import (
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
|
|
|
|
)
|
2018-10-15 20:04:17 +00:00
|
|
|
|
2018-11-06 18:15:06 +00:00
|
|
|
var VatSlipConfig = shared.TransformerConfig{
|
2018-11-08 15:14:35 +00:00
|
|
|
TransformerName: constants.VatSlipLabel,
|
|
|
|
ContractAddresses: []string{constants.VatContractAddress},
|
|
|
|
ContractAbi: constants.VatABI,
|
|
|
|
Topic: constants.VatSlipSignature,
|
2018-10-15 20:04:17 +00:00
|
|
|
StartingBlockNumber: 0,
|
|
|
|
EndingBlockNumber: 10000000,
|
|
|
|
}
|