Skip to content

Instantly share code, notes, and snippets.

View busyboredom's full-sized avatar

Charlie Wilkin busyboredom

View GitHub Profile

JAMTIS

This document describes a new addressing scheme for Monero.

Chapters 1-2 are intended for general audience.

Chapters 3-7 contain technical specifications.

Table of Contents

@unyieldinggrace
unyieldinggrace / monero-zmq-listen.rs
Created November 3, 2021 23:14
Small demo of how to listen for ZMQ notifications from monerod about txns being added to the mempool
// 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