A mempool listener for contract specific transactions.
This implementation is for educational purposes and not for production use. The tests carried out with this listener were all done on testnet networks and uses specific RPC endpoints that support the eth_newPendingTransaction
API. It is nice to note that not all RPC or WSS endpoints support this API.
GitHub Repository
Node Package Manager (NPM)
Assuming we want to set up such a mempool listener for transactions that were sent due to a call on the handleOps()
function at this contract address on Ethereum Sepolia, this listener will only pick up transactions that the data key of their transaction object starts with the function signature 0x1fad948c
and call a set executableFunction
the listener has been configured with. This is achieved by setting up a provider with a user chosen Ethereum Sepolia WSS or RPC endpoint, and using the provider's event listeners, filter out and work with only the handleOps()
transactions sent to that contract address that are in the mempool. We can use the ABI for the configured transaction to be listened for to try to extract the values sent as arguments to the transaction and we can try to do stuff with that in the executableFunction
as the user desires. Refer to this article on how this can be achieved.
If you happen to use this package, and run into some bug, or have some ideas on how I can improve the functionalities, please reach out by opening an issue. You can also fix it yourself and make a pull request. Thanks, and I appreciate your use of this package.
Import package from NPM.
npm install mempool-listener
Import MempoolListener
into your code file and initialize it with your chosen RPC or WSS endpoint URL. Your RPC or WSS URL should support the eth_newPendingTransaction
API.
// TypeScript.
import MempoolListener from "mempool-listener"
const mempoolListener = new MempoolListener("RPC or WSS URL")
// JavaScript.
const MempoolListener = require("mempool-listener").default
const mempoolListener = new MempoolListener("RPC or WSS URL")
OR
// JavaScript.
const { default: MempoolListener } = require("mempool-listener")
const mempoolListener = new MempoolListener("RPC or WSS URL")
Configure the ABI of the contract, the contract address and function name to listen to. Also, configure your executable function, in this case called executableFunc
. This is the function that gets called whenever a transaction that matches the functionName
is picked up by the listener. executableFunc
MUST have one parameter, args
that is an object containing the arguments in the picked up pending transaction, the value sent to the call, and the gas price paid for the transaction.
// TypeScript.
import { Abi } from "mempool-listener/build/types/abi-types"
import { ListenerConfig } from "mempool-listener/build/types/listener-config-types"
const config = {
address: "0xabcdef",
abi: ["Contract Abi"] as Abi,
functionName: "functionName"
}
function executableFunc(args) {
console.log(args)
}
// JavaScript.
const config = {
address: "0xabcdef",
abi: ["Contract Abi"],
functionName: "functionName"
}
function executableFunc(args) {
console.log(args)
}
Finally, you can start up your listener passing the config
and executableFunc
as arguments.
// TypeScript.
import MempoolListener from "mempool-listener"
const mempoolListener = new MempoolListener("RPC or WSS URL")
mempoolListener.listen(config, executableFunc)
// JavaScript.
const MempoolListener = require("mempool-listener").default
const mempoolListener = new MempoolListener("RPC or WSS URL")
mempoolListener.listen(config, executableFunc)
Whenever a pending transaction is picked up, it checks for the first four bytes of the data
key in the transaction data and tries to match it with the selector of the function name you passed in your config. If these two selectors match, the executableFunc
is called.
You can stop the listener temporarily by calling the stopListener
function, and, you can restart the listener by calling the restartListener
function.
// TypeScript.
import MempoolListener from "mempool-listener"
const mempoolListener = new MempoolListener("RPC or WSS URL")
mempoolListener.listen(config, executableFunc)
mempoolListener.stopListener()
mempoolListener.restartListener()
// JavaScript.
const MempoolListener = require("mempool-listener").default
const mempoolListener = new MempoolListener("RPC or WSS URL")
mempoolListener.listen(config, executableFunc)
mempoolListener.stopListener()
mempoolListener.restartListener()
Trying to stop or restart an undefined listener will do nothing.
GPL-3.0.