Skip to content

Instantly share code, notes, and snippets.

@EmanuelCampos
Last active November 4, 2022 12:35
Show Gist options
  • Save EmanuelCampos/1cd639a3f16248a402cd8d4ba003602c to your computer and use it in GitHub Desktop.
Save EmanuelCampos/1cd639a3f16248a402cd8d4ba003602c to your computer and use it in GitHub Desktop.
ZeroMQ
import zmq from "zeromq";
const SOCKET_ADDRESS = "tcp://127.0.0.1:3000"
const connectZeroMQ = () => {
const socket = zmq.socket('sub');
socket.connect(SOCKET_ADDRESS);
socket.subscribe('');
return socket;
}
const zmq = connectZeroMQ();
zmq.on('rawblock', (error, block) => {
if(err !== null) return;
// store on your databasae
})
zmq.on('rawtxn', (error, txn) => {
if(err !== null) return;
// store on your databasae
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment