erigon-pulse/cmd/rpcdaemon/commands/erigon_api.go
Alexandr Borodulin bbb3cc978f
Starknet getcode (#3038)
* deploy_cairo_smartcontract

* deploy_cairo_smartcontract / 2

Add new transaction type for cairo and vm factory

* starknet_getcode

* deploy_cairo_smartcontract / 3

* deploy_cairo_smartcontract / 4

* deploy_cairo_smartcontract / 5

Co-authored-by: Aleksandr Borodulin <a.borodulin@axioma.lv>
2021-12-06 14:58:53 +00:00

50 lines
1.6 KiB
Go

package commands
import (
"context"
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/erigon/cmd/rpcdaemon/services"
"github.com/ledgerwatch/erigon/common"
"github.com/ledgerwatch/erigon/core/types"
"github.com/ledgerwatch/erigon/p2p"
"github.com/ledgerwatch/erigon/rpc"
)
// 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)
// 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)
// Issuance / reward related (see ./erigon_issuance.go)
// BlockReward(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error)
// UncleReward(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error)
Issuance(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, 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 services.ApiBackend
}
// NewErigonAPI returns ErigonImpl instance
func NewErigonAPI(base *BaseAPI, db kv.RoDB, eth services.ApiBackend) *ErigonImpl {
return &ErigonImpl{
BaseAPI: base,
db: db,
ethBackend: eth,
}
}