exoware-simplex 2026.5.0

Index artifacts emitted by Simplex.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Store-backed Simplex upload client.
//!
//! `exoware-simplex` stores Commonware Simplex artifacts in the Exoware Store
//! using a stable logical key layout. It is intentionally a client library, not
//! a consensus participant: callers still build and verify Commonware blocks and
//! certificates, then use this crate to persist the encoded artifacts.

mod client;
mod error;
pub mod keys;
mod resolver;
mod types;

pub use client::{PreparedEntry, PreparedUpload, SimplexClient};
pub use error::SimplexError;
pub use resolver::MarshalResolver;
pub use types::{encode_block_data, BlockData, Finalized, Notarized, UploadReceipt, UploadSummary};