arbos/lib.rs
1//! Core ArbOS state machine.
2//!
3//! Implements the Arbitrum Operating System: L1/L2 pricing, retryable tickets,
4//! block processing, internal transactions, and all protocol-level state management.
5
6pub mod address_set;
7pub mod address_table;
8pub mod arbos_state;
9pub mod arbos_types;
10pub mod block_metadata;
11pub mod block_processor;
12pub mod blockhash;
13pub mod burn;
14pub mod engine;
15pub mod features;
16pub mod filtered_transactions;
17pub mod header;
18pub mod internal_tx;
19pub mod l1_pricing;
20pub mod l2_pricing;
21pub mod merkle_accumulator;
22pub mod parse_l2;
23pub mod programs;
24pub mod retryables;
25pub mod tx_processor;
26pub mod util;