mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-03 05:43:08 +00:00
13 lines
303 B
Rust
13 lines
303 B
Rust
pub mod block;
|
|
pub mod error;
|
|
pub mod rpc_primitives;
|
|
pub mod sequencer_client;
|
|
pub mod transaction;
|
|
|
|
// Module for tests utility functions
|
|
// TODO: Compile only for tests
|
|
pub mod test_utils;
|
|
pub type HashType = [u8; 32];
|
|
|
|
pub const PINATA_BASE58: &str = "EfQhKQAkX2FJiwNii2WFQsGndjvF1Mzd7RuVe7QdPLw7";
|