1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! Deterministic state transition logic for the TruthLinked protocol.
//!
//! This crate owns account state, token accounting, cell execution hooks,
//! metrics, logs, parallel execution, and protocol constants used by validators.
//! State changes are consensus-sensitive and must preserve deterministic
//! serialization, execution ordering, and replay behavior.
pub use Log;
pub use State;
pub use ;
// Genesis hash for genesis fingerprint
static GENESIS_HASH: OnceLock = new;
static CURRENT_HEIGHT: AtomicU64 = new;