Documentation ¶
Index ¶
- type MiningService
- type RemoteBackend
- func (back *RemoteBackend) AddPeer(ctx context.Context, request *remote.AddPeerRequest) (*remote.AddPeerReply, error)
- func (back *RemoteBackend) BadHeaderNumber(ctx context.Context, tx kv.Getter, hash common.Hash) (blockNum *uint64, err error)
- func (back *RemoteBackend) BlockByHash(ctx context.Context, db kv.Tx, hash common.Hash) (*types.Block, error)
- func (back *RemoteBackend) BlockByNumber(ctx context.Context, db kv.Tx, number uint64) (*types.Block, error)
- func (back *RemoteBackend) BlockWithSenders(ctx context.Context, tx kv.Getter, hash common.Hash, blockNum uint64) (block *types.Block, senders []common.Address, err error)
- func (back *RemoteBackend) Body(ctx context.Context, tx kv.Getter, hash common.Hash, blockNum uint64) (body *types.Body, txAmount uint32, err error)
- func (back *RemoteBackend) BodyRlp(ctx context.Context, tx kv.Getter, hash common.Hash, blockNum uint64) (bodyRlp rlp.RawValue, err error)
- func (back *RemoteBackend) BodyWithTransactions(ctx context.Context, tx kv.Getter, hash common.Hash, blockNum uint64) (body *types.Body, err error)
- func (back *RemoteBackend) BorSnapshots() services.BlockSnapshots
- func (back *RemoteBackend) CanPruneTo(currentBlockInDB uint64) (canPruneBlocksTo uint64)
- func (back *RemoteBackend) CanonicalHash(ctx context.Context, tx kv.Getter, blockNum uint64) (common.Hash, error)
- func (back *RemoteBackend) ClientVersion(ctx context.Context) (string, error)
- func (back *RemoteBackend) CurrentBlock(db kv.Tx) (*types.Block, error)
- func (back *RemoteBackend) EnsureVersionCompatibility() bool
- func (back *RemoteBackend) Etherbase(ctx context.Context) (common.Address, error)
- func (back *RemoteBackend) EventLookup(ctx context.Context, tx kv.Getter, txnHash common.Hash) (uint64, bool, error)
- func (back *RemoteBackend) EventsByBlock(ctx context.Context, tx kv.Tx, hash common.Hash, blockNum uint64) ([]rlp.RawValue, error)
- func (back *RemoteBackend) FreezingCfg() ethconfig.BlocksFreezing
- func (back *RemoteBackend) FrozenBlocks() uint64
- func (back *RemoteBackend) FrozenBorBlocks() uint64
- func (back *RemoteBackend) FrozenFiles() (list []string)
- func (back *RemoteBackend) HasSenders(ctx context.Context, tx kv.Getter, hash common.Hash, blockNum uint64) (bool, error)
- func (back *RemoteBackend) Header(ctx context.Context, tx kv.Getter, hash common.Hash, blockNum uint64) (*types.Header, error)
- func (back *RemoteBackend) HeaderByHash(ctx context.Context, tx kv.Getter, hash common.Hash) (*types.Header, error)
- func (back *RemoteBackend) HeaderByNumber(ctx context.Context, tx kv.Getter, blockNum uint64) (*types.Header, error)
- func (back *RemoteBackend) HeadersRange(ctx context.Context, walker func(header *types.Header) error) error
- func (back *RemoteBackend) NetPeerCount(ctx context.Context) (uint64, error)
- func (back *RemoteBackend) NetVersion(ctx context.Context) (uint64, error)
- func (back *RemoteBackend) NodeInfo(ctx context.Context, limit uint32) ([]p2p.NodeInfo, error)
- func (back *RemoteBackend) Peers(ctx context.Context) ([]*p2p.PeerInfo, error)
- func (back *RemoteBackend) PendingBlock(ctx context.Context) (*types.Block, error)
- func (back *RemoteBackend) ProtocolVersion(ctx context.Context) (uint64, error)
- func (back *RemoteBackend) RawTransactions(ctx context.Context, tx kv.Getter, fromBlock, toBlock uint64) (txs [][]byte, err error)
- func (back *RemoteBackend) ReadAncestor(db kv.Getter, hash common.Hash, number, ancestor uint64, ...) (common.Hash, uint64)
- func (back *RemoteBackend) Snapshots() services.BlockSnapshots
- func (back *RemoteBackend) Span(ctx context.Context, tx kv.Getter, spanId uint64) ([]byte, error)
- func (back *RemoteBackend) Subscribe(ctx context.Context, onNewEvent func(*remote.SubscribeReply)) error
- func (back *RemoteBackend) SubscribeLogs(ctx context.Context, onNewLogs func(reply *remote.SubscribeLogsReply), ...) error
- func (back *RemoteBackend) TxnByIdxInBlock(ctx context.Context, tx kv.Getter, blockNum uint64, i int) (types.Transaction, error)
- func (back *RemoteBackend) TxnLookup(ctx context.Context, tx kv.Getter, txnHash common.Hash) (uint64, bool, error)
- func (back *RemoteBackend) TxsV3Enabled() bool
- type TxPoolService
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MiningService ¶
type MiningService struct { txpool.MiningClient // contains filtered or unexported fields }
func NewMiningService ¶
func NewMiningService(client txpool.MiningClient) *MiningService
func (*MiningService) EnsureVersionCompatibility ¶
func (s *MiningService) EnsureVersionCompatibility() bool
type RemoteBackend ¶
type RemoteBackend struct {
// contains filtered or unexported fields
}
func NewRemoteBackend ¶
func NewRemoteBackend(client remote.ETHBACKENDClient, db kv.RoDB, blockReader services.FullBlockReader) *RemoteBackend
func (*RemoteBackend) AddPeer ¶
func (back *RemoteBackend) AddPeer(ctx context.Context, request *remote.AddPeerRequest) (*remote.AddPeerReply, error)
func (*RemoteBackend) BadHeaderNumber ¶
func (*RemoteBackend) BlockByHash ¶
func (*RemoteBackend) BlockByNumber ¶
func (*RemoteBackend) BlockWithSenders ¶
func (*RemoteBackend) BodyWithTransactions ¶
func (*RemoteBackend) BorSnapshots ¶
func (back *RemoteBackend) BorSnapshots() services.BlockSnapshots
func (*RemoteBackend) CanPruneTo ¶
func (back *RemoteBackend) CanPruneTo(currentBlockInDB uint64) (canPruneBlocksTo uint64)
func (*RemoteBackend) CanonicalHash ¶
func (*RemoteBackend) ClientVersion ¶
func (back *RemoteBackend) ClientVersion(ctx context.Context) (string, error)
func (*RemoteBackend) CurrentBlock ¶
func (*RemoteBackend) EnsureVersionCompatibility ¶
func (back *RemoteBackend) EnsureVersionCompatibility() bool
func (*RemoteBackend) EventLookup ¶
func (*RemoteBackend) EventsByBlock ¶
func (*RemoteBackend) FreezingCfg ¶
func (back *RemoteBackend) FreezingCfg() ethconfig.BlocksFreezing
func (*RemoteBackend) FrozenBlocks ¶
func (back *RemoteBackend) FrozenBlocks() uint64
func (*RemoteBackend) FrozenBorBlocks ¶
func (back *RemoteBackend) FrozenBorBlocks() uint64
func (*RemoteBackend) FrozenFiles ¶
func (back *RemoteBackend) FrozenFiles() (list []string)
func (*RemoteBackend) HasSenders ¶
func (*RemoteBackend) HeaderByHash ¶
func (*RemoteBackend) HeaderByNumber ¶
func (*RemoteBackend) HeadersRange ¶
func (*RemoteBackend) NetPeerCount ¶
func (back *RemoteBackend) NetPeerCount(ctx context.Context) (uint64, error)
func (*RemoteBackend) NetVersion ¶
func (back *RemoteBackend) NetVersion(ctx context.Context) (uint64, error)
func (*RemoteBackend) PendingBlock ¶
func (*RemoteBackend) ProtocolVersion ¶
func (back *RemoteBackend) ProtocolVersion(ctx context.Context) (uint64, error)
func (*RemoteBackend) RawTransactions ¶
func (*RemoteBackend) ReadAncestor ¶
func (*RemoteBackend) Snapshots ¶
func (back *RemoteBackend) Snapshots() services.BlockSnapshots
func (*RemoteBackend) Subscribe ¶
func (back *RemoteBackend) Subscribe(ctx context.Context, onNewEvent func(*remote.SubscribeReply)) error
func (*RemoteBackend) SubscribeLogs ¶
func (back *RemoteBackend) SubscribeLogs(ctx context.Context, onNewLogs func(reply *remote.SubscribeLogsReply), requestor *atomic.Value) error
func (*RemoteBackend) TxnByIdxInBlock ¶
func (back *RemoteBackend) TxnByIdxInBlock(ctx context.Context, tx kv.Getter, blockNum uint64, i int) (types.Transaction, error)
func (*RemoteBackend) TxsV3Enabled ¶
func (back *RemoteBackend) TxsV3Enabled() bool
type TxPoolService ¶
type TxPoolService struct { txpooproto.TxpoolClient // contains filtered or unexported fields }
func NewTxPoolService ¶
func NewTxPoolService(client txpooproto.TxpoolClient) *TxPoolService
func (*TxPoolService) EnsureVersionCompatibility ¶
func (s *TxPoolService) EnsureVersionCompatibility() bool
Click to show internal directories.
Click to hide internal directories.