ethclient

package
v0.1.2 Latest Latest
Warning

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

Go to latest
Published: Mar 27, 2024 License: GPL-3.0 Imports: 29 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func LoadJWTHexFile

func LoadJWTHexFile(file string) ([]byte, error)

LoadJWTHexFile loads a hex encoded JWT secret from the provided file.

func NewFuzzer

func NewFuzzer(seed int64) *fuzz.Fuzzer

NewFuzzer returns a new fuzzer for valid ethereum types. If seed is zero, it uses current nano time as the seed.

func WithMockDeposit added in v0.1.2

func WithMockDeposit(pubkey crypto.PubKey, ether int64) func(*engineMock)

WithMockDeposit returns an option to add a deposit event to the mock.

Types

type Client

type Client interface {
	ethereum.BlockNumberReader
	ethereum.ChainIDReader
	ethereum.ChainReader
	ethereum.ChainStateReader
	ethereum.ChainSyncReader
	ethereum.ContractCaller
	ethereum.GasEstimator
	ethereum.GasPricer
	ethereum.GasPricer1559
	ethereum.LogFilterer
	ethereum.PendingStateReader
	ethereum.TransactionReader
	ethereum.TransactionSender
	HeaderByType(ctx context.Context, typ HeadType) (*types.Header, error)
	Address() string
	Close()
}

Client defines all ethereum interfaces used in omni.

type EngineClient

type EngineClient interface {
	Client

	// NewPayloadV2 creates an Eth1 block, inserts it in the chain, and returns the status of the chain.
	NewPayloadV2(ctx context.Context, params engine.ExecutableData) (engine.PayloadStatusV1, error)
	// NewPayloadV3 creates an Eth1 block, inserts it in the chain, and returns the status of the chain.
	NewPayloadV3(ctx context.Context, params engine.ExecutableData, versionedHashes []common.Hash,
		beaconRoot *common.Hash) (engine.PayloadStatusV1, error)

	// ForkchoiceUpdatedV2 has several responsibilities:
	//  - It sets the chain the head.
	//  - And/or it sets the chain's finalized block hash.
	//  - And/or it starts assembling (async) a block with the payload attributes.
	ForkchoiceUpdatedV2(ctx context.Context, update engine.ForkchoiceStateV1,
		payloadAttributes *engine.PayloadAttributes) (engine.ForkChoiceResponse, error)

	// ForkchoiceUpdatedV3 is equivalent to V2 with the addition of parent beacon block root in the payload attributes.
	ForkchoiceUpdatedV3(ctx context.Context, update engine.ForkchoiceStateV1,
		payloadAttributes *engine.PayloadAttributes) (engine.ForkChoiceResponse, error)

	// GetPayloadV2 returns a cached payload by id.
	GetPayloadV2(ctx context.Context, payloadID engine.PayloadID) (*engine.ExecutionPayloadEnvelope, error)
	// GetPayloadV3 returns a cached payload by id.
	GetPayloadV3(ctx context.Context, payloadID engine.PayloadID) (*engine.ExecutionPayloadEnvelope, error)
}

EngineClient defines the Engine API authenticated JSON-RPC endpoints. It extends the normal Client interface with the Engine API.

func NewAuthClient

func NewAuthClient(ctx context.Context, urlAddr string, jwtSecret []byte) (EngineClient, error)

NewAuthClient returns a new authenticated JSON-RPc engineClient.

func NewEngineMock

func NewEngineMock(opts ...func(mock *engineMock)) (EngineClient, error)

NewEngineMock returns a new mock engine API client.

Note only some methods are implemented, it will panic if you call an unimplemented method.

type HeadType

type HeadType string
const (
	HeadLatest    HeadType = "latest"
	HeadEarliest  HeadType = "earliest"
	HeadPending   HeadType = "pending"
	HeadSafe      HeadType = "safe"
	HeadFinalized HeadType = "finalized"
)

func (HeadType) String

func (h HeadType) String() string

func (HeadType) Verify

func (h HeadType) Verify() error

type Wrapper

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

Wrapper wraps an ethclient.Client adding metrics and wrapped errors.

func Dial

func Dial(chainName string, url string) (Wrapper, error)

Dial connects a client to the given URL.

Note if the URL is http(s), it doesn't return an error if it cannot connect to the URL. It will retry connecting on every call to a wrapped method. It will only return an error if the url is invalid.

func NewClient

func NewClient(cl *rpc.Client, chain, address string) Wrapper

NewClient wraps an *rpc.Client adding metrics and wrapped errors.

func (Wrapper) Address

