When creating decentralized functions (dapps) and different Web3 platforms, you’ll shortly discover that you simply want environment friendly methods of interacting and speaking with varied blockchain networks. A method of doing so is establishing blockchain listeners for monitoring related sensible contract occasions. Nevertheless, the million-dollar query is, how do you create blockchain listeners? A outstanding choice is ethers.js, which is an Ethereum JavaScript library. If you wish to discover ways to use ethers.js to hearken to sensible contract occasions, be part of us on this tutorial as we present you precisely how to take action!
Earlier than we present you how one can use ethers.js to hearken to occasions, let’s return to fundamentals and discover the weather of this library in additional element. From there, we’ll present a fast introduction to occasions on Ethereum – which we’re utilizing synonymously with “ethers.js occasions” – supplying you with a greater thought of what we wish to monitor. After you have familiarized your self with ethers.js and Ethereum occasions, we’ll present you how one can arrange a blockchain listener with ethers.js to watch on-chain occasions. Lastly, we’ll prime all the pieces off with a comparability between ethers.js and Moralis’ Web3 Streams API!
In case you already know how one can arrange blockchain listeners with ethers.js, you must take a look at further Moralis content material right here on the Web3 weblog. As an illustration, take a look at the last word Web3 py tutorial or study all you want concerning the Sepolia testnet! What’s extra, earlier than shifting additional on this article, enroll with Moralis instantly! Creating an account is free, and as a member, you possibly can actually leverage the facility of blockchain expertise!

What’s Ethers.js?
Ethers.js is an Ethereum JavaScript (JS) library launched in 2016 by Richard Moore. It’s one among right now’s most well-used Web3 libraries, that includes hundreds of thousands of downloads. Like conventional libraries, ethers.js additionally consists of a set of prewritten snippets of code used to carry out widespread programming duties. Nevertheless, a big distinction between typical libraries and ethers.js is that the latter is blockchain-based. Accordingly, this library makes it simpler for builders to work together with the Ethereum community.

The library was initially designed to work with ”ethers.io”; nonetheless, since its launch, it has change into a extra general-purpose library. Furthermore, ethers.js includes a user-friendly API construction and is written in TypeScript. In consequence, it is likely one of the prime decisions amongst rising Web3 builders, as ethers.js is easy and intuitive to make use of.
Nonetheless, to present you a extra profound understanding of the library’s utility, allow us to briefly record a number of the primary options of ethers.js:
- ENS – Ethers.js helps Ethereum Identify Service (ENS), which means ENS names are dealt with as first-class residents.
- Take a look at Instances – The library options an in depth assortment of check instances, that are actively up to date and maintained.
- Dimension – Ethers.js is small, solely 284 KB uncompressed and 88 KB compressed.
Moreover, ethers.js has 4 core modules: “ethers.utils“, “ethers.wallets“, “ethers.supplier“, and “ethers.contract“. These 4 parts are important for the library’s utility programming interface (API). Nevertheless, if you wish to study extra about these, please take a look at the next information answering the query, ”what’s ethers.js?” in additional element. You may also wish to think about testing further Web3 libraries. In that case, learn our article on Web3.js vs ethers.js!
Occasions on Ethereum – What are Ethers.js Occasions?
Sensible contracts on the Ethereum blockchain networks usually emit varied occasions each time one thing occurs inside them primarily based on the code. What’s extra, these occasions are a type of sign emitted from contracts to inform dapps and builders that one thing of relevance has transpired. Accordingly, builders and platforms can use these alerts to speak.

To make this definition extra simple, allow us to take a better have a look at the ERC-20 token customary for example. All tokens implementing this sensible contract customary autonomously emit a ”switch” occasion each time they’re traded, and it’s doable to arrange blockchain listeners monitoring these occasions. What’s extra, this is just one instance, and most sensible contracts emit occasions primarily based on different occurrences alike. Furthermore, these are the occasions that we’re moreover calling “ethers.js occasions”.
So, as you may need figured your self, it is very important be capable of seamlessly pay attention to those ethers.js occasions in actual time. Additional, a method of doing so is thru blockchain listeners. Nevertheless, how do you create one? In case you are in search of the reply to this query, be part of us within the subsequent part, the place we’ll present you how one can use ethers.js to hearken to blockchain occasions!
How Can Builders Use Ethers.js Occasions?
Now that what ethers.js occasions are, the large query is, how do you employ them? To adequately reply this query, the next part gives an ethers.js instance the place we’ll present you how one can create a blockchain listener for monitoring the USD coin (USDC) sensible contract. Particularly, you’ll discover ways to monitor the sensible contract’s switch occasions.

