eth

package
v0.28.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 16, 2024 License: GPL-3.0 Imports: 45 Imported by: 0

Documentation

Overview

Package eth implements the Quai protocol.

Index

Constants

View Source
const AccountRangeMaxResults = 256

AccountRangeMaxResults is the maximum number of results to be returned per call

View Source
const (
	MaxBlockFetchDist = 50
)

Variables

This section is empty.

Functions

This section is empty.

Types

type BadBlockArgs

type BadBlockArgs struct {
	Hash  common.Hash            `json:"hash"`
	Block map[string]interface{} `json:"block"`
	RLP   string                 `json:"rlp"`
}

BadBlockArgs represents the entries in the list returned when bad blocks are queried.

type Config

type Config = ethconfig.Config

Config contains the configuration options of the ETH protocol. Deprecated: use ethconfig.Config instead.

type PrivateAdminAPI

type PrivateAdminAPI struct {
	// contains filtered or unexported fields
}

PrivateAdminAPI is the collection of Quai full node-related APIs exposed over the private admin endpoint.

func NewPrivateAdminAPI

func NewPrivateAdminAPI(eth *Quai) *PrivateAdminAPI

NewPrivateAdminAPI creates a new API definition for the full node private admin methods of the Quai service.

func (*PrivateAdminAPI) ExportChain

func (api *PrivateAdminAPI) ExportChain(file string, first *uint64, last *uint64) (bool, error)

ExportChain exports the current blockchain into a local file, or a range of blocks if first and last are non-nil

func (*PrivateAdminAPI) ImportChain

func (api *PrivateAdminAPI) ImportChain(file string) (bool, error)

ImportChain imports a blockchain from a local file.

type PrivateDebugAPI

type PrivateDebugAPI struct {
	// contains filtered or unexported fields
}

PrivateDebugAPI is the collection of Quai full node APIs exposed over the private debugging endpoint.

func NewPrivateDebugAPI

func NewPrivateDebugAPI(eth *Quai) *PrivateDebugAPI

NewPrivateDebugAPI creates a new API definition for the full node-related private debug methods of the Quai service.

func (*PrivateDebugAPI) GetBadBlocks

func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]*BadBlockArgs, error)

GetBadBlocks returns a list of the last 'bad blocks' that the client has seen on the network and returns them as a JSON list of block-hashes

func (*PrivateDebugAPI) GetModifiedAccountsByHash

func (api *PrivateDebugAPI) GetModifiedAccountsByHash(startHash common.Hash, endHash *common.Hash) ([]common.Address, error)

GetModifiedAccountsByHash returns all accounts that have changed between the two blocks specified. A change is defined as a difference in nonce, balance, code hash, or storage hash.

With one parameter, returns the list of accounts modified in the specified block.

func (*PrivateDebugAPI) GetModifiedAccountsByNumber

func (api *PrivateDebugAPI) GetModifiedAccountsByNumber(startNum uint64, endNum *uint64) ([]common.Address, error)

GetModifiedAccountsByNumber returns all accounts that have changed between the two blocks specified. A change is defined as a difference in nonce, balance, code hash, or storage hash.

With one parameter, returns the list of accounts modified in the specified block.

func (*PrivateDebugAPI) Preimage

func (api *PrivateDebugAPI) Preimage(ctx context.Context, hash common.Hash) (hexutil.Bytes, error)

Preimage is a debug API function that returns the preimage for a sha3 hash, if known.

func (*PrivateDebugAPI) StorageRangeAt

func (api *PrivateDebugAPI) StorageRangeAt(blockHash common.Hash, txIndex int, contractAddress common.Address, keyStart hexutil.Bytes, maxResult int) (StorageRangeResult, error)

StorageRangeAt returns the storage at the given block height and transaction index.

type PrivateMinerAPI

type PrivateMinerAPI struct {
	// contains filtered or unexported fields
}

PrivateMinerAPI provides private RPC methods to control the miner. These methods can be abused by external users and must be considered insecure for use by untrusted users.

func NewPrivateMinerAPI

func NewPrivateMinerAPI(e *Quai) *PrivateMinerAPI

NewPrivateMinerAPI create a new RPC service which controls the miner of this node.

func (*PrivateMinerAPI) SetEtherbase

func (api *PrivateMinerAPI) SetEtherbase(etherbase common.Address) bool

SetEtherbase sets the etherbase of the miner

func (*PrivateMinerAPI) SetExtra

func (api *PrivateMinerAPI) SetExtra(extra string) (bool, error)

