mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 13:07:17 +00:00
12cf311b7c
* add_abigen_error_handle * add abigen error type test code * add field timestamp in `eth_getLogs` api add field timestamp in `eth_getLogs` api * undo add field timestamp in `eth_getLogs` * add `erigon_getLogs` api and add field `timestamp` add `erigon_getLogs` api and add field `timestamp` * feat: add `erigon_getLogs` with timestamp field to erigon rpcdaemon feat: add `erigon_getLogs` with timestamp field to erigon rpcdaemon * fix: issue `4982` roaring out of range fix: issue 4982 roaring out of range * convert rangeEnd to latest convert rangeEnd to latest when range end is a big value that go out of range of MaxUint32 * add begin condition add begin condition in case of bigger than latest block * add annotation to unreachable code
57 lines
2.1 KiB
Go
57 lines
2.1 KiB
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
ethFilters "github.com/ledgerwatch/erigon/eth/filters"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/kv"
|
|
"github.com/ledgerwatch/erigon/common"
|
|
"github.com/ledgerwatch/erigon/common/hexutil"
|
|
"github.com/ledgerwatch/erigon/core/types"
|
|
"github.com/ledgerwatch/erigon/p2p"
|
|
"github.com/ledgerwatch/erigon/rpc"
|
|
"github.com/ledgerwatch/erigon/turbo/rpchelper"
|
|
)
|
|
|
|
// ErigonAPI Erigon specific routines
|
|
type ErigonAPI interface {
|
|
// System related (see ./erigon_system.go)
|
|
Forks(ctx context.Context) (Forks, error)
|
|
|
|
// Blocks related (see ./erigon_blocks.go)
|
|
GetHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error)
|
|
GetHeaderByHash(_ context.Context, hash common.Hash) (*types.Header, error)
|
|
GetBlockByTimestamp(ctx context.Context, timeStamp rpc.Timestamp, fullTx bool) (map[string]interface{}, error)
|
|
GetBalanceChangesInBlock(ctx context.Context, blockNrOrHash rpc.BlockNumberOrHash) (map[common.Address]*hexutil.Big, error)
|
|
|
|
// Receipt related (see ./erigon_receipts.go)
|
|
GetLogsByHash(ctx context.Context, hash common.Hash) ([][]*types.Log, error)
|
|
//GetLogsByNumber(ctx context.Context, number rpc.BlockNumber) ([][]*types.Log, error)
|
|
GetLogs(ctx context.Context, crit ethFilters.FilterCriteria) ([]*types.Log, error)
|
|
|
|
// WatchTheBurn / reward related (see ./erigon_issuance.go)
|
|
WatchTheBurn(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error)
|
|
|
|
// CumulativeChainTraffic / related to chain traffic (see ./erigon_cumulative_index.go)
|
|
CumulativeChainTraffic(ctx context.Context, blockNr rpc.BlockNumber) (ChainTraffic, error)
|
|
|
|
// NodeInfo returns a collection of metadata known about the host.
|
|
NodeInfo(ctx context.Context) ([]p2p.NodeInfo, error)
|
|
}
|
|
|
|
// ErigonImpl is implementation of the ErigonAPI interface
|
|
type ErigonImpl struct {
|
|
*BaseAPI
|
|
db kv.RoDB
|
|
ethBackend rpchelper.ApiBackend
|
|
}
|
|
|
|
// NewErigonAPI returns ErigonImpl instance
|
|
func NewErigonAPI(base *BaseAPI, db kv.RoDB, eth rpchelper.ApiBackend) *ErigonImpl {
|
|
return &ErigonImpl{
|
|
BaseAPI: base,
|
|
db: db,
|
|
ethBackend: eth,
|
|
}
|
|
}
|