use crate::request::EvmRpcResponseConverter;
use evm_rpc_types::MultiRpcResult;
pub struct AlloyResponseConverter;
impl EvmRpcResponseConverter for AlloyResponseConverter {
type CallOutput = MultiRpcResult<alloy_primitives::Bytes>;
type FeeHistoryOutput = MultiRpcResult<alloy_rpc_types::FeeHistory>;
type GetBlockByNumberOutput = MultiRpcResult<alloy_rpc_types::Block>;
type GetLogsOutput = MultiRpcResult<Vec<alloy_rpc_types::Log>>;
type GetTransactionCountOutput = MultiRpcResult<alloy_primitives::U256>;
type GetTransactionReceiptOutput = MultiRpcResult<Option<alloy_rpc_types::TransactionReceipt>>;
type JsonRequestOutput = MultiRpcResult<String>;
type SendRawTransactionOutput = MultiRpcResult<alloy_primitives::B256>;
}