This document describes a new addressing scheme for Monero.
Chapters 1-2 are intended for general audience.
Chapters 3-7 contain technical specifications.
| // Add these to Cargo.toml | |
| // zmq = "0.9.2" | |
| // json = "0.12.4" | |
| use substring::Substring; | |
| async fn start_listening(&self) { | |
| let context = zmq::Context::new(); | |
| let subscriber = context.socket(zmq::SUB).unwrap(); | |
| subscriber |