2015-12-16 04:26:23 +01:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2016-11-09 02:01:56 +01:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-12-16 04:26:23 +01:00
|
|
|
//
|
2016-11-09 02:01:56 +01:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
2015-12-16 04:26:23 +01:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2016-11-09 02:01:56 +01:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-12-16 04:26:23 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2016-11-09 02:01:56 +01:00
|
|
|
// GNU Lesser General Public License for more details.
|
2015-12-16 04:26:23 +01:00
|
|
|
//
|
2016-11-09 02:01:56 +01:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-12-16 04:26:23 +01:00
|
|
|
|
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
2017-03-22 18:20:33 +01:00
|
|
|
"context"
|
2019-05-02 14:50:23 +02:00
|
|
|
"errors"
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
"fmt"
|
2015-12-16 04:26:23 +01:00
|
|
|
"math/big"
|
2021-10-12 04:46:04 -04:00
|
|
|
"time"
|
2015-12-16 04:26:23 +01:00
|
|
|
|
2021-09-10 10:55:48 +03:00
|
|
|
"github.com/ethereum/go-ethereum"
|
2015-12-16 04:26:23 +01:00
|
|
|
"github.com/ethereum/go-ethereum/accounts"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
2020-08-03 19:40:46 +02:00
|
|
|
"github.com/ethereum/go-ethereum/consensus"
|
2015-12-16 04:26:23 +01:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2017-08-29 14:13:11 +03:00
|
|
|
"github.com/ethereum/go-ethereum/core/bloombits"
|
2019-05-13 13:41:10 +02:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2015-12-16 04:26:23 +01:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2022-10-24 16:13:55 +03:00
|
|
|
"github.com/ethereum/go-ethereum/core/txpool"
|
2015-12-16 04:26:23 +01:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/gasprice"
|
2022-09-08 02:25:58 +08:00
|
|
|
"github.com/ethereum/go-ethereum/eth/tracers"
|
2015-12-16 04:26:23 +01:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2020-08-03 19:40:46 +02:00
|
|
|
"github.com/ethereum/go-ethereum/miner"
|
2016-11-02 13:44:13 +01:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2017-01-05 14:03:50 +01:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2015-12-16 04:26:23 +01:00
|
|
|
)
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
// EthAPIBackend implements ethapi.Backend for full nodes
|
|
|
|
type EthAPIBackend struct {
|
2021-02-23 13:09:19 +01:00
|
|
|
extRPCEnabled bool
|
|
|
|
allowUnprotectedTxs bool
|
|
|
|
eth *Ethereum
|
|
|
|
gpo *gasprice.Oracle
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2018-06-14 03:14:52 -07:00
|
|
|
// ChainConfig returns the active chain configuration.
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) ChainConfig() *params.ChainConfig {
|
2019-03-27 13:23:08 +02:00
|
|
|
return b.eth.blockchain.Config()
|
2016-11-02 13:44:13 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) CurrentBlock() *types.Block {
|
2016-11-02 13:44:13 +01:00
|
|
|
return b.eth.blockchain.CurrentBlock()
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) SetHead(number uint64) {
|
2020-12-14 11:27:15 +02:00
|
|
|
b.eth.handler.downloader.Cancel()
|
2015-12-16 04:26:23 +01:00
|
|
|
b.eth.blockchain.SetHead(number)
|
|
|
|
}
|
|
|
|
|
2019-07-23 21:52:24 +08:00
|
|
|
func (b *EthAPIBackend) HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error) {
|
2015-12-16 04:26:23 +01:00
|
|
|
// Pending block is only known by the miner
|
2019-07-23 21:52:24 +08:00
|
|
|
if number == rpc.PendingBlockNumber {
|
2016-11-30 10:48:48 +01:00
|
|
|
block := b.eth.miner.PendingBlock()
|
2016-10-14 05:51:29 +02:00
|
|
|
return block.Header(), nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
// Otherwise resolve and return the block
|
2019-07-23 21:52:24 +08:00
|
|
|
if number == rpc.LatestBlockNumber {
|
2016-10-14 05:51:29 +02:00
|
|
|
return b.eth.blockchain.CurrentBlock().Header(), nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
2022-05-18 16:30:42 +02:00
|
|
|
if number == rpc.FinalizedBlockNumber {
|
2022-07-25 17:42:05 +02:00
|
|
|
block := b.eth.blockchain.CurrentFinalizedBlock()
|
|
|
|
if block != nil {
|
|
|
|
return block.Header(), nil
|
|
|
|
}
|
|
|
|
return nil, errors.New("finalized block not found")
|
|
|
|
}
|
|
|
|
if number == rpc.SafeBlockNumber {
|
|
|
|
block := b.eth.blockchain.CurrentSafeBlock()
|
|
|
|
if block != nil {
|
|
|
|
return block.Header(), nil
|
|
|
|
}
|
|
|
|
return nil, errors.New("safe block not found")
|
2022-05-18 16:30:42 +02:00
|
|
|
}
|
2019-07-23 21:52:24 +08:00
|
|
|
return b.eth.blockchain.GetHeaderByNumber(uint64(number)), nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2019-09-26 01:47:31 -07:00
|
|
|
func (b *EthAPIBackend) HeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Header, error) {
|
|
|
|
if blockNr, ok := blockNrOrHash.Number(); ok {
|
|
|
|
return b.HeaderByNumber(ctx, blockNr)
|
|
|
|
}
|
|
|
|
if hash, ok := blockNrOrHash.Hash(); ok {
|
|
|
|
header := b.eth.blockchain.GetHeaderByHash(hash)
|
|
|
|
if header == nil {
|
|
|
|
return nil, errors.New("header for hash not found")
|
|
|
|
}
|
|
|
|
if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash {
|
|
|
|
return nil, errors.New("hash is not currently canonical")
|
|
|
|
}
|
|
|
|
return header, nil
|
|
|
|
}
|
|
|
|
return nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
|
|
}
|
|
|
|
|
2018-07-12 17:36:07 +03:00
|
|
|
func (b *EthAPIBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) {
|
|
|
|
return b.eth.blockchain.GetHeaderByHash(hash), nil
|
|
|
|
}
|
|
|
|
|
2019-07-23 21:52:24 +08:00
|
|
|
func (b *EthAPIBackend) BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error) {
|
2015-12-16 04:26:23 +01:00
|
|
|
// Pending block is only known by the miner
|
2019-07-23 21:52:24 +08:00
|
|
|
if number == rpc.PendingBlockNumber {
|
2016-11-30 10:48:48 +01:00
|
|
|
block := b.eth.miner.PendingBlock()
|
2015-12-16 04:26:23 +01:00
|
|
|
return block, nil
|
|
|
|
}
|
|
|
|
// Otherwise resolve and return the block
|
2019-07-23 21:52:24 +08:00
|
|
|
if number == rpc.LatestBlockNumber {
|
2015-12-16 04:26:23 +01:00
|
|
|
return b.eth.blockchain.CurrentBlock(), nil
|
|
|
|
}
|
2022-05-18 16:30:42 +02:00
|
|
|
if number == rpc.FinalizedBlockNumber {
|
|
|
|
return b.eth.blockchain.CurrentFinalizedBlock(), nil
|
|
|
|
}
|
2022-07-25 17:42:05 +02:00
|
|
|
if number == rpc.SafeBlockNumber {
|
|
|
|
return b.eth.blockchain.CurrentSafeBlock(), nil
|
|
|
|
}
|
2019-07-23 21:52:24 +08:00
|
|
|
return b.eth.blockchain.GetBlockByNumber(uint64(number)), nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2019-07-25 14:29:53 +08:00
|
|
|
func (b *EthAPIBackend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) {
|
|
|
|
return b.eth.blockchain.GetBlockByHash(hash), nil
|
|
|
|
}
|
|
|
|
|
2023-02-13 10:59:27 +01:00
|
|
|
// GetBody returns body of a block. It does not resolve special block numbers.
|
|
|
|
func (b *EthAPIBackend) GetBody(ctx context.Context, hash common.Hash, number rpc.BlockNumber) (*types.Body, error) {
|
|
|
|
if number < 0 || hash == (common.Hash{}) {
|
|
|
|
return nil, errors.New("invalid arguments; expect hash and no special block numbers")
|
|
|
|
}
|
|
|
|
if body := b.eth.blockchain.GetBody(hash); body != nil {
|
|
|
|
return body, nil
|
|
|
|
}
|
|
|
|
return nil, errors.New("block body not found")
|
|
|
|
}
|
|
|
|
|
2019-09-26 01:47:31 -07:00
|
|
|
func (b *EthAPIBackend) BlockByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Block, error) {
|
|
|
|
if blockNr, ok := blockNrOrHash.Number(); ok {
|
|
|
|
return b.BlockByNumber(ctx, blockNr)
|
|
|
|
}
|
|
|
|
if hash, ok := blockNrOrHash.Hash(); ok {
|
|
|
|
header := b.eth.blockchain.GetHeaderByHash(hash)
|
|
|
|
if header == nil {
|
|
|
|
return nil, errors.New("header for hash not found")
|
|
|
|
}
|
|
|
|
if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash {
|
|
|
|
return nil, errors.New("hash is not currently canonical")
|
|
|
|
}
|
|
|
|
block := b.eth.blockchain.GetBlock(hash, header.Number.Uint64())
|
|
|
|
if block == nil {
|
|
|
|
return nil, errors.New("header found, but block body is missing")
|
|
|
|
}
|
|
|
|
return block, nil
|
|
|
|
}
|
|
|
|
return nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
|
|
}
|
|
|
|
|
2021-06-28 16:16:32 +02:00
|
|
|
func (b *EthAPIBackend) PendingBlockAndReceipts() (*types.Block, types.Receipts) {
|
|
|
|
return b.eth.miner.PendingBlockAndReceipts()
|
|
|
|
}
|
|
|
|
|
2019-07-23 21:52:24 +08:00
|
|
|
func (b *EthAPIBackend) StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error) {
|
2015-12-16 04:26:23 +01:00
|
|
|
// Pending state is only known by the miner
|
2019-07-23 21:52:24 +08:00
|
|
|
if number == rpc.PendingBlockNumber {
|
2015-12-16 04:26:23 +01:00
|
|
|
block, state := b.eth.miner.Pending()
|
2017-06-27 15:57:06 +02:00
|
|
|
return state, block.Header(), nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
// Otherwise resolve the block number and return its state
|
2019-07-23 21:52:24 +08:00
|
|
|
header, err := b.HeaderByNumber(ctx, number)
|
2019-05-02 14:50:23 +02:00
|
|
|
if err != nil {
|
2016-10-14 05:51:29 +02:00
|
|
|
return nil, nil, err
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
2019-05-02 14:50:23 +02:00
|
|
|
if header == nil {
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
return nil, nil, fmt.Errorf("header %w", ethereum.NotFound)
|
2019-05-02 14:50:23 +02:00
|
|
|
}
|
2016-09-27 13:13:13 +03:00
|
|
|
stateDb, err := b.eth.BlockChain().StateAt(header.Root)
|
2017-06-27 15:57:06 +02:00
|
|
|
return stateDb, header, err
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2019-09-26 01:47:31 -07:00
|
|
|
func (b *EthAPIBackend) StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.StateDB, *types.Header, error) {
|
|
|
|
if blockNr, ok := blockNrOrHash.Number(); ok {
|
|
|
|
return b.StateAndHeaderByNumber(ctx, blockNr)
|
|
|
|
}
|
|
|
|
if hash, ok := blockNrOrHash.Hash(); ok {
|
|
|
|
header, err := b.HeaderByHash(ctx, hash)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if header == nil {
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
return nil, nil, fmt.Errorf("header for hash %w", ethereum.NotFound)
|
2019-09-26 01:47:31 -07:00
|
|
|
}
|
|
|
|
if blockNrOrHash.RequireCanonical && b.eth.blockchain.GetCanonicalHash(header.Number.Uint64()) != hash {
|
|
|
|
return nil, nil, errors.New("hash is not currently canonical")
|
|
|
|
}
|
|
|
|
stateDb, err := b.eth.BlockChain().StateAt(header.Root)
|
|
|
|
return stateDb, header, err
|
|
|
|
}
|
|
|
|
return nil, nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error) {
|
2018-09-29 13:53:31 -07:00
|
|
|
return b.eth.blockchain.GetReceiptsByHash(hash), nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2022-08-19 11:14:59 +02:00
|
|
|
func (b *EthAPIBackend) GetLogs(ctx context.Context, hash common.Hash, number uint64) ([][]*types.Log, error) {
|
|
|
|
return rawdb.ReadLogs(b.eth.chainDb, hash, number, b.ChainConfig()), nil
|
2018-02-22 12:48:14 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 17:02:54 +08:00
|
|
|
func (b *EthAPIBackend) GetTd(ctx context.Context, hash common.Hash) *big.Int {
|
2021-10-11 23:16:46 +02:00
|
|
|
if header := b.eth.blockchain.GetHeaderByHash(hash); header != nil {
|
|
|
|
return b.eth.blockchain.GetTd(hash, header.Number.Uint64())
|
|
|
|
}
|
|
|
|
return nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2021-04-07 16:54:31 +02:00
|
|
|
func (b *EthAPIBackend) GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config) (*vm.EVM, func() error, error) {
|
|
|
|
if vmConfig == nil {
|
|
|
|
vmConfig = b.eth.blockchain.GetVMConfig()
|
|
|
|
}
|
2020-11-13 13:42:19 +01:00
|
|
|
txContext := core.NewEVMTxContext(msg)
|
|
|
|
context := core.NewEVMBlockContext(header, b.eth.BlockChain(), nil)
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
context.L1CostFunc = types.NewL1CostFunc(b.eth.blockchain.Config(), state)
|
2022-09-27 19:16:54 +08:00
|
|
|
return vm.NewEVM(context, txContext, state, b.eth.blockchain.Config(), *vmConfig), state.Error, nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription {
|
2017-08-18 18:58:36 +08:00
|
|
|
return b.eth.BlockChain().SubscribeRemovedLogsEvent(ch)
|
|
|
|
}
|
|
|
|
|
2019-12-10 12:39:14 +01:00
|
|
|
func (b *EthAPIBackend) SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
|
|
|
return b.eth.miner.SubscribePendingLogs(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription {
|
2017-08-18 18:58:36 +08:00
|
|
|
return b.eth.BlockChain().SubscribeChainEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription {
|
2017-08-18 18:58:36 +08:00
|
|
|
return b.eth.BlockChain().SubscribeChainHeadEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription {
|
2017-08-18 18:58:36 +08:00
|
|
|
return b.eth.BlockChain().SubscribeChainSideEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
2017-08-18 18:58:36 +08:00
|
|
|
return b.eth.BlockChain().SubscribeLogsEvent(ch)
|
|
|
|
}
|
|
|
|
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
func (b *EthAPIBackend) SendTx(ctx context.Context, tx *types.Transaction) error {
|
|
|
|
if b.eth.seqRPCService != nil {
|
|
|
|
data, err := tx.MarshalBinary()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := b.eth.seqRPCService.CallContext(ctx, nil, "eth_sendRawTransaction", hexutil.Encode(data)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return b.eth.txPool.AddLocal(tx)
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) GetPoolTransactions() (types.Transactions, error) {
|
2021-10-13 23:00:45 +02:00
|
|
|
pending := b.eth.txPool.Pending(false)
|
2016-07-01 18:59:55 +03:00
|
|
|
var txs types.Transactions
|
2016-12-10 23:54:58 +01:00
|
|
|
for _, batch := range pending {
|
2016-07-01 18:59:55 +03:00
|
|
|
txs = append(txs, batch...)
|
|
|
|
}
|
2016-12-10 23:54:58 +01:00
|
|
|
return txs, nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) GetPoolTransaction(hash common.Hash) *types.Transaction {
|
2016-07-01 18:59:55 +03:00
|
|
|
return b.eth.txPool.Get(hash)
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2019-05-13 13:41:10 +02:00
|
|
|
func (b *EthAPIBackend) GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error) {
|
|
|
|
tx, blockHash, blockNumber, index := rawdb.ReadTransaction(b.eth.ChainDb(), txHash)
|
|
|
|
return tx, blockHash, blockNumber, index, nil
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) {
|
2019-07-09 10:34:35 +03:00
|
|
|
return b.eth.txPool.Nonce(addr), nil
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) Stats() (pending int, queued int) {
|
2015-12-16 04:26:23 +01:00
|
|
|
return b.eth.txPool.Stats()
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions) {
|
2015-12-16 04:26:23 +01:00
|
|
|
return b.eth.TxPool().Content()
|
|
|
|
}
|
|
|
|
|
2021-07-13 18:40:58 +08:00
|
|
|
func (b *EthAPIBackend) TxPoolContentFrom(addr common.Address) (types.Transactions, types.Transactions) {
|
|
|
|
return b.eth.TxPool().ContentFrom(addr)
|
|
|
|
}
|
|
|
|
|
2022-10-24 16:13:55 +03:00
|
|
|
func (b *EthAPIBackend) TxPool() *txpool.TxPool {
|
2020-08-03 19:40:46 +02:00
|
|
|
return b.eth.TxPool()
|
|
|
|
}
|
|
|
|
|
2018-05-18 11:45:52 +03:00
|
|
|
func (b *EthAPIBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription {
|
|
|
|
return b.eth.TxPool().SubscribeNewTxsEvent(ch)
|
2017-08-18 18:58:36 +08:00
|
|
|
}
|
|
|
|
|
2021-09-10 10:55:48 +03:00
|
|
|
func (b *EthAPIBackend) SyncProgress() ethereum.SyncProgress {
|
|
|
|
return b.eth.Downloader().Progress()
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
core, eth, internal, les: RPC methods and fields for EIP 1559 (#22964)
* internal/ethapi: add baseFee to RPCMarshalHeader
* internal/ethapi: add FeeCap, Tip and correct GasPrice to EIP-1559 RPCTransaction results
* core,eth,les,internal: add support for tip estimation in gas price oracle
* internal/ethapi,eth/gasprice: don't suggest tip larger than fee cap
* core/types,internal: use correct eip1559 terminology for json marshalling
* eth, internal/ethapi: fix rebase problems
* internal/ethapi: fix rpc name of basefee
* internal/ethapi: address review concerns
* core, eth, internal, les: simplify gasprice oracle (#25)
* core, eth, internal, les: simplify gasprice oracle
* eth/gasprice: fix typo
* internal/ethapi: minor tweak in tx args
* internal/ethapi: calculate basefee for pending block
* internal/ethapi: fix panic
* internal/ethapi, eth/tracers: simplify txargs ToMessage
* internal/ethapi: remove unused param
* core, eth, internal: fix regressions wrt effective gas price in the evm
* eth/gasprice: drop weird debug println
* internal/jsre/deps: hack in 1559 gas conversions into embedded web3
* internal/jsre/deps: hack basFee to decimal conversion
* internal/ethapi: init feecap and tipcap for legacy txs too
* eth, graphql, internal, les: fix gas price suggestion on all combos
* internal/jsre/deps: handle decimal tipcap and feecap
* eth, internal: minor review fixes
* graphql, internal: export max fee cap RPC endpoint
* internal/ethapi: fix crash in transaction_args
* internal/ethapi: minor refactor to make the code safer
Co-authored-by: Ryan Schneider <ryanleeschneider@gmail.com>
Co-authored-by: lightclient@protonmail.com <lightclient@protonmail.com>
Co-authored-by: gary rong <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-06-02 15:13:10 +02:00
|
|
|
func (b *EthAPIBackend) SuggestGasTipCap(ctx context.Context) (*big.Int, error) {
|
|
|
|
return b.gpo.SuggestTipCap(ctx)
|
2015-12-16 04:26:23 +01:00
|
|
|
}
|
|
|
|
|
2021-07-27 05:27:28 +02:00
|
|
|
func (b *EthAPIBackend) FeeHistory(ctx context.Context, blockCount int, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (firstBlock *big.Int, reward [][]*big.Int, baseFee []*big.Int, gasUsedRatio []float64, err error) {
|
2021-06-28 16:16:32 +02:00
|
|
|
return b.gpo.FeeHistory(ctx, blockCount, lastBlock, rewardPercentiles)
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) ChainDb() ethdb.Database {
|
2015-12-16 04:26:23 +01:00
|
|
|
return b.eth.ChainDb()
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) EventMux() *event.TypeMux {
|
2015-12-16 04:26:23 +01:00
|
|
|
return b.eth.EventMux()
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) AccountManager() *accounts.Manager {
|
2015-12-16 04:26:23 +01:00
|
|
|
return b.eth.AccountManager()
|
|
|
|
}
|
2017-08-18 21:52:20 +02:00
|
|
|
|
2019-04-04 19:03:10 +08:00
|
|
|
func (b *EthAPIBackend) ExtRPCEnabled() bool {
|
|
|
|
return b.extRPCEnabled
|
|
|
|
}
|
|
|
|
|
2021-02-23 13:09:19 +01:00
|
|
|
func (b *EthAPIBackend) UnprotectedAllowed() bool {
|
|
|
|
return b.allowUnprotectedTxs
|
|
|
|
}
|
|
|
|
|
2020-07-01 19:54:21 +02:00
|
|
|
func (b *EthAPIBackend) RPCGasCap() uint64 {
|
2019-04-08 13:49:52 +02:00
|
|
|
return b.eth.config.RPCGasCap
|
|
|
|
}
|
|
|
|
|
2021-10-12 04:46:04 -04:00
|
|
|
func (b *EthAPIBackend) RPCEVMTimeout() time.Duration {
|
|
|
|
return b.eth.config.RPCEVMTimeout
|
|
|
|
}
|
|
|
|
|
2020-06-17 15:46:31 +08:00
|
|
|
func (b *EthAPIBackend) RPCTxFeeCap() float64 {
|
|
|
|
return b.eth.config.RPCTxFeeCap
|
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) BloomStatus() (uint64, uint64) {
|
2017-08-29 14:13:11 +03:00
|
|
|
sections, _, _ := b.eth.bloomIndexer.Sections()
|
|
|
|
return params.BloomBitsBlocks, sections
|
2017-08-18 21:52:20 +02:00
|
|
|
}
|
|
|
|
|
2018-05-09 00:59:00 -07:00
|
|
|
func (b *EthAPIBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) {
|
2017-08-29 14:13:11 +03:00
|
|
|
for i := 0; i < bloomFilterThreads; i++ {
|
|
|
|
go session.Multiplex(bloomRetrievalBatch, bloomRetrievalWait, b.eth.bloomRequests)
|
2017-08-18 21:52:20 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-03 19:40:46 +02:00
|
|
|
|
|
|
|
func (b *EthAPIBackend) Engine() consensus.Engine {
|
|
|
|
return b.eth.engine
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) CurrentHeader() *types.Header {
|
|
|
|
return b.eth.blockchain.CurrentHeader()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) Miner() *miner.Miner {
|
|
|
|
return b.eth.Miner()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) StartMining(threads int) error {
|
|
|
|
return b.eth.StartMining(threads)
|
|
|
|
}
|
2021-01-25 21:36:39 +08:00
|
|
|
|
2022-09-08 02:25:58 +08:00
|
|
|
func (b *EthAPIBackend) StateAtBlock(ctx context.Context, block *types.Block, reexec uint64, base *state.StateDB, readOnly bool, preferDisk bool) (*state.StateDB, tracers.StateReleaseFunc, error) {
|
2022-12-15 13:52:07 +01:00
|
|
|
return b.eth.StateAtBlock(ctx, block, reexec, base, readOnly, preferDisk)
|
2021-01-25 21:36:39 +08:00
|
|
|
}
|
|
|
|
|
2022-09-08 02:25:58 +08:00
|
|
|
func (b *EthAPIBackend) StateAtTransaction(ctx context.Context, block *types.Block, txIndex int, reexec uint64) (core.Message, vm.BlockContext, *state.StateDB, tracers.StateReleaseFunc, error) {
|
2022-12-15 13:52:07 +01:00
|
|
|
return b.eth.stateAtTransaction(ctx, block, txIndex, reexec)
|
2021-01-25 21:36:39 +08:00
|
|
|
}
|
optimism: historical Bedrock geth rollup changes
This commit squashes the op-geth fork history into a more maintainable
diff for rebasing upon upstream geth.
reference-optimistic-geth changes (origins of op-geth in early Bedrock
development stage):
- Deposit TX Type
- Enable deposit tx in EVM/tx pool
- Change deposit nonce to not be the max nonce
- Extend PayloadAttributesV1 with a Transactions field
- Force deposits at the start of each L2 block
- Fix height check
- noTxPool flag, reproduce block in verifier mode without tx pool interference
- Fix RPC json marshalling (ref op-geth PR 4)
- Deposit txs block height check in block body validation (ref op-geth PR 5)
- core: do not try to reinject deposit txs into tx-pool (ref-op-geth PR 6)
- deposit source hash field instead of L2 block height and tx index combination
- Include invalid deposits, rewind state, but always persist mint (#10)
- Provide gas to Call/Create in deposit transactions (#12)
- Add docker builds (ref-op-geth PR 16, 17)
- Don't panic on deposit transaction signature values or chain ID (ref-op-geth PR 18)
- core: Add version to DepositTx (ref-op-geth PR 19)
- Enable Geth build/lint/test in CircleCI (ref-op-geth PR 23)
- core: Include guaranteed gas in the gas pool (ref-op-geth PR 21)
- core: handle base fee, l1 availability fee, tx fee (ref-op-geth PR 27)
- fix: deposit tx hash
- fix l1 fee cache, rpc, tracing and tx pool
- core: remove deposit-tx sub-type (a.k.a. deposit version byte)
- eth/catalyst: allow engine user to reorg own chain
- miner: restore ability to reorg deep as block builder
- params: print Optimism consensus type in banner
- core/types: remove unused protected() method, see upstream PR 23376
- core: do not mutate original balance value in tx pool l1 cost adjustment
- core: subtract deposit gas from pool, so other txs do not use the same gas. And fail tx processing if deposits reach gas limit
- core/types: deposits do not tip, avoid basefee subtraction
- Unmeter the L1 Attributes Transaction
- miner: handle force tx errors as critical, clean up diff
- ci: Switch branch
- eth,miner: return STATUS_INVALID when failing to process forced transactions in request (ref-op-geth PR 40)
- verifier: forward tx to sequencer based on flag
- txpool: add flag to disable tx gossip (ref-op-geth PR 42)
- Add op-geth version in addition to geth version (ref-op-geth PR 43)
- ci: CircleCI improvements (ref-op-geth PR 44)
- Rename to op-geth
- Build latest tag on optimism branch
op-geth changes:
- Expose cache config in simulated backend (#2)
- Add EIP-1559 parameters
- eth/catalyst: update payload id computation (#1)
- make eip1559 configurable (#4)
- post-merge network should not log warnings about missing transition information (#5)
- Make the simulator more configurable (#6)
- fix OPB-6 - IsDepositTx check instead of artificial nonce value check (#7)
- Simulated backend - enable proof of stake consensus type and fix performance issue (#8)
- accounts: simulated backend consensus engine option and immediate tx indexing
- consensus/beacon: recognize all blocks as reached TTD with 0 TTD in chain config
- Add --rollup.historicalhttp CLI flag and fix backend iface
- Flags and interfaces for historical RPC requests (#12)
- Redirect historical RPC requests (#13)
- Use the pre-existing ethereum.NotFound error (#18)
- Add historical endpoint to TraceBlockByNumber and TraceBlockByHash (#19)
- Add historical endpoint to TraceTransaction (#20)
- Add historical endpoint to TraceCall (#21)
- optimism: fee params from info txi, update l1 cost func GPO params read (#15)
- add hardcoded addresses for fee payouts (#23)
- dynamic gas limit via engine API (#22)
Co-authored-by: Matthew Slipper <me@matthewslipper.com>
Co-authored-by: Joshua Gutow <jgutow@oplabs.co>
Co-authored-by: protolambda <proto@protolambda.com>
Co-authored-by: Mark Tyneway <mark.tyneway@gmail.com>
Co-authored-by: Maurelian <maurelian@protonmail.ch>
2022-03-10 12:13:11 -08:00
|
|
|
|
|
|
|
func (b *EthAPIBackend) HistoricalRPCService() *rpc.Client {
|
|
|
|
return b.eth.historicalRPCService
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *EthAPIBackend) Genesis() *types.Block {
|
|
|
|
return b.eth.blockchain.Genesis()
|
|
|
|
}
|