lwk_app 0.7.0

Liquid Wallet Kit - RPC server App
Documentation
1
2
3
4
5
6
7
8
use std::net::{Ipv4Addr, SocketAddrV4};
use std::time::Duration;

pub const DEFAULT_ADDR: SocketAddrV4 = SocketAddrV4::new(Ipv4Addr::new(127, 0, 0, 1), 32_111);

pub const APP_VERSION: &str = env!("CARGO_PKG_VERSION");

pub const SCANNING_INTERVAL: Duration = Duration::from_secs(10);