Versions in this module Expand all Collapse all v1 v1.0.0 Jan 4, 2023 Changes in this version + var DefaultIgnorePrice = big.NewInt(4 * params.Wei) + var DefaultMaxPrice = big.NewInt(100 * params.GWei) + type Config struct + Blocks int + Default *big.Int + IgnorePrice *big.Int + MaxBlockHistory int + MaxHeaderHistory int + MaxPrice *big.Int + OracleThreshold int + Percentile int + type Oracle struct + func NewOracle(backend OracleBackend, params Config) *Oracle + func (oracle *Oracle) FeeHistory(ctx context.Context, blocks int, unresolvedLastBlock rpc.BlockNumber, ...) (*big.Int, [][]*big.Int, []*big.Int, []float64, error) + func (oracle *Oracle) SuggestTipCap(ctx context.Context) (*big.Int, error) + type OracleBackend interface + BlockByNumber func(ctx context.Context, number rpc.BlockNumber) (*types.Block, error) + ChainConfig func() *params.ChainConfig + GetReceipts func(ctx context.Context, hash common.Hash) (types.Receipts, error) + HeaderByNumber func(ctx context.Context, number rpc.BlockNumber) (*types.Header, error) + PendingBlockAndReceipts func() (*types.Block, types.Receipts) + SubscribeChainHeadEvent func(ch chan<- core.ChainHeadEvent) event.Subscription