miden-node-rpc 0.17.0-rc.2

Miden node's front-end RPC server
// Required by code generated by the upstream `#[instrument]` macro.
extern crate miden_node_tracing as tracing;

mod funding;
mod server;
#[cfg(test)]
mod tests;

pub use funding::FundingClient;
pub use server::{
    AccountAdmission,
    PreAuthSubmission,
    Rpc,
    RpcMode,
    SequencerInternal,
    ValidatorClients,
};

// CONSTANTS
// =================================================================================================
pub const COMPONENT: &str = "miden-rpc";
pub const LOG_TARGET: &str = "user::miden-rpc";