2016-11-09 01:01:56 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-12-16 03:26:23 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
// Package ethapi implements the general Ethereum API functions.
|
|
|
|
package ethapi
|
|
|
|
|
|
|
|
import (
|
2017-03-22 17:20:33 +00:00
|
|
|
"context"
|
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"
|
2022-11-14 13:48:01 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/bloombits"
|
2017-06-27 13:57:06 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
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/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2016-11-02 12:44:13 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2015-12-16 03:26:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Backend interface provides the common API services (that are provided by
|
|
|
|
// both full and light clients) with access to necessary functions.
|
|
|
|
type Backend interface {
|
2017-11-13 11:47:27 +00:00
|
|
|
// General Ethereum API
|
2021-09-10 07:55:48 +00:00
|
|
|
SyncProgress() ethereum.SyncProgress
|
|
|
|
|
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
|
|
|
SuggestGasTipCap(ctx context.Context) (*big.Int, error)
|
2023-03-23 20:12:37 +00:00
|
|
|
FeeHistory(ctx context.Context, blockCount uint64, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (*big.Int, [][]*big.Int, []*big.Int, []float64, error)
|
2015-12-16 03:26:23 +00:00
|
|
|
ChainDb() ethdb.Database
|
|
|
|
AccountManager() *accounts.Manager
|
2019-04-04 11:03:10 +00:00
|
|
|
ExtRPCEnabled() bool
|
2021-10-12 08:46:04 +00:00
|
|
|
RPCGasCap() uint64 // global gas cap for eth_call over rpc: DoS protection
|
|
|
|
RPCEVMTimeout() time.Duration // global timeout for eth_call over rpc: DoS protection
|
|
|
|
RPCTxFeeCap() float64 // global tx fee cap for all transaction related APIs
|
|
|
|
UnprotectedAllowed() bool // allows only for EIP155 transactions.
|
2017-11-13 11:47:27 +00:00
|
|
|
|
2019-06-12 08:24:24 +00:00
|
|
|
// Blockchain API
|
2015-12-16 03:26:23 +00:00
|
|
|
SetHead(number uint64)
|
2019-07-23 13:52:24 +00:00
|
|
|
HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error)
|
|
|
|
HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error)
|
2019-09-26 08:47:31 +00:00
|
|
|
HeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Header, error)
|
2020-08-03 17:40:46 +00:00
|
|
|
CurrentHeader() *types.Header
|
2023-03-02 06:29:15 +00:00
|
|
|
CurrentBlock() *types.Header
|
2019-07-23 13:52:24 +00:00
|
|
|
BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error)
|
2019-07-25 06:29:53 +00:00
|
|
|
BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error)
|
2019-09-26 08:47:31 +00:00
|
|
|
BlockByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Block, error)
|
2019-07-23 13:52:24 +00:00
|
|
|
StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error)
|
2019-09-26 08:47:31 +00:00
|
|
|
StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.StateDB, *types.Header, error)
|
2022-06-07 06:31:19 +00:00
|
|
|
PendingBlockAndReceipts() (*types.Block, types.Receipts)
|
2019-07-23 13:52:24 +00:00
|
|
|
GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error)
|
2020-07-13 09:02:54 +00:00
|
|
|
GetTd(ctx context.Context, hash common.Hash) *big.Int
|
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
|
|
|
GetEVM(ctx context.Context, msg *core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config) (*vm.EVM, func() error, error)
|
2017-08-18 10:58:36 +00:00
|
|
|
SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription
|
|
|
|
SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription
|
|
|
|
SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription
|
2017-06-27 13:57:06 +00:00
|
|
|
|
2019-06-12 08:24:24 +00:00
|
|
|
// Transaction pool API
|
2015-12-16 03:26:23 +00:00
|
|
|
SendTx(ctx context.Context, signedTx *types.Transaction) error
|
2019-05-13 11:41:10 +00:00
|
|
|
GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error)
|
2016-12-10 22:54:58 +00:00
|
|
|
GetPoolTransactions() (types.Transactions, error)
|
2015-12-16 03:26:23 +00:00
|
|
|
GetPoolTransaction(txHash common.Hash) *types.Transaction
|
|
|
|
GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error)
|
|
|
|
Stats() (pending int, queued int)
|
2016-07-01 15:59:55 +00:00
|
|
|
TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions)
|
2021-07-13 10:40:58 +00:00
|
|
|
TxPoolContentFrom(addr common.Address) (types.Transactions, types.Transactions)
|
2018-05-18 08:45:52 +00:00
|
|
|
SubscribeNewTxsEvent(chan<- core.NewTxsEvent) event.Subscription
|
2016-11-02 12:44:13 +00:00
|
|
|
|
|
|
|
ChainConfig() *params.ChainConfig
|
2020-08-03 17:40:46 +00:00
|
|
|
Engine() consensus.Engine
|
2022-08-19 09:14:59 +00:00
|
|
|
|
2022-11-14 13:48:01 +00:00
|
|
|
// This is copied from filters.Backend
|
2022-08-19 09:14:59 +00:00
|
|
|
// eth/filters needs to be initialized from this backend type, so methods needed by
|
|
|
|
// it must also be included here.
|
2023-02-13 09:59:27 +00:00
|
|
|
GetBody(ctx context.Context, hash common.Hash, number rpc.BlockNumber) (*types.Body, error)
|
2022-11-14 13:48:01 +00:00
|
|
|
GetLogs(ctx context.Context, blockHash common.Hash, number uint64) ([][]*types.Log, error)
|
|
|
|
SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription
|
|
|
|
SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription
|
|
|
|
SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription
|
|
|
|
BloomStatus() (uint64, uint64)
|
|
|
|
ServiceFilter(ctx context.Context, session *bloombits.MatcherSession)
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 21:04:14 +00:00
|
|
|
func GetAPIs(apiBackend Backend) []rpc.API {
|
2017-05-25 15:08:13 +00:00
|
|
|
nonceLock := new(AddrLocker)
|
2017-03-16 01:54:52 +00:00
|
|
|
return []rpc.API{
|
2015-12-16 03:26:23 +00:00
|
|
|
{
|
|
|
|
Namespace: "eth",
|
2022-06-21 09:05:43 +00:00
|
|
|
Service: NewEthereumAPI(apiBackend),
|
2015-12-16 03:26:23 +00:00
|
|
|
}, {
|
|
|
|
Namespace: "eth",
|
2022-06-21 09:05:43 +00:00
|
|
|
Service: NewBlockChainAPI(apiBackend),
|
2015-12-16 03:26:23 +00:00
|
|
|
}, {
|
|
|
|
Namespace: "eth",
|
2022-06-21 09:05:43 +00:00
|
|
|
Service: NewTransactionAPI(apiBackend, nonceLock),
|
2015-12-16 03:26:23 +00:00
|
|
|
}, {
|
|
|
|
Namespace: "txpool",
|
2022-06-21 09:05:43 +00:00
|
|
|
Service: NewTxPoolAPI(apiBackend),
|
2015-12-16 03:26:23 +00:00
|
|
|
}, {
|
|
|
|
Namespace: "debug",
|
2022-06-21 09:05:43 +00:00
|
|
|
Service: NewDebugAPI(apiBackend),
|
2015-12-16 03:26:23 +00:00
|
|
|
}, {
|
|
|
|
Namespace: "eth",
|
2022-06-21 09:05:43 +00:00
|
|
|
Service: NewEthereumAccountAPI(apiBackend.AccountManager()),
|
2015-12-16 03:26:23 +00:00
|
|
|
}, {
|
|
|
|
Namespace: "personal",
|
2022-06-21 09:05:43 +00:00
|
|
|
Service: NewPersonalAccountAPI(apiBackend, nonceLock),
|
2015-12-16 03:26:23 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|