chore: phase out reth-primitives from eth-wire (#13855)

This commit is contained in:
Matthias Seitz
2025-01-18 12:55:27 +01:00
committed by GitHub
parent bcf4f1bae3
commit 264105e177
10 changed files with 35 additions and 29 deletions

View File

@ -19,3 +19,9 @@ pub use transaction::*;
#[cfg(feature = "alloy-compat")]
mod alloy_compat;
/// Type alias for the ethereum block
pub type Block = alloy_consensus::Block<TransactionSigned>;
/// Type alias for the ethereum blockbody
pub type BlockBody = alloy_consensus::BlockBody<TransactionSigned>;

View File

@ -1,8 +1,8 @@
use alloc::vec::Vec;
pub use alloy_consensus::{transaction::PooledTransaction, TxType};
use alloy_consensus::{
transaction::{PooledTransaction, RlpEcdsaTx},
BlobTransactionSidecar, SignableTransaction, Signed, TxEip1559, TxEip2930, TxEip4844,
TxEip4844WithSidecar, TxEip7702, TxLegacy, TxType, Typed2718, TypedTransaction,
transaction::RlpEcdsaTx, BlobTransactionSidecar, SignableTransaction, Signed, TxEip1559,
TxEip2930, TxEip4844, TxEip4844WithSidecar, TxEip7702, TxLegacy, Typed2718, TypedTransaction,
};
use alloy_eips::{
eip2718::{Decodable2718, Eip2718Error, Eip2718Result, Encodable2718},