signet-tx-cache 0.18.0

Types and helpers for using the Signet transaction cache
Documentation
//! Signet Transaction Cache types and client.

#![warn(
    missing_copy_implementations,
    missing_debug_implementations,
    missing_docs,
    unreachable_pub,
    clippy::missing_const_for_fn,
    rustdoc::all
)]
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![deny(unused_must_use, rust_2018_idioms)]
#![cfg_attr(docsrs, feature(doc_cfg))]

/// The [`TxCache`] client.
mod client;
pub use client::TxCache;

/// Response types for the [`TxCache`].
///
/// [`TxCache`]: crate::client::TxCache
pub mod types;

/// Errors returned by the [`TxCache`] client.
pub mod error;
pub use error::TxCacheError;