orbinum-encrypted-memo 0.3.0

Encrypted memo primitives for Orbinum shielded transactions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Domain Entities
//!
//! Core business entities that form the foundation of the domain model.
//!
//! ## Modules
//!
//! - [`memo_data`] - Plaintext memo entity with serialization and format validation
//! - [`error`]     - Error types for domain operations

pub mod error;
pub mod memo_data;

pub use memo_data::{is_valid_encrypted_memo, MemoData};