SetExtra sets the extra data string that is included when this miner mines a block.

func (*PrivateMinerAPI) SetGasLimit

func (api *PrivateMinerAPI) SetGasLimit(gasLimit hexutil.Uint64) bool

SetGasLimit sets the gaslimit to target towards during mining.

func (*PrivateMinerAPI) SetGasPrice

func (api *PrivateMinerAPI) SetGasPrice(gasPrice hexutil.Big) bool

SetGasPrice sets the minimum accepted gas price for the miner.

func (*PrivateMinerAPI) SetRecommitInterval

func (api *PrivateMinerAPI) SetRecommitInterval(interval int)

SetRecommitInterval updates the interval for miner sealing work recommitting.

type PublicDebugAPI

type PublicDebugAPI struct {
	// contains filtered or unexported fields
}

PublicDebugAPI is the collection of Quai full node APIs exposed over the public debugging endpoint.

func NewPublicDebugAPI

func NewPublicDebugAPI(eth *Quai) *PublicDebugAPI

NewPublicDebugAPI creates a new API definition for the full node- related public debug methods of the Quai service.

func (*PublicDebugAPI) AccountRange

func (api *PublicDebugAPI) AccountRange(blockNrOrHash rpc.BlockNumberOrHash, start []byte, maxResults int, nocode, nostorage, incompletes bool) (state.IteratorDump, error)

AccountRange enumerates all accounts in the given block and start point in paging request

func (*PublicDebugAPI) DumpBlock

func (api *PublicDebugAPI) DumpBlock(blockNr rpc.BlockNumber) (state.Dump, error)

DumpBlock retrieves the entire state of the database at a given block.

type PublicMinerAPI

type PublicMinerAPI struct {
	// contains filtered or unexported fields
}

PublicMinerAPI provides an API to control the miner. It offers only methods that operate on data that pose no security risk when it is publicly accessible.

func NewPublicMinerAPI

func NewPublicMinerAPI(e *Quai) *PublicMinerAPI

NewPublicMinerAPI create a new PublicMinerAPI instance.

func (*PublicMinerAPI) Mining

func (api *PublicMinerAPI) Mining() bool

Mining returns an indication if this node is currently mining.

type PublicQuaiAPI

type PublicQuaiAPI struct {
	// contains filtered or unexported fields
}

PublicQuaiAPI provides an API to access Quai full node-related information.

func NewPublicQuaiAPI

func NewPublicQuaiAPI(e *Quai) *PublicQuaiAPI

NewPublicQuaiAPI creates a new Quai protocol API for full nodes.

func (*PublicQuaiAPI) Coinbase

func (api *PublicQuaiAPI) Coinbase() (common.Address, error)

Coinbase is the address that mining rewards will be send to (alias for Etherbase)

func (*PublicQuaiAPI) Etherbase

func (api *PublicQuaiAPI) Etherbase() (common.Address, error)

Etherbase is the address that mining rewards will be send to

func (*PublicQuaiAPI) Hashrate

func (api *PublicQuaiAPI) Hashrate() hexutil.Uint64

Hashrate returns the POW hashrate

type Quai

type Quai struct {
	APIBackend *QuaiAPIBackend
	// contains filtered or unexported fields
}

Quai implements the Quai full node service.

func New

func New(stack *node.Node, config *ethconfig.Config) (*Quai, error)

New creates a new Quai object (including the initialisation of the common Quai object)

func (*Quai) APIs

func (s *Quai) APIs() []rpc.API

APIs return the collection of RPC services the go-quai package offers. NOTE, some of these services probably need to be moved to somewhere else.

func (*Quai) ArchiveMode

func (s *Quai) ArchiveMode() bool

func (*Quai) BloomIndexer

func (s *Quai) BloomIndexer() *core.ChainIndexer

func (*Quai) ChainDb

func (s *Quai) ChainDb() ethdb.Database

func (*Quai) Core

func (s *Quai) Core() *core.Core

func (*Quai) Downloader

func (s *Quai) Downloader() *downloader.Downloader

func (*Quai) Engine

func (s *Quai) Engine() consensus.Engine

func (*Quai) Etherbase

func (s *Quai) Etherbase() (eb common.Address, err error)

func (*Quai) EventMux

func (s *Quai) EventMux() *event.TypeMux

func (*Quai) IsListening

func (s *Quai) IsListening() bool

func (*Quai) Protocols

func (s *Quai) Protocols() []p2p.Protocol

Protocols returns all the currently configured network protocols to start.

func (*Quai) Start

func (s *Quai) Start() error

Start implements node.Lifecycle, starting all internal goroutines needed by the Quai protocol implementation.

func (*Quai) Stop

func (s *Quai) Stop() error

Stop implements node.Lifecycle, terminating all internal goroutines used by the Quai protocol.

func (*Quai) Synced

func (s *Quai) Synced() bool

type QuaiAPIBackend

type QuaiAPIBackend struct {
	// contains filtered or unexported fields
}

QuaiAPIBackend implements quaiapi.Backend for full nodes

func (*QuaiAPIBackend) AddPendingEtxs

func (b *QuaiAPIBackend) AddPendingEtxs(pEtxs types.PendingEtxs) error

func (*QuaiAPIBackend) AddPendingEtxsRollup

func (b *QuaiAPIBackend) AddPendingEtxsRollup(pEtxsRollup types.PendingEtxsRollup) error

func (*QuaiAPIBackend) Append

func (b *QuaiAPIBackend) Append(header *types.Header, manifest types.BlockManifest, domPendingHeader *types.Header, domTerminus common.Hash, domOrigin bool, newInboundEtxs types.Transactions) (types.Transactions, bool, bool, error)

func (*QuaiAPIBackend) BlockByHash

func (b *QuaiAPIBackend) BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error)

func (*QuaiAPIBackend) BlockByNumber

func (b *QuaiAPIBackend) BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error)

func (*QuaiAPIBackend) BlockByNumberOrHash

func (b *QuaiAPIBackend) BlockByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Block, error)

func (*QuaiAPIBackend) BloomStatus

func (b *QuaiAPIBackend) BloomStatus() (uint64, uint64)

func (*QuaiAPIBackend) CalcOrder

func (b *QuaiAPIBackend) CalcOrder(header *types.Header) (*big.Int, int, error)

CalcOrder returns the order of the block within the hierarchy of chains

func (*QuaiAPIBackend) ChainConfig

func (b *QuaiAPIBackend) ChainConfig() *params.ChainConfig

ChainConfig returns the active chain configuration.

func (*QuaiAPIBackend) ChainDb

func (b *QuaiAPIBackend) ChainDb() ethdb.Database

func (*QuaiAPIBackend) ConstructLocalMinedBlock

func (b *QuaiAPIBackend) ConstructLocalMinedBlock(header *types.Header) (*types.Block, error)

func (*QuaiAPIBackend) CurrentBlock

func (b *QuaiAPIBackend) CurrentBlock() *types.Block

func (*QuaiAPIBackend) CurrentHeader

func (b *QuaiAPIBackend) CurrentHeader() *types.Header

func (*QuaiAPIBackend) CurrentLogEntropy

func (b *QuaiAPIBackend) CurrentLogEntropy() *big.Int

CurrentLogEntropy returns the logarithm of the total entropy reduction since genesis for our current head block

func (*QuaiAPIBackend) DownloadBlocksInManifest added in v0.19.0

func (b *QuaiAPIBackend) DownloadBlocksInManifest(hash common.Hash, manifest types.BlockManifest, entropy *big.Int)

func (*QuaiAPIBackend) Downloader

func (b *QuaiAPIBackend) Downloader() *downloader.Downloader

func (*QuaiAPIBackend) Engine

func (b *QuaiAPIBackend) Engine() consensus.Engine

func (*QuaiAPIBackend) EventMux

func (b *QuaiAPIBackend) EventMux() *event.TypeMux

func (*QuaiAPIBackend) ExtRPCEnabled

func (b *QuaiAPIBackend) ExtRPCEnabled() bool

func (*QuaiAPIBackend) FeeHistory

