From f5e8f7de38b977387ddc6deedb450157285f5bf1 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 16 Feb 2026 14:33:38 -0500 Subject: [PATCH] chore: bump SDK to rc.11, use SDK primitive re-exports Bump signet-evm, signet-types, and signet-zenith from 0.16.0-rc.10 to 0.16.0-rc.11. Replace local TransactionSigned and SealedHeader type definitions with re-exports from signet_types::primitives. Bump workspace version to 0.6.3. Co-Authored-By: Claude Sonnet 4.5 --- Cargo.toml | 22 +++++++++++----------- crates/types/src/alloy.rs | 4 ---- crates/types/src/lib.rs | 13 ++++--------- 3 files changed, 15 insertions(+), 24 deletions(-) delete mode 100644 crates/types/src/alloy.rs diff --git a/Cargo.toml b/Cargo.toml index eb618cd..7b30a7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.6.2" +version = "0.6.3" edition = "2024" rust-version = "1.92" authors = ["init4"] @@ -35,20 +35,20 @@ incremental = false [workspace.dependencies] # internal -signet-hot = { version = "0.6.2", path = "./crates/hot" } -signet-hot-mdbx = { version = "0.6.2", path = "./crates/hot-mdbx" } -signet-cold = { version = "0.6.2", path = "./crates/cold" } -signet-cold-mdbx = { version = "0.6.2", path = "./crates/cold-mdbx" } -signet-cold-sql = { version = "0.6.2", path = "./crates/cold-sql" } -signet-storage = { version = "0.6.2", path = "./crates/storage" } -signet-storage-types = { version = "0.6.2", path = "./crates/types" } +signet-hot = { version = "0.6.3", path = "./crates/hot" } +signet-hot-mdbx = { version = "0.6.3", path = "./crates/hot-mdbx" } +signet-cold = { version = "0.6.3", path = "./crates/cold" } +signet-cold-mdbx = { version = "0.6.3", path = "./crates/cold-mdbx" } +signet-cold-sql = { version = "0.6.3", path = "./crates/cold-sql" } +signet-storage = { version = "0.6.3", path = "./crates/storage" } +signet-storage-types = { version = "0.6.3", path = "./crates/types" } # External, in-house signet-libmdbx = { version = "0.8.0" } -signet-evm = "0.16.0-rc.10" -signet-types = "0.16.0-rc.10" -signet-zenith = "0.16.0-rc.10" +signet-evm = "0.16.0-rc.11" +signet-types = "0.16.0-rc.11" +signet-zenith = "0.16.0-rc.11" # trevm trevm = { version = "0.34.0", features = ["full_env_cfg"] } diff --git a/crates/types/src/alloy.rs b/crates/types/src/alloy.rs deleted file mode 100644 index f8bfe9f..0000000 --- a/crates/types/src/alloy.rs +++ /dev/null @@ -1,4 +0,0 @@ -use alloy::consensus::{EthereumTxEnvelope, TxEip4844}; - -/// Signed transaction. -pub type TransactionSigned = EthereumTxEnvelope; diff --git a/crates/types/src/lib.rs b/crates/types/src/lib.rs index d9e0ba4..d1b5e48 100644 --- a/crates/types/src/lib.rs +++ b/crates/types/src/lib.rs @@ -18,9 +18,6 @@ mod execution; pub use ::alloy::consensus::transaction::Recovered; pub use execution::{ExecutedBlock, ExecutedBlockBuilder, MissingFieldError}; - -mod alloy; -pub use alloy::TransactionSigned; mod events; pub use events::{DbSignetEvent, DbZenithHeader}; mod indexed_receipt; @@ -30,12 +27,10 @@ pub use int_list::{BlockNumberList, IntegerList, IntegerListError}; mod sharded; pub use sharded::ShardedKey; pub use signet_evm::{Account, EthereumHardfork, genesis_header}; -pub use signet_types::{ConfirmationMeta, Confirmed, Receipt, TxLocation}; - -use ::alloy::consensus::{Header, Sealed}; +pub use signet_types::{ + ConfirmationMeta, Confirmed, Receipt, TxLocation, + primitives::{SealedHeader, TransactionSigned}, +}; /// A recovered transaction type. pub type RecoveredTx = Recovered; - -/// A sealed header type. -pub type SealedHeader = Sealed
;