func (w Wrapper) Address() string

Address returns the underlying RPC address.

func (Wrapper) BalanceAt

func (w Wrapper) BalanceAt(ctx context.Context, account common.Address, blockNumber *big.Int) (*big.Int, error)

func (Wrapper) BlockByHash

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

func (Wrapper) BlockByNumber

func (w Wrapper) BlockByNumber(ctx context.Context, number *big.Int) (*types.Block, error)

func (Wrapper) BlockNumber

func (w Wrapper) BlockNumber(ctx context.Context) (uint64, error)

func (Wrapper) CallContract

func (w Wrapper) CallContract(ctx context.Context, call ethereum.CallMsg, blockNumber *big.Int) ([]byte, error)

func (Wrapper) ChainID

func (w Wrapper) ChainID(ctx context.Context) (*big.Int, error)

func (Wrapper) Close

func (w Wrapper) Close()

Close closes the underlying RPC connection.

func (Wrapper) CodeAt

func (w Wrapper) CodeAt(ctx context.Context, account common.Address, blockNumber *big.Int) ([]byte, error)

func (Wrapper) EstimateGas

func (w Wrapper) EstimateGas(ctx context.Context, call ethereum.CallMsg) (uint64, error)

func (Wrapper) FilterLogs

func (w Wrapper) FilterLogs(ctx context.Context, q ethereum.FilterQuery) ([]types.Log, error)

func (Wrapper) HeaderByHash

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

func (Wrapper) HeaderByNumber

func (w Wrapper) HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error)

func (Wrapper) HeaderByType

func (w Wrapper) HeaderByType(ctx context.Context, typ HeadType) (*types.Header, error)

HeaderByType returns the block header for the given head type.

func (Wrapper) NonceAt

func (w Wrapper) NonceAt(ctx context.Context, account common.Address, blockNumber *big.Int) (uint64, error)

func (Wrapper) PendingBalanceAt

func (w Wrapper) PendingBalanceAt(ctx context.Context, account common.Address) (*big.Int, error)

func (Wrapper) PendingCodeAt

func (w Wrapper) PendingCodeAt(ctx context.Context, account common.Address) ([]byte, error)

func (Wrapper) PendingNonceAt

func (w Wrapper) PendingNonceAt(ctx context.Context, account common.Address) (uint64, error)

func (Wrapper) PendingStorageAt

func (w Wrapper) PendingStorageAt(ctx context.Context, account common.Address, key common.Hash) ([]byte, error)

func (Wrapper) PendingTransactionCount

func (w Wrapper) PendingTransactionCount(ctx context.Context) (uint, error)

func (Wrapper) SendTransaction

func (w Wrapper) SendTransaction(ctx context.Context, tx *types.Transaction) error

func (Wrapper) StorageAt

func (w Wrapper) StorageAt(ctx context.Context, account common.Address, key common.Hash, blockNumber *big.Int) ([]byte, error)

func (Wrapper) SubscribeFilterLogs

func (w Wrapper) SubscribeFilterLogs(ctx context.Context, q ethereum.FilterQuery, ch chan<- types.Log) (ethereum.Subscription, error)

func (Wrapper) SubscribeNewHead

func (w Wrapper) SubscribeNewHead(ctx context.Context, ch chan<- *types.Header) (ethereum.Subscription, error)

func (Wrapper) SuggestGasPrice

func (w Wrapper) SuggestGasPrice(ctx context.Context) (*big.Int, error)

func (Wrapper) SuggestGasTipCap

func (w Wrapper) SuggestGasTipCap(ctx context.Context) (*big.Int, error)

func (Wrapper) SyncProgress

func (w Wrapper) SyncProgress(ctx context.Context) (*ethereum.SyncProgress, error)

func (Wrapper) TransactionByHash

func (w Wrapper) TransactionByHash(ctx context.Context, txHash common.Hash) (*types.Transaction, bool, error)

func (Wrapper) TransactionCount

func (w Wrapper) TransactionCount(ctx context.Context, blockHash common.Hash) (uint, error)

func (Wrapper) TransactionInBlock

func (w Wrapper) TransactionInBlock(ctx context.Context, blockHash common.Hash, index uint) (*types.Transaction, error)

func (Wrapper) TransactionReceipt

func (w Wrapper) TransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error)

Directories

Path Synopsis
Command genwrap provides a code generator for ethclient.Client wrapper that adds prometheus metrics and error wrapping.
Command genwrap provides a code generator for ethclient.Client wrapper that adds prometheus metrics and error wrapping.

Jump to

Keyboard shortcuts

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