func (b *QuaiAPIBackend) FeeHistory(ctx context.Context, blockCount int, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (firstBlock *big.Int, reward [][]*big.Int, baseFee []*big.Int, gasUsedRatio []float64, err error)

func (*QuaiAPIBackend) GenerateRecoveryPendingHeader

func (b *QuaiAPIBackend) GenerateRecoveryPendingHeader(pendingHeader *types.Header, checkpointHashes types.Termini) error

func (*QuaiAPIBackend) GetBloom

func (b *QuaiAPIBackend) GetBloom(hash common.Hash) (*types.Bloom, error)

GetBloom returns the bloom for the given block hash

func (*QuaiAPIBackend) GetEVM

func (b *QuaiAPIBackend) GetEVM(ctx context.Context, msg core.Message, state *state.StateDB, header *types.Header, vmConfig *vm.Config) (*vm.EVM, func() error, error)

func (*QuaiAPIBackend) GetLogs

func (b *QuaiAPIBackend) GetLogs(ctx context.Context, hash common.Hash) ([][]*types.Log, error)

func (*QuaiAPIBackend) GetManifest

func (b *QuaiAPIBackend) GetManifest(blockHash common.Hash) (types.BlockManifest, error)

func (*QuaiAPIBackend) GetPendingEtxsFromSub added in v0.19.0

func (b *QuaiAPIBackend) GetPendingEtxsFromSub(hash common.Hash, location common.Location) (types.PendingEtxs, error)

func (*QuaiAPIBackend) GetPendingEtxsRollupFromSub added in v0.19.0

func (b *QuaiAPIBackend) GetPendingEtxsRollupFromSub(hash common.Hash, location common.Location) (types.PendingEtxsRollup, error)

func (*QuaiAPIBackend) GetPendingHeader

func (b *QuaiAPIBackend) GetPendingHeader() (*types.Header, error)

func (*QuaiAPIBackend) GetPoolNonce

func (b *QuaiAPIBackend) GetPoolNonce(ctx context.Context, addr common.Address) (uint64, error)

func (*QuaiAPIBackend) GetPoolTransaction

func (b *QuaiAPIBackend) GetPoolTransaction(hash common.Hash) *types.Transaction

func (*QuaiAPIBackend) GetPoolTransactions

func (b *QuaiAPIBackend) GetPoolTransactions() (types.Transactions, error)

func (*QuaiAPIBackend) GetReceipts

func (b *QuaiAPIBackend) GetReceipts(ctx context.Context, hash common.Hash) (types.Receipts, error)

func (*QuaiAPIBackend) GetSubManifest

func (b *QuaiAPIBackend) GetSubManifest(slice common.Location, blockHash common.Hash) (types.BlockManifest, error)

func (*QuaiAPIBackend) GetTransaction

func (b *QuaiAPIBackend) GetTransaction(ctx context.Context, txHash common.Hash) (*types.Transaction, common.Hash, uint64, uint64, error)

func (*QuaiAPIBackend) HeaderByHash

func (b *QuaiAPIBackend) HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error)

func (*QuaiAPIBackend) HeaderByNumber

func (b *QuaiAPIBackend) HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error)

func (*QuaiAPIBackend) HeaderByNumberOrHash

func (b *QuaiAPIBackend) HeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*types.Header, error)

func (*QuaiAPIBackend) InsertBlock

func (b *QuaiAPIBackend) InsertBlock(ctx context.Context, block *types.Block) (int, error)

func (*QuaiAPIBackend) NewGenesisPendingHeader

func (b *QuaiAPIBackend) NewGenesisPendingHeader(pendingHeader *types.Header)

func (*QuaiAPIBackend) PendingBlock

func (b *QuaiAPIBackend) PendingBlock() *types.Block

func (*QuaiAPIBackend) PendingBlockAndReceipts

func (b *QuaiAPIBackend) PendingBlockAndReceipts() (*types.Block, types.Receipts)

func (*QuaiAPIBackend) ProcessingState

func (b *QuaiAPIBackend) ProcessingState() bool

func (*QuaiAPIBackend) RPCGasCap

func (b *QuaiAPIBackend) RPCGasCap() uint64

func (*QuaiAPIBackend) RPCTxFeeCap

func (b *QuaiAPIBackend) RPCTxFeeCap() float64

func (*QuaiAPIBackend) RequestDomToAppendOrFetch

func (b *QuaiAPIBackend) RequestDomToAppendOrFetch(hash common.Hash, entropy *big.Int, order int)

func (*QuaiAPIBackend) SendTx

func (b *QuaiAPIBackend) SendTx(ctx context.Context, signedTx *types.Transaction) error

func (*QuaiAPIBackend) ServiceFilter

func (b *QuaiAPIBackend) ServiceFilter(ctx context.Context, session *bloombits.MatcherSession)

func (*QuaiAPIBackend) SetSyncTarget added in v0.21.0

func (b *QuaiAPIBackend) SetSyncTarget(header *types.Header)

func (*QuaiAPIBackend) StateAndHeaderByNumber

func (b *QuaiAPIBackend) StateAndHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*state.StateDB, *types.Header, error)

func (*QuaiAPIBackend) StateAndHeaderByNumberOrHash

