status-go/vendor/github.com/ethereum/go-ethereum/internal/ethapi/backend.go

122 lines
5.1 KiB
Go
Raw Normal View History

2016-11-25 05:50:30 +00:00
// Copyright 2015 The go-ethereum Authors
2016-07-03 19:44:31 +00:00
// This file is part of the go-ethereum library.
2016-06-20 14:47:10 +00:00
//
2016-07-03 19:44:31 +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
2016-06-20 14:47:10 +00:00
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
2016-07-03 19:44:31 +00:00
// The go-ethereum library is distributed in the hope that it will be useful,
2016-06-20 14:47:10 +00:00
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2016-07-03 19:44:31 +00:00
// GNU Lesser General Public License for more details.
2016-06-20 14:47:10 +00:00
//
2016-07-03 19:44:31 +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/>.
2016-06-20 14:47:10 +00:00
// Package ethapi implements the general Ethereum API functions.
package ethapi
import (
"context"
2016-06-20 14:47:10 +00:00
"math/big"
2022-10-25 14:25:08 +00:00
"time"
2016-06-20 14:47:10 +00:00
2022-10-25 14:25:08 +00:00
"github.com/ethereum/go-ethereum"
2016-06-20 14:47:10 +00:00
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/consensus"
2016-06-20 14:47:10 +00:00
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/state"
2016-06-20 14:47:10 +00:00
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/vm"
2022-10-25 14:25:08 +00:00
"github.com/ethereum/go-ethereum/eth/filters"
2016-06-20 14:47:10 +00:00
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/event"
2016-11-25 05:50:30 +00:00
"github.com/ethereum/go-ethereum/params"
2016-06-20 14:47:10 +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 {
// General Ethereum API
2022-10-25 14:25:08 +00:00
SyncProgress() ethereum.SyncProgress
SuggestGasTipCap(ctx context.Context) (*big.Int, error)
2022-10-25 14:25:08 +00:00
FeeHistory(ctx context.Context, blockCount int, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (*big.Int, [][]*big.Int, []*big.Int, []float64, error)
2016-06-20 14:47:10 +00:00
ChainDb() ethdb.Database
AccountManager() *accounts.Manager
ExtRPCEnabled() bool
2022-10-25 14:25:08 +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.
// Blockchain API
2016-06-20 14:47:10 +00:00
SetHead(number uint64)
HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error)
HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error)
HeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Header, error)
CurrentHeader() *types.Header
CurrentBlock() *types.Block
BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error)
BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error)
BlockByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Block, error)
StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error)
StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.StateDB, *types.Header, error)
2022-10-25 14:25:08 +00:00
PendingBlockAndReceipts() (*types.Block, types.Receipts)
GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error)
GetTd(ctx context.Context, hash common.Hash) *big.Int
GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config) (*vm.EVM, func() error, error)
2017-10-10 09:38:49 +00:00
SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription
SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription
SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription
// Transaction pool API
2016-06-20 14:47:10 +00:00
SendTx(ctx context.Context, signedTx *types.Transaction) error
GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error)
2017-02-23 00:22:43 +00:00
GetPoolTransactions() (types.Transactions, error)
2016-06-20 14:47:10 +00:00
GetPoolTransaction(txHash common.Hash) *types.Transaction
GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error)
Stats() (pending int, queued int)
TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions)
2022-10-25 14:25:08 +00:00
TxPoolContentFrom(addr common.Address) (types.Transactions, types.Transactions)
SubscribeNewTxsEvent(chan<- core.NewTxsEvent) event.Subscription
2016-11-25 05:50:30 +00:00
ChainConfig() *params.ChainConfig
Engine() consensus.Engine
2022-10-25 14:25:08 +00:00
// eth/filters needs to be initialized from this backend type, so methods needed by
// it must also be included here.
filters.Backend
2016-06-20 14:47:10 +00:00
}
func GetAPIs(apiBackend Backend) []rpc.API {
nonceLock := new(AddrLocker)
return []rpc.API{
2016-06-20 14:47:10 +00:00
{
Namespace: "eth",
2022-10-25 14:25:08 +00:00
Service: NewEthereumAPI(apiBackend),
2016-06-20 14:47:10 +00:00
}, {
Namespace: "eth",
2022-10-25 14:25:08 +00:00
Service: NewBlockChainAPI(apiBackend),
2016-06-20 14:47:10 +00:00
}, {
Namespace: "eth",
2022-10-25 14:25:08 +00:00
Service: NewTransactionAPI(apiBackend, nonceLock),
2016-06-20 14:47:10 +00:00
}, {
Namespace: "txpool",
2022-10-25 14:25:08 +00:00
Service: NewTxPoolAPI(apiBackend),
2016-06-20 14:47:10 +00:00
}, {
Namespace: "debug",
2022-10-25 14:25:08 +00:00
Service: NewDebugAPI(apiBackend),
2016-06-20 14:47:10 +00:00
}, {
Namespace: "eth",
2022-10-25 14:25:08 +00:00
Service: NewEthereumAccountAPI(apiBackend.AccountManager()),
2016-06-20 14:47:10 +00:00
}, {
Namespace: "personal",
2022-10-25 14:25:08 +00:00
Service: NewPersonalAccountAPI(apiBackend, nonceLock),
2016-06-20 14:47:10 +00:00
},
}
}