ergo_node_interface/
lib.rs1#![allow(clippy::ptr_arg)]
2
3#[macro_use]
4extern crate json;
5pub mod local_config;
6pub mod node_interface;
7mod requests;
8pub mod scanning;
9pub mod transactions;
10mod types;
11pub mod wallet;
12
13pub use local_config::*;
14pub use node_interface::NodeInterface;
15pub use types::*;
16
17pub type P2PKAddressString = String;
19pub type JsonString = String;
21pub type P2SAddressString = String;
23pub type NanoErg = u64;
25pub type BlockHeight = u64;
27pub type BlockDuration = u64;
29pub type TokenID = String;