espresso_types/v0/v0_1/
mod.rs

1use vbs::version::Version;
2
3pub const VERSION: Version = Version { major: 0, minor: 1 };
4
5mod block;
6mod chain_config;
7mod fee_info;
8mod header;
9mod instance_state;
10mod l1;
11mod state;
12mod transaction;
13
14pub use block::*;
15pub use chain_config::*;
16pub use fee_info::*;
17pub use header::Header;
18pub use instance_state::*;
19pub use l1::*;
20pub use state::*;
21pub use transaction::*;
22pub use crate::eth_signature_key::BuilderSignature;