exoware-simplex 2026.5.0

Index artifacts emitted by Simplex.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use exoware_sdk::ClientError;

#[derive(Debug, thiserror::Error)]
pub enum SimplexError {
    #[error("store client error: {0}")]
    Client(#[from] ClientError),
    #[error("codec error: {0}")]
    Codec(#[from] commonware_codec::Error),
    #[error("simplex proof payload does not match header digest")]
    ProofBlockMismatch,
    #[error("simplex upload contains no rows")]
    EmptyUpload,
}