That mentioned – earlier than protecting the code for the blockchain listener – you have to first arrange a NodeJS undertaking. From there, create two new recordsdata: ”.env” and ”abi.json”. Furthermore, you should make the most of a node supplier when utilizing ethers.js to hearken to blockchain occasions. So, on this occasion, we can be utilizing Alchemy. Consequently, you have to add your Alchemy key as an setting variable to the ”.env” file.
Subsequent, together with the supplier key, you should add the USDC contract utility binary interface (ABI) to the ”abi.json” file. In case you need assistance discovering the ABI of any Ethereum-based contracts, take a look at Etherscan.
Lastly, to conclude the preliminary setup technique of the NodeJS undertaking, you should set up a number of dependencies. As such, open a brand new terminal and run the next command:
npm i ethers dotenv
Learn how to Set Up an Ethers.js Blockchain Listener
Now that you’ve arrange the NodeJS undertaking, this part focuses on the ethers.js blockchain listener. As such, to proceed, create a brand new JavaScript file known as ”index.js”. Open the file and begin by including the next three traces of code on the prime:
const ethers = require("ethers"); const ABI = require("./abi.json"); require("dotenv").config();
The three traces from the code snippet above point out that ”index.js” makes use of the ethers.js library, together with importing the contract ABI and the setting variables from ”.env”. From there, the following step is including an asynchronous operate we’re going to name ”getTransfers()”:
async operate getTransfer(){ const usdcAddress = "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"; ///USDC Contract const supplier = new ethers.suppliers.WebSocketProvider( `wss://eth-mainnet.g.alchemy.com/v2/${course of.env.ALCHEMY_KEY}` ); const contract = new ethers.Contract(usdcAddress, ABI, supplier); contract.on("Switch", (from, to, worth, occasion)=>{ let transferEvent ={ from: from, to: to, worth: worth, eventData: occasion, } console.log(JSON.stringify(transferEvent, null, 4)) }) }
This operate comprises the logic for the ethers.js blockchain listener. Consequently, we’ll break down the code from prime to backside. Initially, on the primary two traces of the ”getTransfers()” operate, the code creates two variables: ”usdcAddress” and ”supplier”. For the primary one, you wish to specify the contract tackle. For the latter, you have to decide the node supplier utilizing your setting variable key.
Subsequent, the code creates a brand new ”contract” object by using the ”usdcAddress”, ”ABI”, and ”supplier” variables by passing them as arguments for the ”ethers.Contract()” operate. From there, the code units the listener utilizing the ”contract” object, specifying ”Switch” occasions as the subject of curiosity. Lastly, the code console logs the outcomes!
Nonetheless, the whole code of the ”index.js” file ought to now look one thing like this:
const ethers = require("ethers"); const ABI = require("./abi.json"); require("dotenv").config(); async operate getTransfer(){ const usdcAddress = "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"; ///USDC Contract const supplier = new ethers.suppliers.WebSocketProvider( `wss://eth-mainnet.g.alchemy.com/v2/${course of.env.ALCHEMY_KEY}` ); const contract = new ethers.Contract(usdcAddress, ABI, supplier); contract.on("Switch", (from, to, worth, occasion)=>{ let transferEvent ={ from: from, to: to, worth: worth, eventData: occasion, } console.log(JSON.stringify(transferEvent, null, 4)) }) } getTransfer()
Learn how to Run the Script
With all of the code added to the ”index.js” file, all that is still is working the script. To take action, open a brand new terminal and run the next command:
node index.js
When you execute the command above, the code will return USDC transactions knowledge in your console, and it’ll look one thing like this:

Operating the script returns an abundance of knowledge, together with the to and from addresses, occasion knowledge, and rather more. Sadly, the response above doesn’t comprise parsed knowledge, and we can’t, as an example, decide the origin of the data. In conclusion, utilizing ethers.js for listening to blockchain occasions is a good begin, however it leaves extra to be desired. So, are there any ethers.js options?
Is There an Different to Ethers.js Occasions?
Although ethers.js is an effective choice for establishing blockchain listeners for monitoring sensible contract occasions, it’s not excellent. Consequently, it’s price contemplating different options as properly. As an illustration, one of the crucial outstanding examples is Moralis’ Streams API!

With the Streams API, you possibly can effortlessly stream on-chain knowledge into the backend of your blockchain initiatives by way of Web3 webhooks. By means of this Moralis characteristic, you possibly can arrange streams to obtain Moralis webhooks each time an tackle receives, swaps, or stakes an asset, a battle begins in your blockchain sport, or another sensible contract occasions set off primarily based in your filters!
What’s extra, by way of the accessibility of Moralis, you possibly can arrange your individual streams in 5 simple steps:
- Present a sensible contract tackle
- Apply filters specifying when to obtain webhooks
- Choose the chain(s) you wish to monitor
- Add your webhook URL
- Obtain webhooks
Nonetheless, allow us to discover how Moralis’ Web3 Streams API is best than ethers.js!
How the Web3 Streams API is Higher Than Ethers.js
Ethers.js is an effective various for setting blockchain listeners to watch sensible contract occasions. Nevertheless, in the event you begin working with this library, you’ll shortly discover its limitations. As such, it’s price contemplating different choices like Moralis’ Streams API as a substitute. To provide you a greater thought of why that is, we now have summarized the similarities and variations between ethers.js and Moralis down beneath:

With this fast overview, you possibly can immediately see that Moralis gives all the pieces ether.js does and extra when establishing blockchain listeners. Nevertheless, simply wanting on the factors made within the desk above will be considerably cryptic. Due to this fact, allow us to look at and break down the desk for you within the following sub-section to offer an in-depth evaluation of the variations between ethers.js and the choice the place customers can arrange Web3 streams utilizing the Streams API!
Ethers.js vs Web3 Streams
The desk above reveals that each ethers.js and Moralis streams permit you to monitor real-time occasions. Each choices assist a number of chains, which means you possibly can monitor occasions for various blockchain networks. Nevertheless, whereas that covers the similarities, how do these two choices differ?

First, Moralis gives 100% reliability. However what does this imply? As you may bear in mind from the ”How Can Builders Use Ethers.js Occasions?” part, you should present a separate node supplier when utilizing ethers.js. This may be problematic, as it’s tough to know if the nodes maintained by the supplier will keep operational indefinitely. Nevertheless, this isn’t the case with Moralis, as you will have a single tech stack and all the time obtain real-time alerts by way of webhooks as a substitute.
You may moreover filter occasions with Moralis’ Web3 Streams API. Consequently, you possibly can goal occasions and solely obtain webhooks for the on-chain knowledge you require. You may also pool contracts right into a single stream, which is unattainable when utilizing ethers.js. With ethers.js, you’ll as a substitute have to arrange separate blockchain listeners for brand new contracts.
Lastly, you possibly can hearken to pockets addresses when utilizing Moralis. This implies you possibly can obtain webhooks each time a pockets performs a specific motion. Furthermore, together with the aforementioned advantages, the info obtained from Moralis webhooks is parsed. As such, you do not want to fret about further formatting and processing. This additional implies that the info is able to use ”straight out of the field” in your Web3 initiatives.
Nonetheless, take a look at our article on ethers.js vs Web3 streams for extra details about the variations. You may also wish to watch the video down beneath, exhibiting you how one can arrange blockchain listeners utilizing each ethers.js and Moralis’ Web3 Streams API:
Ethers.js Occasions – Abstract
If in case you have adopted alongside this far, you now know how one can hearken to sensible contract occasions with ethers.js. On this tutorial, we taught you how one can create a blockchain listener for monitoring the switch occasion of the USDC sensible contract. In doing so, the article confirmed you how one can arrange a NodeJS undertaking, add the code for the blockchain listener, and run the script. Now you can use the identical elementary rules to watch any sensible contract occasions utilizing ethers.js in your future blockchain initiatives!
In case you discovered this ethers.js instance tutorial useful, think about testing extra Moralis content material. As an illustration, learn our article on how one can get all transfers of an NFT. In that information, you get to discover the accessibility of Moralis’ NFT API, which is likely one of the many Web3 APIs supplied by Moralis. Different outstanding examples are the Token API, Solana API, EVM API, and so forth. Thanks to those instruments, Moralis presents the quickest approach to construct a Web3 app!
Consequently, it doesn’t matter what Web3 growth endeavors you embark on, enroll with Moralis, as that is how one can absolutely leverage the facility of blockchain expertise!