sof_types/lib.rs
1#![forbid(unsafe_code)]
2
3//! Stable SOF-owned primitive types shared across SOF crates.
4
5/// Base58 decoding helpers shared by fixed-width SOF primitives.
6mod base58;
7/// Stable SOF-owned account and validator identity types.
8mod pubkey;
9/// Stable SOF-owned transaction signature types.
10mod signature;
11
12pub use base58::DecodeBase58Error;
13pub use pubkey::{PUBKEY_BYTES, PubkeyBytes};
14pub use signature::{SIGNATURE_BYTES, SignatureBytes};