github.com/0xPolygon/supernets2-node@v0.0.0-20230711153321-2fe574524eaa/etherman/config.go (about) 1 package etherman 2 3 import ( 4 "github.com/0xPolygon/supernets2-node/etherman/etherscan" 5 ) 6 7 // Config represents the configuration of the etherman 8 type Config struct { 9 URL string `mapstructure:"URL"` 10 11 PrivateKeyPath string `mapstructure:"PrivateKeyPath"` 12 PrivateKeyPassword string `mapstructure:"PrivateKeyPassword"` 13 14 MultiGasProvider bool `mapstructure:"MultiGasProvider"` 15 Etherscan etherscan.Config 16 }