Versions in this module Expand all Collapse all v0 v0.0.2 Jul 8, 2026 v0.0.1 Jun 24, 2026 Changes in this version + type Client struct + func NewClient(ctx context.Context, rpcURL string, log logrus.FieldLogger) (*Client, error) + func (c *Client) Close() + func (c *Client) EstimateGas(ctx context.Context, msg ethereum.CallMsg) (uint64, error) + func (c *Client) EthClient() *ethclient.Client + func (c *Client) GetBalance(ctx context.Context, address common.Address) (*big.Int, error) + func (c *Client) GetBlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) + func (c *Client) GetBlockByNumber(ctx context.Context, number *big.Int) (*types.Block, error) + func (c *Client) GetChainID(ctx context.Context) (*big.Int, error) + func (c *Client) GetConfirmedNonce(ctx context.Context, address common.Address) (uint64, error) + func (c *Client) GetLatestBlock(ctx context.Context) (*types.Block, error) + func (c *Client) GetNonce(ctx context.Context, address common.Address) (uint64, error) + func (c *Client) GetStorageAt(ctx context.Context, account common.Address, slot common.Hash) ([]byte, error) + func (c *Client) GetTransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error) + func (c *Client) HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error) + func (c *Client) IsTxKnown(ctx context.Context, txHash common.Hash) (bool, error) + func (c *Client) SendTransaction(ctx context.Context, tx *types.Transaction) error + func (c *Client) SuggestGasPrice(ctx context.Context) (*big.Int, error) + func (c *Client) SuggestGasTipCap(ctx context.Context) (*big.Int, error)