reth_rpc/aliases.rs
1use reth_evm::ConfigureEvm;
2use reth_rpc_convert::RpcConvert;
3use reth_rpc_eth_types::EthApiError;
4
5/// Boxed RPC converter.
6pub type DynRpcConverter<Evm, Network, Error = EthApiError> = Box<
7 dyn RpcConvert<
8 Primitives = <Evm as ConfigureEvm>::Primitives,
9 Network = Network,
10 Error = Error,
11 Evm = Evm,
12 >,
13>;