blvm-node 0.1.2

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
//! Modern REST API Module
//!
//! Provides a developer-friendly REST API alongside the backwards-compatible JSON-RPC.
//! This API is designed for modern applications with better type safety, clearer
//! error messages, and improved developer experience.
//!
//! Base path: `/api/v1/`

pub mod addresses;
pub mod blocks;
pub mod chain;
#[cfg(feature = "ctv")]
#[cfg(feature = "bip70-http")]
pub mod congestion;
pub mod fees;
pub mod mempool;
pub mod mining;
pub mod network;
pub mod node;
#[cfg(feature = "bip70-http")]
pub mod payment;
#[cfg(feature = "ctv")]
#[cfg(feature = "bip70-http")]
pub mod pool;
pub mod server;
pub mod transactions;
pub mod types;
pub mod validation;
#[cfg(feature = "ctv")]
#[cfg(feature = "bip70-http")]
pub mod vault;

#[cfg(test)]
mod tests;

pub use server::RestApiServer;