Skip to content

Commit 61f09c9

Browse files
prestwichclaude
andauthored
chore: bump SDK to rc.11, use SDK primitive re-exports (#33)
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 <noreply@anthropic.com>
1 parent fbfe22c commit 61f09c9

File tree

3 files changed

+15
-24
lines changed

3 files changed

+15
-24
lines changed

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.6.2"
6+
version = "0.6.3"
77
edition = "2024"
88
rust-version = "1.92"
99
authors = ["init4"]
@@ -35,20 +35,20 @@ incremental = false
3535

3636
[workspace.dependencies]
3737
# internal
38-
signet-hot = { version = "0.6.2", path = "./crates/hot" }
39-
signet-hot-mdbx = { version = "0.6.2", path = "./crates/hot-mdbx" }
40-
signet-cold = { version = "0.6.2", path = "./crates/cold" }
41-
signet-cold-mdbx = { version = "0.6.2", path = "./crates/cold-mdbx" }
42-
signet-cold-sql = { version = "0.6.2", path = "./crates/cold-sql" }
43-
signet-storage = { version = "0.6.2", path = "./crates/storage" }
44-
signet-storage-types = { version = "0.6.2", path = "./crates/types" }
38+
signet-hot = { version = "0.6.3", path = "./crates/hot" }
39+
signet-hot-mdbx = { version = "0.6.3", path = "./crates/hot-mdbx" }
40+
signet-cold = { version = "0.6.3", path = "./crates/cold" }
41+
signet-cold-mdbx = { version = "0.6.3", path = "./crates/cold-mdbx" }
42+
signet-cold-sql = { version = "0.6.3", path = "./crates/cold-sql" }
43+
signet-storage = { version = "0.6.3", path = "./crates/storage" }
44+
signet-storage-types = { version = "0.6.3", path = "./crates/types" }
4545

4646
# External, in-house
4747
signet-libmdbx = { version = "0.8.0" }
4848

49-
signet-evm = "0.16.0-rc.10"
50-
signet-types = "0.16.0-rc.10"
51-
signet-zenith = "0.16.0-rc.10"
49+
signet-evm = "0.16.0-rc.11"
50+
signet-types = "0.16.0-rc.11"
51+
signet-zenith = "0.16.0-rc.11"
5252

5353
# trevm
5454
trevm = { version = "0.34.0", features = ["full_env_cfg"] }

crates/types/src/alloy.rs

Lines changed: 0 additions & 4 deletions
This file was deleted.

crates/types/src/lib.rs

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
mod execution;
1919
pub use ::alloy::consensus::transaction::Recovered;
2020
pub use execution::{ExecutedBlock, ExecutedBlockBuilder, MissingFieldError};
21-
22-
mod alloy;
23-
pub use alloy::TransactionSigned;
2421
mod events;
2522
pub use events::{DbSignetEvent, DbZenithHeader};
2623
mod indexed_receipt;
@@ -30,12 +27,10 @@ pub use int_list::{BlockNumberList, IntegerList, IntegerListError};
3027
mod sharded;
3128
pub use sharded::ShardedKey;
3229
pub use signet_evm::{Account, EthereumHardfork, genesis_header};
33-
pub use signet_types::{ConfirmationMeta, Confirmed, Receipt, TxLocation};
34-
35-
use ::alloy::consensus::{Header, Sealed};
30+
pub use signet_types::{
31+
ConfirmationMeta, Confirmed, Receipt, TxLocation,
32+
primitives::{SealedHeader, TransactionSigned},
33+
};
3634

3735
/// A recovered transaction type.
3836
pub type RecoveredTx = Recovered<TransactionSigned>;
39-
40-
/// A sealed header type.
41-
pub type SealedHeader = Sealed<Header>;

0 commit comments

Comments
 (0)