pub trait RpcTypes {
type Header: RpcObject;
type Receipt: RpcObject + ReceiptResponse;
type Transaction: RpcObject + TransactionResponse;
}
Expand description
RPC types used by the eth_
RPC API.
This is a subset of [alloy_network::Network
] trait with only RPC response types kept.
Required Associated Types§
Sourcetype Transaction: RpcObject + TransactionResponse
type Transaction: RpcObject + TransactionResponse
Transaction response type.