Last active
November 4, 2022 12:35
-
-
Save EmanuelCampos/1cd639a3f16248a402cd8d4ba003602c to your computer and use it in GitHub Desktop.
ZeroMQ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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