lssa/common/src/lib.rs

11 lines
220 B
Rust
Raw Normal View History

2025-04-16 16:17:53 +03:00
pub mod block;
2025-10-17 16:20:31 -03:00
pub mod error;
2025-04-16 16:17:53 +03:00
pub mod rpc_primitives;
2025-08-07 14:07:34 +03:00
pub mod sequencer_client;
2025-04-16 16:17:53 +03:00
pub mod transaction;
2025-08-05 14:59:20 +03:00
//Module for tests utility functions
2025-10-17 16:20:31 -03:00
//TODO: Compile only for tests
2025-08-05 14:59:20 +03:00
pub mod test_utils;
2025-10-17 16:04:09 -03:00
pub type HashType = [u8; 32];