• Homepage •
Supported protocols •
Chainstack blog •
Chainstack docs •
Blockchain API reference •
• Start for free •
This simple project uses the Ethers.js library to examine blocks using the eth_getBlockReceipts
method and extract data about newly deployed smart contracts.
Read the full article on the Chainstack Developer Portal:
This program uses the ethers.js
library to retrieve all of the transaction receipts in a block at once using the eth_getBlockReceipts
method; it then looks for transactions that deployed a new smart contract by inspecting the contractAddress
field of each transaction receipt.
This project is compatible with EVM-based chains.
git clone https://github.com/soos3d/smart-contract-watcher-chainstack.git
From the root directory of the project run:
npm ci
Use
npm ci
to launch aclean install
of the dependencies. This will install the same version as in thepackage.json
file.
Edit the .env.sample
file, paste the node endpoint you wish to test, and rename it to .env
.
Starting August 2023, Geth also support
eth_getBlockReceipts
.
ERIGON_RPC="YOUR_ERIGON_NODE_URL"
To start the program, run the following:
npm run start
This will run the app, giving you the following results in the console if new smart contracts are detected.
> [email protected] start
> node index.js
New smart contract detected!
New smart contract address: 0x00e9a503b88732ee3e28a0fec3343c405f5e963d
Deployed by address: 0x984380fc12cc3bdb894e1f35111dd992fb52a231
Deployed by transaction: 0xad8d3a6647a4ad7e2f8eedef258b4c3233d54e5999a855ca59500f5df70d35de
The system requires at least:
- Node.js v16.17.0— install Node
- A Chainstack RPC endpoint.
To install this project:
Clone this repository:
git clone https://github.com/soos3d/smart-contract-watcher-chainstack.git
Install dependencies:
From the root directory of the project run:
npm ci
Use
npm ci
to launch aclean install
of the dependencies. This will install the same version as in thepackage.json
file.