func (b *QuaiAPIBackend) StateAndHeaderByNumberOrHash(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (*state.StateDB, *types.Header, error)

func (*QuaiAPIBackend) StateAtBlock

func (b *QuaiAPIBackend) StateAtBlock(ctx context.Context, block *types.Block, reexec uint64, base *state.StateDB, checkLive bool) (*state.StateDB, error)

func (*QuaiAPIBackend) StateAtTransaction

func (b *QuaiAPIBackend) StateAtTransaction(ctx context.Context, block *types.Block, txIndex int, reexec uint64) (core.Message, vm.BlockContext, *state.StateDB, error)

func (*QuaiAPIBackend) Stats

func (b *QuaiAPIBackend) Stats() (pending int, queued int)

func (*QuaiAPIBackend) SubRelayPendingHeader

func (b *QuaiAPIBackend) SubRelayPendingHeader(pendingHeader types.PendingHeader, newEntropy *big.Int, location common.Location, subReorg bool, order int)

func (*QuaiAPIBackend) SubscribeChainEvent

func (b *QuaiAPIBackend) SubscribeChainEvent(ch chan<- core.ChainEvent) event.Subscription

func (*QuaiAPIBackend) SubscribeChainHeadEvent

func (b *QuaiAPIBackend) SubscribeChainHeadEvent(ch chan<- core.ChainHeadEvent) event.Subscription

func (*QuaiAPIBackend) SubscribeChainSideEvent

func (b *QuaiAPIBackend) SubscribeChainSideEvent(ch chan<- core.ChainSideEvent) event.Subscription

func (*QuaiAPIBackend) SubscribeLogsEvent

func (b *QuaiAPIBackend) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscription

func (*QuaiAPIBackend) SubscribeNewTxsEvent

func (b *QuaiAPIBackend) SubscribeNewTxsEvent(ch chan<- core.NewTxsEvent) event.Subscription

func (*QuaiAPIBackend) SubscribePendingHeaderEvent

func (b *QuaiAPIBackend) SubscribePendingHeaderEvent(ch chan<- *types.Header) event.Subscription

func (*QuaiAPIBackend) SubscribePendingLogsEvent

func (b *QuaiAPIBackend) SubscribePendingLogsEvent(ch chan<- []*types.Log) event.Subscription

func (*QuaiAPIBackend) SubscribeRemovedLogsEvent

func (b *QuaiAPIBackend) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription

func (*QuaiAPIBackend) SuggestGasTipCap

func (b *QuaiAPIBackend) SuggestGasTipCap(ctx context.Context) (*big.Int, error)

func (*QuaiAPIBackend) SyncProgress

func (b *QuaiAPIBackend) SyncProgress() quai.SyncProgress

func (*QuaiAPIBackend) TotalLogS

func (b *QuaiAPIBackend) TotalLogS(header *types.Header) *big.Int

TotalLogS returns the total entropy reduction if the chain since genesis to the given header

func (*QuaiAPIBackend) TxPool

func (b *QuaiAPIBackend) TxPool() *core.TxPool

func (*QuaiAPIBackend) TxPoolContent

func (*QuaiAPIBackend) TxPoolContentFrom

func (b *QuaiAPIBackend) TxPoolContentFrom(addr common.Address) (types.Transactions, types.Transactions)

func (*QuaiAPIBackend) UpdateDom

func (b *QuaiAPIBackend) UpdateDom(oldTerminus common.Hash, pendingHeader types.PendingHeader, location common.Location)

func (*QuaiAPIBackend) WriteBlock

func (b *QuaiAPIBackend) WriteBlock(block *types.Block)

type StorageRangeResult

type StorageRangeResult struct {
	Storage storageMap   `json:"storage"`
	NextKey *common.Hash `json:"nextKey"` // nil if Storage includes the last key in the trie.
}

StorageRangeResult is the result of a debug_storageRangeAt API call.

Directories

Path Synopsis
Package abi implements the Quai ABI (Application Binary Interface).
Package abi implements the Quai ABI (Application Binary Interface).
Package downloader contains the manual full chain synchronisation.
Package downloader contains the manual full chain synchronisation.
Package ethconfig contains the configuration of the ETH and LES protocols.
Package ethconfig contains the configuration of the ETH and LES protocols.
Package fetcher contains the announcement based header, blocks or transaction synchronisation.
Package fetcher contains the announcement based header, blocks or transaction synchronisation.
Package filters implements an quai filtering system for block, transactions and log events.
Package filters implements an quai filtering system for block, transactions and log events.
protocols
eth

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL