eth

package
v0.0.0-...-fc77d88 Latest Latest
Warning

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

Go to latest
Published: Sep 25, 2023 License: MIT Imports: 10 Imported by: 0

Documentation

Overview

Package eth implements RPC API bindings for methods in the "eth" namespace.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AccessList

func AccessList(msg *w3protypes.Message, blockNumber *big.Int) w3protypes.CallerFactory[AccessListResponse]

AccessList requests the access list of the given message at the given blockNumber. If blockNumber is nil, the access list of the message at the latest block is requested.

func Balance

func Balance(addr common.Address, blockNumber *big.Int) w3protypes.CallerFactory[big.Int]

Balance requests the balance of the given common.Address addr at the given blockNumber. If blockNumber is nil, the balance at the latest known block is requested.

func BlockByHash

func BlockByHash(hash common.Hash) w3protypes.CallerFactory[types.Block]

BlockByHash requests the block with the given hash with full transactions.

func BlockByNumber

func BlockByNumber(number *big.Int) w3protypes.CallerFactory[types.Block]

BlockByNumber requests the block with the given number with full transactions. If number is nil, the latest block is requested.

func BlockNumber

func BlockNumber() w3protypes.CallerFactory[big.Int]

BlockNumber requests the number of the most recent block.

func BlockTxCountByHash

func BlockTxCountByHash(hash common.Hash) w3protypes.CallerFactory[uint]

BlockTxCountByHash requests the number of transactions in the block with the given hash.

func BlockTxCountByNumber

func BlockTxCountByNumber(number *big.Int) w3protypes.CallerFactory[uint]

BlockTxCountByNumber requests the number of transactions in the block with the given number.

func Call

func Call(msg *w3protypes.Message, blockNumber *big.Int, overrides w3protypes.State) w3protypes.CallerFactory[[]byte]

Call requests the output data of the given message at the given blockNumber. If blockNumber is nil, the output of the message at the latest known block is requested.

func ChainID

func ChainID() w3protypes.CallerFactory[uint64]

ChainID requests the chains ID.

func Code

func Code(addr common.Address, blockNumber *big.Int) w3protypes.CallerFactory[[]byte]

Code requests the code of the given common.Address addr at the given blockNumber. If blockNumber is nil, the code at the latest known block is requested.

func EstimateGas

func EstimateGas(msg *w3protypes.Message, blockNumber *big.Int) w3protypes.CallerFactory[uint64]

EstimateGas requests the estimated gas cost of the given message at the given blockNumber. If blockNumber is nil, the estimated gas cost of the message at the latest block is requested.

func GasPrice

func GasPrice() w3protypes.CallerFactory[big.Int]

GasPrice requests the current gas price in wei.

func HeaderByHash

func HeaderByHash(hash common.Hash) w3protypes.CallerFactory[types.Header]

HeaderByHash requests the header with the given hash.

func HeaderByNumber

func HeaderByNumber(number *big.Int) w3protypes.CallerFactory[types.Header]

HeaderByNumber requests the header with the given number. If number is nil, the latest header is requested.

func Logs

func Logs(q ethereum.FilterQuery) w3protypes.CallerFactory[[]types.Log]

Logs requests the logs of the given ethereum.FilterQuery q.

func Nonce

func Nonce(addr common.Address, blockNumber *big.Int) w3protypes.CallerFactory[uint64]

Nonce requests the nonce of the given common.Address addr at the given blockNumber. If blockNumber is nil, the nonce at the latest known block is requested.

func SendRawTx

func SendRawTx(rawTx []byte) w3protypes.CallerFactory[common.Hash]

SendRawTx sends a raw transaction to the network and returns its hash.

func SendTx

SendTx sends a signed transaction to the network and returns its hash.

func StorageAt

func StorageAt(addr common.Address, slot common.Hash, blockNumber *big.Int) w3protypes.CallerFactory[common.Hash]

StorageAt requests the storage of the given common.Address addr at the given common.Hash slot at the given blockNumber. If block number is nil, the slot at the latest known block is requested.

func Tx

Tx requests the transaction with the given hash.

func TxByBlockHashAndIndex

func TxByBlockHashAndIndex(blockHash common.Hash, index uint64) w3protypes.CallerFactory[types.Transaction]

TxByBlockHashAndIndex requests the transaction in the given block with the given index.

func TxByBlockNumberAndIndex

func TxByBlockNumberAndIndex(blockNumber *big.Int, index uint64) w3protypes.CallerFactory[types.Transaction]

TxByBlockNumberAndIndex requests the transaction in the given block with the given index.

func TxReceipt

func TxReceipt(txHash common.Hash) w3protypes.CallerFactory[types.Receipt]

TxReceipt requests the receipt of the transaction with the given hash.

func UncleByBlockHashAndIndex

func UncleByBlockHashAndIndex(hash common.Hash, index uint) w3protypes.CallerFactory[types.Header]

UncleByBlockHashAndIndex requests the uncle of the block with the given hash at the given index.

func UncleByBlockNumberAndIndex

func UncleByBlockNumberAndIndex(number *big.Int, index uint) w3protypes.CallerFactory[types.Header]

UncleByBlockNumberAndIndex requests the uncle of the block with the given number at the given index.

func UncleCountByBlockHash

func UncleCountByBlockHash(hash common.Hash) w3protypes.CallerFactory[uint]

UncleCountByBlockHash requests the number of uncles of the block with the given hash.

func UncleCountByBlockNumber

func UncleCountByBlockNumber(number *big.Int) w3protypes.CallerFactory[uint]

UncleCountByBlockNumber requests the number of uncles of the block with the given number.

Types

type AccessListResponse

type AccessListResponse struct {
	AccessList types.AccessList
	GasUsed    uint64
}

func (*AccessListResponse) UnmarshalJSON

func (resp *AccessListResponse) UnmarshalJSON(data []byte) error

UnmarshalJSON implements the json.Unmarshaler.

type CallFuncFactory

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

func CallFunc

func CallFunc(fn w3protypes.Func, contract common.Address, args ...any) *CallFuncFactory

CallFunc requests the returns of Func fn at common.Address contract with the given args.

func (*CallFuncFactory) AtBlock

func (f *CallFuncFactory) AtBlock(blockNumber *big.Int) *CallFuncFactory

func (*CallFuncFactory) CreateRequest

func (f *CallFuncFactory) CreateRequest() (rpc.BatchElem, error)

func (*CallFuncFactory) HandleResponse

func (f *CallFuncFactory) HandleResponse(elem rpc.BatchElem) error

func (*CallFuncFactory) Overrides

func (f *CallFuncFactory) Overrides(overrides w3protypes.State) *CallFuncFactory

func (*CallFuncFactory) Returns

func (f *CallFuncFactory) Returns(returns ...any) w3protypes.Caller

Jump to

Keyboard shortcuts

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