2019-01-24 20:41:30 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2018 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-09-06 21:42:24 +00:00
|
|
|
|
2018-09-04 16:35:38 +00:00
|
|
|
package vat_init
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared"
|
2018-11-08 15:14:35 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
|
2018-09-04 16:35:38 +00:00
|
|
|
)
|
|
|
|
|
2019-01-23 18:44:09 +00:00
|
|
|
func GetVatInitConfig() shared.TransformerConfig {
|
|
|
|
return shared.TransformerConfig{
|
|
|
|
TransformerName: constants.VatInitLabel,
|
|
|
|
ContractAddresses: []string{constants.VatContractAddress()},
|
|
|
|
ContractAbi: constants.VatABI(),
|
|
|
|
Topic: constants.GetVatInitSignature(),
|
|
|
|
StartingBlockNumber: constants.VatDeploymentBlock(),
|
|
|
|
EndingBlockNumber: -1,
|
|
|
|
}
|
2018-09-04 16:35:38 +00:00
|
|
|
}
|