mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-02-20 05:13:10 +00:00
14 lines
319 B
Rust
14 lines
319 B
Rust
pub mod block;
|
|
pub mod config;
|
|
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";
|