blvm-sdk 0.1.4

Bitcoin Commons software developer kit, governance infrastructure and composition framework for Bitcoin
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! IPC Communication
//!
//! IPC protocol and client for module-to-node communication.
//!
//! Modules communicate with the node via Inter-Process Communication (IPC)
//! using Unix domain sockets. This module provides the protocol types and
//! client implementation.

pub mod client;
pub mod protocol;

pub use client::ModuleIpcClient;
pub use protocol::*;