mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-02 13:23:08 +00:00
13 lines
263 B
Rust
13 lines
263 B
Rust
|
|
use crate::mocked_components::client::MockedClient;
|
|
|
|
pub mod client;
|
|
pub mod sequencer;
|
|
|
|
/// Default users for examples
|
|
pub const USER_CLIENTS: [MockedClient; 3] = [
|
|
MockedClient::new([1; 8]),
|
|
MockedClient::new([2; 8]),
|
|
MockedClient::new([3; 8]),
|
|
];
|