Expand description
Re-exports§
pub use bundle::EthBundleApiServer;
pub use bundle::EthCallBundleApiServer;
pub use core::EthApiServer;
pub use core::FullEthApiServer;
pub use ext::L2EthApiExtServer;
pub use filter::EngineEthFilter;
pub use filter::EthFilterApiServer;
pub use filter::QueryLimits;
pub use node::RpcNodeCore;
pub use node::RpcNodeCoreExt;
pub use pubsub::EthPubSubApiServer;
pub use types::EthApiTypes;
pub use types::FullEthApiTypes;
pub use types::RpcBlock;
pub use types::RpcHeader;
pub use types::RpcReceipt;
pub use bundle::EthBundleApiClient;
client
pub use bundle::EthCallBundleApiClient;
client
pub use core::EthApiClient;
client
pub use ext::L2EthApiExtClient;
client
pub use filter::EthFilterApiClient;
client
Modules§
- block
- Conversion traits for block responses to primitive block types.
- bundle
- Additional
eth_
RPC API for bundles. - core
- Implementation of the [
jsonrpsee
] generatedEthApiServer
trait. Handles RPC requests for theeth_
namespace. - ext
eth_
Extension traits.- filter
eth_
RPC API for filtering.- helpers
- Behaviour needed to serve
eth_
RPC requests, divided into general database reads and specific database access. - node
- Helper trait for interfacing with
FullNodeComponents
. - pubsub
eth_
RPC API for pubsub subscription.- receipt
- Conversion traits for receipt responses to primitive receipt types.
- transaction
- Compatibility functions for rpc
Transaction
type. - types
- Trait for specifying
eth
network dependent API types.
Structs§
- Call
Fees - Helper type for representing the fees of a
TransactionRequest
- RpcConverter
- Generic RPC response object converter for
Evm
and networkNetwork
. - Transaction
Conversion Error - Conversion into transaction RPC response failed.
Enums§
- Call
Fees Error - Error coming from decoding and validating transaction request fees.
- EthTx
EnvError - An Ethereum specific transaction environment error than can occur during conversion from
[
TransactionRequest
]. - Sign
TxRequest Error - Error for
SignableTxRequest
trait.
Traits§
- AsEth
ApiError - Helper trait to access wrapped core error.
- From
EthApi Error - Helper trait to wrap core [
EthApiError
]. - From
EvmError - Helper trait to convert from revm errors.
- Into
EthApi Error - Helper trait to wrap core [
EthApiError
]. - Into
RpcTx - Converts
self
intoT
. The opposite ofFromConsensusTx
. - RpcConvert
- Responsible for the conversions from and into RPC requests and responses.
- RpcTypes
- RPC types used by the
eth_
RPC API. - Signable
TxRequest - An abstraction over transaction requests that can be signed.
- TryFrom
Block Response - Trait for converting network block responses to primitive block types.
- TryFrom
Receipt Response - Trait for converting network receipt responses to primitive receipt types.
- TryFrom
Transaction Response - Trait for converting network transaction responses to primitive transaction types.
- TryInto
SimTx - Converts
self
intoT
. - TxInfo
Mapper - Adds extra context to [
TransactionInfo
].
Functions§
- try_
into_ op_ tx_ info - Creates [
OpTransactionInfo
] by adding [OpDepositInfo
] to [TransactionInfo
] iftx
is a deposit.
Type Aliases§
- RpcTransaction
- Adapter for network specific transaction response.
- RpcTx
Req - Adapter for network specific transaction request.