chore(deps): bump alloy (#10537)

Co-authored-by: Oliver <onbjerg@users.noreply.github.com>
This commit is contained in:
Arsenii Kulikov
2024-08-29 17:23:04 +04:00
committed by GitHub
parent 019ec727a2
commit ec5ce21965
50 changed files with 530 additions and 580 deletions

View File

@ -60,7 +60,7 @@ where
chain_id,
blob_versioned_hashes,
max_fee_per_blob_gas,
// authorization_list,
authorization_list,
..
} = request;
@ -98,7 +98,7 @@ where
// EIP-4844 fields
blob_hashes: blob_versioned_hashes.unwrap_or_default(),
max_fee_per_blob_gas,
authorization_list: Default::default(),
authorization_list: authorization_list.map(Into::into),
optimism: OptimismFields { enveloped_tx: Some(Bytes::new()), ..Default::default() },
};

View File

@ -12,7 +12,7 @@ use std::{fmt, sync::Arc};
use crate::eth::rpc::SequencerClient;
use alloy_primitives::U256;
use op_alloy_network::Optimism;
use op_alloy_network::AnyNetwork;
use reth_chainspec::ChainSpec;
use reth_evm::ConfigureEvm;
use reth_network_api::NetworkInfo;
@ -107,7 +107,7 @@ where
N: FullNodeComponents,
{
type Error = OpEthApiError;
type NetworkTypes = Optimism;
type NetworkTypes = AnyNetwork;
}
impl<N> EthApiSpec for OpEthApi<N>

View File

@ -7,7 +7,7 @@ use reth_rpc_eth_api::{
FromEthApiError,
};
use reth_rpc_eth_types::{EthApiError, EthStateCache, ReceiptBuilder};
use reth_rpc_types::{AnyTransactionReceipt, OptimismTransactionReceiptFields};
use reth_rpc_types::{optimism::OptimismTransactionReceiptFields, AnyTransactionReceipt};
use crate::{OpEthApi, OpEthApiError, OptimismTxMeta};