mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-07-23 06:09:31 +00:00
Decentralized-sequencing foundation: a shared chain_state crate (two-tier head/final ChainState, apply_block, AcceptOutcome, StallReason, and the absorbed channel-consistency machinery), turn-gated block production, the publisher follow path for adopted/orphaned/finalized peer blocks, and persistence that keeps disk order equal to apply order under the chain lock. Rebased onto dev after #600/#606: chain_consistency is absorbed into chain_state, the sequencer bootstrap's verify_and_reconstruct is re-wired onto the two-tier ChainState (reconstruction applies channel history through the final tier and persists via the follow-path primitives), and test fixtures adopt the SequencerSetup builder extended with with_bedrock_signing_key. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
28 lines
546 B
TOML
28 lines
546 B
TOML
[package]
|
|
name = "chain_state"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
common.workspace = true
|
|
lee.workspace = true
|
|
lee_core.workspace = true
|
|
logos-blockchain-core.workspace = true
|
|
logos-blockchain-zone-sdk.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
borsh.workspace = true
|
|
futures.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
testnet_initial_state.workspace = true
|
|
serde_json.workspace = true
|