Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // DefaultGasFeeCap is the default value to use for Fee Cap in EIP-1559 transactions DefaultGasFeeCap = assets.GWei(100) DefaultGasLimit uint32 = 500000 DefaultGasPrice = assets.GWei(20) DefaultGasTip = big.NewInt(1) // go-ethereum requires the tip to be at least 1 wei DefaultMinimumContractPayment = assets.NewLinkFromJuels(10_000_000_000_000) // 0.00001 LINK )
Functions ¶
This section is empty.
Types ¶
type ChainScopedConfig ¶
type ChainScopedConfig interface { config.GeneralConfig ChainScopedOnlyConfig Validate() error // Both Configure() and PersistedConfig() should be accessed through ChainSet methods only. Configure(config evmtypes.ChainCfg) PersistedConfig() evmtypes.ChainCfg }
func NewChainScopedConfig ¶
func NewChainScopedConfig(chainID *big.Int, cfg evmtypes.ChainCfg, orm evmtypes.ChainConfigORM, lggr logger.Logger, gcfg config.GeneralConfig) ChainScopedConfig
type ChainScopedOnlyConfig ¶
type ChainScopedOnlyConfig interface { evmclient.NodeConfig BalanceMonitorEnabled() bool BlockEmissionIdleWarningThreshold() time.Duration BlockHistoryEstimatorBatchSize() (size uint32) BlockHistoryEstimatorBlockDelay() uint16 BlockHistoryEstimatorBlockHistorySize() uint16 BlockHistoryEstimatorEIP1559FeeCapBufferBlocks() uint16 BlockHistoryEstimatorTransactionPercentile() uint16 ChainID() *big.Int EvmEIP1559DynamicFees() bool EthTxReaperInterval() time.Duration EthTxReaperThreshold() time.Duration EthTxResendAfterThreshold() time.Duration EvmFinalityDepth() uint32 EvmGasBumpPercent() uint16 EvmGasBumpThreshold() uint64 EvmGasBumpTxDepth() uint16 EvmGasBumpWei() *big.Int EvmGasFeeCapDefault() *big.Int EvmGasLimitDefault() uint32 EvmGasLimitMultiplier() float32 EvmGasLimitTransfer() uint32 EvmGasLimitOCRJobType() *uint32 EvmGasLimitDRJobType() *uint32 EvmGasLimitVRFJobType() *uint32 EvmGasLimitFMJobType() *uint32 EvmGasLimitKeeperJobType() *uint32 EvmGasPriceDefault() *big.Int EvmGasTipCapDefault() *big.Int EvmGasTipCapMinimum() *big.Int EvmHeadTrackerHistoryDepth() uint32 EvmHeadTrackerMaxBufferSize() uint32 EvmHeadTrackerSamplingInterval() time.Duration EvmLogBackfillBatchSize() uint32 EvmLogPollInterval() time.Duration EvmMaxGasPriceWei() *big.Int EvmMaxInFlightTransactions() uint32 EvmMaxQueuedTransactions() uint64 EvmMinGasPriceWei() *big.Int EvmNonceAutoSync() bool EvmUseForwarders() bool EvmRPCDefaultBatchSize() uint32 FlagsContractAddress() string GasEstimatorMode() string ChainType() config.ChainType KeySpecificMaxGasPriceWei(addr gethcommon.Address) *big.Int LinkContractAddress() string OperatorFactoryAddress() string MinIncomingConfirmations() uint32 MinimumContractPayment() *assets.Link // OCR1 chain specific config OCRContractConfirmations() uint16 OCRContractTransmitterTransmitTimeout() time.Duration OCRObservationGracePeriod() time.Duration OCRDatabaseTimeout() time.Duration SetEvmGasPriceDefault(value *big.Int) error }
Source Files ¶
Click to show internal directories.
Click to hide internal directories.