ipld-eth-db-validator/pkg/validator/config.go

168 lines
4.5 KiB
Go
Raw Normal View History

// VulcanizeDB
// Copyright © 2022 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/>.
2022-01-17 12:30:53 +00:00
package validator
import (
"fmt"
2022-01-18 17:14:38 +00:00
"math/big"
2022-05-06 11:21:11 +00:00
"time"
2022-01-17 12:30:53 +00:00
2022-01-18 17:14:38 +00:00
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/statediff"
2022-05-06 11:21:11 +00:00
"github.com/ethereum/go-ethereum/statediff/indexer/database/sql/postgres"
"github.com/jmoiron/sqlx"
2022-01-17 12:30:53 +00:00
"github.com/spf13/viper"
2022-05-23 13:38:17 +00:00
"github.com/vulcanize/ipld-eth-server/v4/pkg/shared"
2022-05-06 11:21:11 +00:00
"github.com/vulcanize/ipld-eth-db-validator/pkg/prom"
2022-01-17 12:30:53 +00:00
)
var IntegrationTestChainConfig = &params.ChainConfig{
ChainID: big.NewInt(99),
HomesteadBlock: big.NewInt(0),
EIP150Block: big.NewInt(0),
EIP155Block: big.NewInt(0),
EIP158Block: big.NewInt(0),
ByzantiumBlock: big.NewInt(0),
ConstantinopleBlock: big.NewInt(0),
PetersburgBlock: big.NewInt(0),
IstanbulBlock: big.NewInt(0),
Clique: &params.CliqueConfig{
Period: 0,
Epoch: 30000,
},
}
var TestChainConfig = &params.ChainConfig{
2022-01-18 17:38:11 +00:00
ChainID: big.NewInt(1),
HomesteadBlock: big.NewInt(0),
EIP150Block: big.NewInt(0),
EIP155Block: big.NewInt(0),
EIP158Block: big.NewInt(0),
ByzantiumBlock: big.NewInt(0),
ConstantinopleBlock: big.NewInt(0),
PetersburgBlock: big.NewInt(0),
IstanbulBlock: big.NewInt(0),
MuirGlacierBlock: big.NewInt(0),
BerlinBlock: big.NewInt(0),
LondonBlock: big.NewInt(6),
2022-01-18 17:38:11 +00:00
ArrowGlacierBlock: big.NewInt(0),
Ethash: new(params.EthashConfig),
}
2022-01-18 17:14:38 +00:00
2022-01-17 12:30:53 +00:00
type Config struct {
2022-05-06 11:21:11 +00:00
dbConfig postgres.Config
DB *sqlx.DB
ChainCfg *params.ChainConfig
Client *rpc.Client
StateDiffMissingBlock bool
StateDiffTimeout uint
BlockNum, Trail uint64
SleepInterval uint
2022-01-17 12:30:53 +00:00
}
func NewConfig() (*Config, error) {
cfg := new(Config)
err := cfg.setupDB()
if err != nil {
return nil, err
}
err = cfg.setupEth()
if err != nil {
return nil, err
}
err = cfg.setupValidator()
if err != nil {
return nil, err
}
return cfg, nil
2022-01-17 12:30:53 +00:00
}
func (c *Config) setupDB() error {
// DB Config
2022-05-06 11:21:11 +00:00
c.dbConfig.DatabaseName = viper.GetString("database.name")
c.dbConfig.Hostname = viper.GetString("database.hostname")
c.dbConfig.Port = viper.GetInt("database.port")
c.dbConfig.Username = viper.GetString("database.user")
c.dbConfig.Password = viper.GetString("database.password")
2022-01-17 12:30:53 +00:00
c.dbConfig.MaxIdle = viper.GetInt("database.maxIdle")
2022-05-06 11:21:11 +00:00
c.dbConfig.MaxConns = viper.GetInt("database.maxOpen")
c.dbConfig.MaxConnLifetime = time.Duration(viper.GetInt("database.maxLifetime"))
2022-01-17 12:30:53 +00:00
// Create DB
2022-05-06 11:21:11 +00:00
db, err := shared.NewDB(c.dbConfig.DbConnectionString(), c.dbConfig)
2022-01-17 12:30:53 +00:00
if err != nil {
return fmt.Errorf("failed to create config: %w", err)
}
c.DB = db
// Enable DB stats
if viper.GetBool("prom.dbStats") {
prom.RegisterDBCollector(c.dbConfig.DatabaseName, c.DB)
}
2022-01-17 12:30:53 +00:00
return nil
}
func (c *Config) setupEth() error {
var err error
chainConfigPath := viper.GetString("ethereum.chainConfig")
if chainConfigPath != "" {
c.ChainCfg, err = statediff.LoadConfig(chainConfigPath)
} else {
// read chainID if chain config path not provided
chainID := viper.GetUint64("ethereum.chainID")
c.ChainCfg, err = statediff.ChainConfig(chainID)
}
if err != nil {
return err
}
// setup a statediffing client
ethHTTP := viper.GetString("ethereum.httpPath")
if ethHTTP != "" {
ethHTTPEndpoint := fmt.Sprintf("http://%s", ethHTTP)
c.Client, err = rpc.Dial(ethHTTPEndpoint)
}
return err
}
func (c *Config) setupValidator() error {
var err error
c.BlockNum = viper.GetUint64("validate.blockHeight")
if c.BlockNum < 1 {
return fmt.Errorf("block height cannot be less the 1")
}
c.Trail = viper.GetUint64("validate.trail")
c.SleepInterval = viper.GetUint("validate.sleepInterval")
c.StateDiffMissingBlock = viper.GetBool("validate.stateDiffMissingBlock")
if c.StateDiffMissingBlock {
c.StateDiffTimeout = viper.GetUint("validate.stateDiffTimeout")
}
return err
}