2018-08-22 17:44:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Vulcanize
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package bite
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared"
|
|
|
|
)
|
|
|
|
|
2018-10-26 18:26:10 +00:00
|
|
|
var BiteConfig = shared.SingleTransformerConfig{
|
|
|
|
TransformerName: shared.BiteLabel,
|
2018-09-27 15:12:29 +00:00
|
|
|
ContractAddresses: []string{shared.CatContractAddress},
|
2018-09-04 21:01:23 +00:00
|
|
|
ContractAbi: shared.CatABI,
|
2018-10-26 18:26:10 +00:00
|
|
|
Topic: shared.BiteSignature,
|
2018-08-22 17:44:35 +00:00
|
|
|
StartingBlockNumber: 0,
|
2018-09-18 20:03:10 +00:00
|
|
|
EndingBlockNumber: 10000000,
|
2018-08-22 17:44:35 +00:00
|
|
|
}
|