tmkms 0.14.0

Tendermint Key Management System: provides isolated, optionally HSM-backed signing key management for Tendermint applications including validators, oracles, IBC relayers, and other transaction signing applications
Documentation
//! Application-local prelude: conveniently import types/functions/macros
//! which are generally useful and should be available everywhere.

/// Abscissa core prelude
pub use abscissa_core::prelude::*;

/// Status macros
pub use abscissa_core::{status_attr_err, status_attr_ok};

/// Application state
pub use crate::application::APP;