2015-12-16 03:26:23 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2016-11-09 01:01:56 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-12-16 03:26:23 +00:00
|
|
|
//
|
2016-11-09 01:01:56 +00: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 03:26:23 +00:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2016-11-09 01:01:56 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-12-16 03:26:23 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2016-11-09 01:01:56 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
2015-12-16 03:26:23 +00:00
|
|
|
//
|
2016-11-09 01:01:56 +00: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 03:26:23 +00:00
|
|
|
|
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
2017-03-22 17:20:33 +00:00
|
|
|
"context"
|
2019-05-02 12:50:23 +00:00
|
|
|
"errors"
|
2015-12-16 03:26:23 +00:00
|
|
|
"math/big"
|
2021-10-12 08:46:04 +00:00
|
|
|
"time"
|
2015-12-16 03:26:23 +00:00
|
|
|
|
2021-09-10 07:55:48 +00:00
|
|
|
"github.com/ethereum/go-ethereum"
|
2015-12-16 03:26:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/accounts"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2020-08-03 17:40:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/consensus"
|
2015-12-16 03:26:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2017-08-29 11:13:11 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/bloombits"
|
2019-05-13 11:41:10 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2015-12-16 03:26:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2022-10-24 13:13:55 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/txpool"
|
2015-12-16 03:26:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/gasprice"
|
2022-09-07 18:25:58 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth/tracers"
|
2015-12-16 03:26:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2020-08-03 17:40:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/miner"
|
2016-11-02 12:44:13 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2017-01-05 13:03:50 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2015-12-16 03:26:23 +00:00
|
|
|
)
|
|
|
|
|
2023-05-29 09:09:34 +00:00
|
|
|
// EthAPIBackend implements ethapi.Backend and tracers.Backend for full nodes
|
2018-05-09 07:59:00 +00:00
|
|
|
type EthAPIBackend struct {
|
2021-02-23 12:09:19 +00:00
|
|
|
extRPCEnabled bool
|
|
|
|
allowUnprotectedTxs bool
|
|
|
|
eth *Ethereum
|
|
|
|
gpo *gasprice.Oracle
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 10:14:52 +00:00
|
|
|
// ChainConfig returns the active chain configuration.
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) ChainConfig() *params.ChainConfig {
|
2019-03-27 11:23:08 +00:00
|
|
|
return b.eth.blockchain.Config()
|
2016-11-02 12:44:13 +00:00
|
|
|
}
|
|
|
|
|
2023-03-02 06:29:15 +00:00
|
|
|
func (b *EthAPIBackend) CurrentBlock() *types.Header {
|
2016-11-02 12:44:13 +00:00
|
|
|
return b.eth.blockchain.CurrentBlock()
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SetHead(number uint64) {
|
2020-12-14 09:27:15 +00:00
|
|
|
b.eth.handler.downloader.Cancel()
|
2015-12-16 03:26:23 +00:00
|
|
|
b.eth.blockchain.SetHead(number)
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:52:24 +00:00
|
|
|
func (b *EthAPIBackend) HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error) {
|
2015-12-16 03:26:23 +00:00
|
|
|
// Pending block is only known by the miner
|
2019-07-23 13:52:24 +00:00
|
|
|
if number == rpc.PendingBlockNumber {
|
2016-11-30 09:48:48 +00:00
|
|
|
block := b.eth.miner.PendingBlock()
|
2023-05-31 07:09:49 +00:00
|
|
|
if block == nil {
|
|
|
|
return nil, errors.New("pending block is not available")
|
|
|
|
}
|
2016-10-14 03:51:29 +00:00
|
|
|
return block.Header(), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
// Otherwise resolve and return the block
|
2019-07-23 13:52:24 +00:00
|
|
|
if number == rpc.LatestBlockNumber {
|
2023-03-02 06:29:15 +00:00
|
|
|
return b.eth.blockchain.CurrentBlock(), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
2022-05-18 14:30:42 +00:00
|
|
|
if number == rpc.FinalizedBlockNumber {
|
2023-03-02 06:29:15 +00:00
|
|
|
block := b.eth.blockchain.CurrentFinalBlock()
|
2023-08-26 08:19:01 +00:00
|
|
|
if block == nil {
|
|
|
|
return nil, errors.New("finalized block not found")
|
2022-07-25 15:42:05 +00:00
|
|
|
}
|
2023-08-26 08:19:01 +00:00
|
|
|
return block, nil
|
2022-07-25 15:42:05 +00:00
|
|
|
}
|
|
|
|
if number == rpc.SafeBlockNumber {
|
|
|
|
block := b.eth.blockchain.CurrentSafeBlock()
|
2023-08-26 08:19:01 +00:00
|
|
|
if block == nil {
|
|
|
|
return nil, errors.New("safe block not found")
|
2022-07-25 15:42:05 +00:00
|
|
|
}
|
2023-08-26 08:19:01 +00:00
|
|
|
return block, nil
|
2022-05-18 14:30:42 +00:00
|
|
|
}
|
2019-07-23 13:52:24 +00:00
|
|
|
return b.eth.blockchain.GetHeaderByNumber(uint64(number)), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 08:47:31 +00: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 14:36:07 +00:00
|
|
|
func (b *EthAPIBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) {
|
|
|
|
return b.eth.blockchain.GetHeaderByHash(hash), nil
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:52:24 +00:00
|
|
|
func (b *EthAPIBackend) BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error) {
|
2015-12-16 03:26:23 +00:00
|
|
|
// Pending block is only known by the miner
|
2019-07-23 13:52:24 +00:00
|
|
|
if number == rpc.PendingBlockNumber {
|
2016-11-30 09:48:48 +00:00
|
|
|
block := b.eth.miner.PendingBlock()
|
2023-05-31 07:09:49 +00:00
|
|
|
if block == nil {
|
|
|
|
return nil, errors.New("pending block is not available")
|
|
|
|
}
|
2015-12-16 03:26:23 +00:00
|
|
|
return block, nil
|
|
|
|
}
|
|
|
|
// Otherwise resolve and return the block
|
2019-07-23 13:52:24 +00:00
|
|
|
if number == rpc.LatestBlockNumber {
|
2023-03-02 06:29:15 +00:00
|
|
|
header := b.eth.blockchain.CurrentBlock()
|
|
|
|
return b.eth.blockchain.GetBlock(header.Hash(), header.Number.Uint64()), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
2022-05-18 14:30:42 +00:00
|
|
|
if number == rpc.FinalizedBlockNumber {
|
2023-03-02 06:29:15 +00:00
|
|
|
header := b.eth.blockchain.CurrentFinalBlock()
|
2023-04-25 13:15:43 +00:00
|
|
|
if header == nil {
|
|
|
|
return nil, errors.New("finalized block not found")
|
|
|
|
}
|
2023-03-02 06:29:15 +00:00
|
|
|
return b.eth.blockchain.GetBlock(header.Hash(), header.Number.Uint64()), nil
|
2022-05-18 14:30:42 +00:00
|
|
|
}
|
2022-07-25 15:42:05 +00:00
|
|
|
if number == rpc.SafeBlockNumber {
|
2023-03-02 06:29:15 +00:00
|
|
|
header := b.eth.blockchain.CurrentSafeBlock()
|
2023-04-25 13:15:43 +00:00
|
|
|
if header == nil {
|
|
|
|
return nil, errors.New("safe block not found")
|
|
|
|
}
|
2023-03-02 06:29:15 +00:00
|
|
|
return b.eth.blockchain.GetBlock(header.Hash(), header.Number.Uint64()), nil
|
2022-07-25 15:42:05 +00:00
|
|
|
}
|
2019-07-23 13:52:24 +00:00
|
|
|
return b.eth.blockchain.GetBlockByNumber(uint64(number)), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2019-07-25 06:29:53 +00:00
|
|
|
func (b *EthAPIBackend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) {
|
|
|
|
return b.eth.blockchain.GetBlockByHash(hash), nil
|
|
|
|
}
|
|
|
|
|
2023-02-13 09:59:27 +00: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 08:47:31 +00: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 14:16:32 +00:00
|
|
|
func (b *EthAPIBackend) PendingBlockAndReceipts() (*types.Block, types.Receipts) {
|
|
|
|
return b.eth.miner.PendingBlockAndReceipts()
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:52:24 +00:00
|
|
|
func (b *EthAPIBackend) StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error) {
|
2015-12-16 03:26:23 +00:00
|
|
|
// Pending state is only known by the miner
|
2019-07-23 13:52:24 +00:00
|
|
|
if number == rpc.PendingBlockNumber {
|
2015-12-16 03:26:23 +00:00
|
|
|
block, state := b.eth.miner.Pending()
|
2023-05-31 07:09:49 +00:00
|
|
|
if block == nil || state == nil {
|
|
|
|
return nil, nil, errors.New("pending state is not available")
|
|
|
|
}
|
2017-06-27 13:57:06 +00:00
|
|
|
return state, block.Header(), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
// Otherwise resolve the block number and return its state
|
2019-07-23 13:52:24 +00:00
|
|
|
header, err := b.HeaderByNumber(ctx, number)
|
2019-05-02 12:50:23 +00:00
|
|
|
if err != nil {
|
2016-10-14 03:51:29 +00:00
|
|
|
return nil, nil, err
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
2019-05-02 12:50:23 +00:00
|
|
|
if header == nil {
|
|
|
|
return nil, nil, errors.New("header not found")
|
|
|
|
}
|
2016-09-27 10:13:13 +00:00
|
|
|
stateDb, err := b.eth.BlockChain().StateAt(header.Root)
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
return stateDb, header, nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 08:47:31 +00: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 {
|
|
|
|
return nil, nil, errors.New("header for hash not found")
|
|
|
|
}
|
|
|
|
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)
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
return stateDb, header, nil
|
2019-09-26 08:47:31 +00:00
|
|
|
}
|
|
|
|
return nil, nil, errors.New("invalid arguments; neither block nor hash specified")
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error) {
|
2018-09-29 20:53:31 +00:00
|
|
|
return b.eth.blockchain.GetReceiptsByHash(hash), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2022-08-19 09:14:59 +00:00
|
|
|
func (b *EthAPIBackend) GetLogs(ctx context.Context, hash common.Hash, number uint64) ([][]*types.Log, error) {
|
2023-08-10 10:49:05 +00:00
|
|
|
return rawdb.ReadLogs(b.eth.chainDb, hash, number), nil
|
2018-02-22 10:48:14 +00:00
|
|
|
}
|
|
|
|
|
2020-07-13 09:02:54 +00:00
|
|
|
func (b *EthAPIBackend) GetTd(ctx context.Context, hash common.Hash) *big.Int {
|
2021-10-11 21:16:46 +00:00
|
|
|
if header := b.eth.blockchain.GetHeaderByHash(hash); header != nil {
|
|
|
|
return b.eth.blockchain.GetTd(hash, header.Number.Uint64())
|
|
|
|
}
|
|
|
|
return nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2023-11-24 11:26:42 +00:00
|
|
|
func (b *EthAPIBackend) GetEVM(ctx context.Context, msg *core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config, blockCtx *vm.BlockContext) *vm.EVM {
|
2021-04-07 14:54:31 +00:00
|
|
|
if vmConfig == nil {
|
|
|
|
vmConfig = b.eth.blockchain.GetVMConfig()
|
|
|
|
}
|
2020-11-13 12:42:19 +00:00
|
|
|
txContext := core.NewEVMTxContext(msg)
|
2023-05-02 08:28:43 +00:00
|
|
|
var context vm.BlockContext
|
|
|
|
if blockCtx != nil {
|
|
|
|
context = *blockCtx
|
|
|
|
} else {
|
|
|
|
context = core.NewEVMBlockContext(header, b.eth.BlockChain(), nil)
|
|
|
|
}
|
2024-01-12 07:06:22 +00:00
|
|
|
return vm.NewEVM(context, txContext, state, b.ChainConfig(), *vmConfig)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeRemovedLogsEvent(ch)
|
|
|
|
}
|
|
|
|
|
2019-12-10 11:39:14 +00:00
|
|
|
func (b *EthAPIBackend) SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
|
|
|
return b.eth.miner.SubscribePendingLogs(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeChainEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeChainHeadEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeChainSideEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription {
|
2017-08-18 10:58:36 +00:00
|
|
|
return b.eth.BlockChain().SubscribeLogsEvent(ch)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error {
|
core/types: support for optional blob sidecar in BlobTx (#27841)
This PR removes the newly added txpool.Transaction wrapper type, and instead adds a way
of keeping the blob sidecar within types.Transaction. It's better this way because most
code in go-ethereum does not care about blob transactions, and probably never will. This
will start mattering especially on the client side of RPC, where all APIs are based on
types.Transaction. Users need to be able to use the same signing flows they already
have.
However, since blobs are only allowed in some places but not others, we will now need to
add checks to avoid creating invalid blocks. I'm still trying to figure out the best place
to do some of these. The way I have it currently is as follows:
- In block validation (import), txs are verified not to have a blob sidecar.
- In miner, we strip off the sidecar when committing the transaction into the block.
- In TxPool validation, txs must have a sidecar to be added into the blobpool.
- Note there is a special case here: when transactions are re-added because of a chain
reorg, we cannot use the transactions gathered from the old chain blocks as-is,
because they will be missing their blobs. This was previously handled by storing the
blobs into the 'blobpool limbo'. The code has now changed to store the full
transaction in the limbo instead, but it might be confusing for code readers why we're
not simply adding the types.Transaction we already have.
Code changes summary:
- txpool.Transaction removed and all uses replaced by types.Transaction again
- blobpool now stores types.Transaction instead of defining its own blobTx format for storage
- the blobpool limbo now stores types.Transaction instead of storing only the blobs
- checks to validate the presence/absence of the blob sidecar added in certain critical places
2023-08-14 08:13:34 +00:00
|
|
|
return b.eth.txPool.Add([]*types.Transaction{signedTx}, true, false)[0]
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetPoolTransactions() (types.Transactions, error) {
|
2024-02-20 09:37:23 +00:00
|
|
|
pending := b.eth.txPool.Pending(txpool.PendingFilter{})
|
2016-07-01 15:59:55 +00:00
|
|
|
var txs types.Transactions
|
2016-12-10 22:54:58 +00:00
|
|
|
for _, batch := range pending {
|
2023-07-27 10:45:35 +00:00
|
|
|
for _, lazy := range batch {
|
|
|
|
if tx := lazy.Resolve(); tx != nil {
|
core/types: support for optional blob sidecar in BlobTx (#27841)
This PR removes the newly added txpool.Transaction wrapper type, and instead adds a way
of keeping the blob sidecar within types.Transaction. It's better this way because most
code in go-ethereum does not care about blob transactions, and probably never will. This
will start mattering especially on the client side of RPC, where all APIs are based on
types.Transaction. Users need to be able to use the same signing flows they already
have.
However, since blobs are only allowed in some places but not others, we will now need to
add checks to avoid creating invalid blocks. I'm still trying to figure out the best place
to do some of these. The way I have it currently is as follows:
- In block validation (import), txs are verified not to have a blob sidecar.
- In miner, we strip off the sidecar when committing the transaction into the block.
- In TxPool validation, txs must have a sidecar to be added into the blobpool.
- Note there is a special case here: when transactions are re-added because of a chain
reorg, we cannot use the transactions gathered from the old chain blocks as-is,
because they will be missing their blobs. This was previously handled by storing the
blobs into the 'blobpool limbo'. The code has now changed to store the full
transaction in the limbo instead, but it might be confusing for code readers why we're
not simply adding the types.Transaction we already have.
Code changes summary:
- txpool.Transaction removed and all uses replaced by types.Transaction again
- blobpool now stores types.Transaction instead of defining its own blobTx format for storage
- the blobpool limbo now stores types.Transaction instead of storing only the blobs
- checks to validate the presence/absence of the blob sidecar added in certain critical places
2023-08-14 08:13:34 +00:00
|
|
|
txs = append(txs, tx)
|
2023-07-27 10:45:35 +00:00
|
|
|
}
|
|
|
|
}
|
2016-07-01 15:59:55 +00:00
|
|
|
}
|
2016-12-10 22:54:58 +00:00
|
|
|
return txs, nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetPoolTransaction(hash common.Hash) *types.Transaction {
|
core/types: support for optional blob sidecar in BlobTx (#27841)
This PR removes the newly added txpool.Transaction wrapper type, and instead adds a way
of keeping the blob sidecar within types.Transaction. It's better this way because most
code in go-ethereum does not care about blob transactions, and probably never will. This
will start mattering especially on the client side of RPC, where all APIs are based on
types.Transaction. Users need to be able to use the same signing flows they already
have.
However, since blobs are only allowed in some places but not others, we will now need to
add checks to avoid creating invalid blocks. I'm still trying to figure out the best place
to do some of these. The way I have it currently is as follows:
- In block validation (import), txs are verified not to have a blob sidecar.
- In miner, we strip off the sidecar when committing the transaction into the block.
- In TxPool validation, txs must have a sidecar to be added into the blobpool.
- Note there is a special case here: when transactions are re-added because of a chain
reorg, we cannot use the transactions gathered from the old chain blocks as-is,
because they will be missing their blobs. This was previously handled by storing the
blobs into the 'blobpool limbo'. The code has now changed to store the full
transaction in the limbo instead, but it might be confusing for code readers why we're
not simply adding the types.Transaction we already have.
Code changes summary:
- txpool.Transaction removed and all uses replaced by types.Transaction again
- blobpool now stores types.Transaction instead of defining its own blobTx format for storage
- the blobpool limbo now stores types.Transaction instead of storing only the blobs
- checks to validate the presence/absence of the blob sidecar added in certain critical places
2023-08-14 08:13:34 +00:00
|
|
|
return b.eth.txPool.Get(hash)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2024-01-22 20:05:18 +00:00
|
|
|
// GetTransaction retrieves the lookup along with the transaction itself associate
|
|
|
|
// with the given transaction hash.
|
|
|
|
//
|
|
|
|
// An error will be returned if the transaction is not found, and background
|
|
|
|
// indexing for transactions is still in progress. The error is used to indicate the
|
|
|
|
// scenario explicitly that the transaction might be reachable shortly.
|
|
|
|
//
|
|
|
|
// A null will be returned in the transaction is not found and background transaction
|
|
|
|
// indexing is already finished. The transaction is not existent from the perspective
|
|
|
|
// of node.
|
|
|
|
func (b *EthAPIBackend) GetTransaction(ctx context.Context, txHash common.Hash) (bool, *types.Transaction, common.Hash, uint64, uint64, error) {
|
|
|
|
lookup, tx, err := b.eth.blockchain.GetTransactionLookup(txHash)
|
|
|
|
if err != nil {
|
|
|
|
return false, nil, common.Hash{}, 0, 0, err
|
|
|
|
}
|
|
|
|
if lookup == nil || tx == nil {
|
|
|
|
return false, nil, common.Hash{}, 0, 0, nil
|
|
|
|
}
|
|
|
|
return true, tx, lookup.BlockHash, lookup.BlockIndex, lookup.Index, nil
|
2019-05-13 11:41:10 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error) {
|
2019-07-09 07:34:35 +00:00
|
|
|
return b.eth.txPool.Nonce(addr), nil
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2023-06-16 12:29:40 +00:00
|
|
|
func (b *EthAPIBackend) Stats() (runnable int, blocked int) {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.txPool.Stats()
|
|
|
|
}
|
|
|
|
|
2023-06-16 12:29:40 +00:00
|
|
|
func (b *EthAPIBackend) TxPoolContent() (map[common.Address][]*types.Transaction, map[common.Address][]*types.Transaction) {
|
|
|
|
return b.eth.txPool.Content()
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2023-06-16 12:29:40 +00:00
|
|
|
func (b *EthAPIBackend) TxPoolContentFrom(addr common.Address) ([]*types.Transaction, []*types.Transaction) {
|
|
|
|
return b.eth.txPool.ContentFrom(addr)
|
2021-07-13 10:40:58 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 13:13:55 +00:00
|
|
|
func (b *EthAPIBackend) TxPool() *txpool.TxPool {
|
2023-06-16 12:29:40 +00:00
|
|
|
return b.eth.txPool
|
2020-08-03 17:40:46 +00:00
|
|
|
}
|
|
|
|
|
2018-05-18 08:45:52 +00:00
|
|
|
func (b *EthAPIBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription {
|
2023-10-04 09:36:36 +00:00
|
|
|
return b.eth.txPool.SubscribeTransactions(ch, true)
|
2017-08-18 10:58:36 +00:00
|
|
|
}
|
|
|
|
|
2021-09-10 07:55:48 +00:00
|
|
|
func (b *EthAPIBackend) SyncProgress() ethereum.SyncProgress {
|
2024-01-22 20:05:18 +00:00
|
|
|
prog := b.eth.Downloader().Progress()
|
|
|
|
if txProg, err := b.eth.blockchain.TxIndexProgress(); err == nil {
|
|
|
|
prog.TxIndexFinishedBlocks = txProg.Indexed
|
|
|
|
prog.TxIndexRemainingBlocks = txProg.Remaining
|
|
|
|
}
|
|
|
|
return prog
|
2015-12-16 03:26:23 +00: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 13:13:10 +00:00
|
|
|
func (b *EthAPIBackend) SuggestGasTipCap(ctx context.Context) (*big.Int, error) {
|
|
|
|
return b.gpo.SuggestTipCap(ctx)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2023-03-23 20:12:37 +00:00
|
|
|
func (b *EthAPIBackend) FeeHistory(ctx context.Context, blockCount uint64, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (firstBlock *big.Int, reward [][]*big.Int, baseFee []*big.Int, gasUsedRatio []float64, err error) {
|
2021-06-28 14:16:32 +00:00
|
|
|
return b.gpo.FeeHistory(ctx, blockCount, lastBlock, rewardPercentiles)
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) ChainDb() ethdb.Database {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.ChainDb()
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) EventMux() *event.TypeMux {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.EventMux()
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) AccountManager() *accounts.Manager {
|
2015-12-16 03:26:23 +00:00
|
|
|
return b.eth.AccountManager()
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2019-04-04 11:03:10 +00:00
|
|
|
func (b *EthAPIBackend) ExtRPCEnabled() bool {
|
|
|
|
return b.extRPCEnabled
|
|
|
|
}
|
|
|
|
|
2021-02-23 12:09:19 +00:00
|
|
|
func (b *EthAPIBackend) UnprotectedAllowed() bool {
|
|
|
|
return b.allowUnprotectedTxs
|
|
|
|
}
|
|
|
|
|
2020-07-01 17:54:21 +00:00
|
|
|
func (b *EthAPIBackend) RPCGasCap() uint64 {
|
2019-04-08 11:49:52 +00:00
|
|
|
return b.eth.config.RPCGasCap
|
|
|
|
}
|
|
|
|
|
2021-10-12 08:46:04 +00:00
|
|
|
func (b *EthAPIBackend) RPCEVMTimeout() time.Duration {
|
|
|
|
return b.eth.config.RPCEVMTimeout
|
|
|
|
}
|
|
|
|
|
2020-06-17 07:46:31 +00:00
|
|
|
func (b *EthAPIBackend) RPCTxFeeCap() float64 {
|
|
|
|
return b.eth.config.RPCTxFeeCap
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) BloomStatus() (uint64, uint64) {
|
2017-08-29 11:13:11 +00:00
|
|
|
sections, _, _ := b.eth.bloomIndexer.Sections()
|
|
|
|
return params.BloomBitsBlocks, sections
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:59:00 +00:00
|
|
|
func (b *EthAPIBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession) {
|
2017-08-29 11:13:11 +00:00
|
|
|
for i := 0; i < bloomFilterThreads; i++ {
|
|
|
|
go session.Multiplex(bloomRetrievalBatch, bloomRetrievalWait, b.eth.bloomRequests)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-03 17:40:46 +00: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()
|
|
|
|
}
|
|
|
|
|
2023-05-03 09:58:39 +00:00
|
|
|
func (b *EthAPIBackend) StartMining() error {
|
|
|
|
return b.eth.StartMining()
|
2020-08-03 17:40:46 +00:00
|
|
|
}
|
2021-01-25 13:36:39 +00:00
|
|
|
|
2022-09-07 18:25:58 +00: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) {
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
return b.eth.stateAtBlock(ctx, block, reexec, base, readOnly, preferDisk)
|
2021-01-25 13:36:39 +00:00
|
|
|
}
|
|
|
|
|
core, core/types: plain Message struct (#25977)
Here, the core.Message interface turns into a plain struct and
types.Message gets removed.
This is a breaking change to packages core and core/types. While we do
not promise API stability for package core, we do for core/types. An
exception can be made for types.Message, since it doesn't have any
purpose apart from invoking the state transition in package core.
types.Message was also marked deprecated by the same commit it
got added in, 4dca5d4db7 (November 2016).
The core.Message interface was added in December 2014, in commit
db494170dc, for the purpose of 'testing' state transitions. It's the
same change that made transaction struct fields private. Before that,
the state transition used *types.Transaction directly.
Over time, multiple implementations of the interface accrued across
different packages, since constructing a Message is required whenever
one wants to invoke the state transition. These implementations all
looked very similar, a struct with private fields exposing the fields
as accessor methods.
By changing Message into a struct with public fields we can remove all
these useless interface implementations. It will also hopefully
simplify future changes to the type with less updates to apply across
all of go-ethereum when a field is added to Message.
---------
Co-authored-by: Felix Lange <fjl@twurst.com>
2023-03-09 13:19:12 +00: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 12:52:07 +00:00
|
|
|
return b.eth.stateAtTransaction(ctx, block, txIndex, reexec)
|
2021-01-25 13:36:39 +00:00
|
|
|
}
|