vls-proxy 0.14.0

A library for implementing a Lightning signer, which externalizes and secures cryptographic operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Proxy connection from node to VLS.
//! In particular, a replacement for CLN's hsmd binary.

pub mod client;
pub mod connection;
pub mod grpc;
pub mod nodefront;
pub mod portfront;

#[macro_use]
#[allow(unused_macros)]
pub mod util;

pub use lightning_signer;
pub use vls_frontend;
pub use vls_protocol_client;
pub use vls_protocol_signer;