github.com/tacshi/go-ethereum@v0.0.0-20230616113857-84a434e20921/internal/ethapi/backend.go (about)

     1  // Copyright 2015 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  // Package ethapi implements the general Ethereum API functions.
    18  package ethapi
    19  
    20  import (
    21  	"context"
    22  	"math/big"
    23  	"time"
    24  
    25  	"github.com/tacshi/go-ethereum"
    26  	"github.com/tacshi/go-ethereum/accounts"
    27  	"github.com/tacshi/go-ethereum/common"
    28  	"github.com/tacshi/go-ethereum/consensus"
    29  	"github.com/tacshi/go-ethereum/core"
    30  	"github.com/tacshi/go-ethereum/core/bloombits"
    31  	"github.com/tacshi/go-ethereum/core/state"
    32  	"github.com/tacshi/go-ethereum/core/types"
    33  	"github.com/tacshi/go-ethereum/core/vm"
    34  	"github.com/tacshi/go-ethereum/ethdb"
    35  	"github.com/tacshi/go-ethereum/event"
    36  	"github.com/tacshi/go-ethereum/params"
    37  	"github.com/tacshi/go-ethereum/rpc"
    38  )
    39  
    40  // Backend interface provides the common API services (that are provided by
    41  // both full and light clients) with access to necessary functions.
    42  type Backend interface {
    43  	FallbackClient() types.FallbackClient
    44  
    45  	// General Ethereum API
    46  	SyncProgress() ethereum.SyncProgress
    47  	SyncProgressMap() map[string]interface{}
    48  
    49  	SuggestGasTipCap(ctx context.Context) (*big.Int, error)
    50  	FeeHistory(ctx context.Context, blockCount int, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (*big.Int, [][]*big.Int, []*big.Int, []float64, error)
    51  	ChainDb() ethdb.Database
    52  	AccountManager() *accounts.Manager
    53  	ExtRPCEnabled() bool
    54  	RPCGasCap() uint64            // global gas cap for eth_call over rpc: DoS protection
    55  	RPCEVMTimeout() time.Duration // global timeout for eth_call over rpc: DoS protection
    56  	RPCTxFeeCap() float64         // global tx fee cap for all transaction related APIs
    57  	UnprotectedAllowed() bool     // allows only for EIP155 transactions.
    58  
    59  	// Blockchain API
    60  	SetHead(number uint64)
    61  	HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error)
    62  	HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error)
    63  	HeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Header, error)
    64  	CurrentHeader() *types.Header
    65  	CurrentBlock() *types.Header
    66  	BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error)
    67  	BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error)
    68  	BlockByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Block, error)
    69  	StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error)
    70  	StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.StateDB, *types.Header, error)
    71  	PendingBlockAndReceipts() (*types.Block, types.Receipts)
    72  	GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error)
    73  	GetTd(ctx context.Context, hash common.Hash) *big.Int
    74  	GetEVM(ctx context.Context, msg *core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config) (*vm.EVM, func() error, error)
    75  	SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription
    76  	SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription
    77  	SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription
    78  
    79  	// Transaction pool API
    80  	SendTx(ctx context.Context, signedTx *types.Transaction) error
    81  	GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error)
    82  	GetPoolTransactions() (types.Transactions, error)
    83  	GetPoolTransaction(txHash common.Hash) *types.Transaction
    84  	GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error)
    85  	Stats() (pending int, queued int)
    86  	TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions)
    87  	TxPoolContentFrom(addr common.Address) (types.Transactions, types.Transactions)
    88  	SubscribeNewTxsEvent(chan<- core.NewTxsEvent) event.Subscription
    89  
    90  	ChainConfig() *params.ChainConfig
    91  	Engine() consensus.Engine
    92  
    93  	// This is copied from filters.Backend
    94  	// eth/filters needs to be initialized from this backend type, so methods needed by
    95  	// it must also be included here.
    96  	GetBody(ctx context.Context, hash common.Hash, number rpc.BlockNumber) (*types.Body, error)
    97  	GetLogs(ctx context.Context, blockHash common.Hash, number uint64) ([][]*types.Log, error)
    98  	SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription
    99  	SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription
   100  	SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription
   101  	BloomStatus() (uint64, uint64)
   102  	ServiceFilter(ctx context.Context, session *bloombits.MatcherSession)
   103  }
   104  
   105  func GetAPIs(apiBackend Backend) []rpc.API {
   106  	nonceLock := new(AddrLocker)
   107  	return []rpc.API{
   108  		{
   109  			Namespace: "eth",
   110  			Service:   NewEthereumAPI(apiBackend),
   111  		}, {
   112  			Namespace: "eth",
   113  			Service:   NewBlockChainAPI(apiBackend),
   114  		}, {
   115  			Namespace: "eth",
   116  			Service:   NewTransactionAPI(apiBackend, nonceLock),
   117  		}, {
   118  			Namespace: "txpool",
   119  			Service:   NewTxPoolAPI(apiBackend),
   120  		}, {
   121  			Namespace: "debug",
   122  			Service:   NewDebugAPI(apiBackend),
   123  		}, {
   124  			Namespace: "eth",
   125  			Service:   NewEthereumAccountAPI(apiBackend.AccountManager()),
   126  		}, {
   127  			Namespace: "personal",
   128  			Service:   NewPersonalAccountAPI(apiBackend, nonceLock),
   129  		},
   130  	}
   131  }