Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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"] }
Expand Down
4 changes: 0 additions & 4 deletions crates/types/src/alloy.rs

This file was deleted.

13 changes: 4 additions & 9 deletions crates/types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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<TransactionSigned>;

/// A sealed header type.
pub type SealedHeader = Sealed<Header>;