sof-types 0.18.2

Stable SOF-owned primitive types shared across SOF crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]

//! Stable SOF-owned primitive types shared across SOF crates.

/// Base58 decoding helpers shared by fixed-width SOF primitives.
mod base58;
/// Stable SOF-owned account and validator identity types.
mod pubkey;
/// Stable SOF-owned transaction signature types.
mod signature;

pub use base58::DecodeBase58Error;
pub use pubkey::{PUBKEY_BYTES, PubkeyBytes};
pub use signature::{SIGNATURE_BYTES, SignatureBytes};