Skip to content

Instantly share code, notes, and snippets.

View torresnova's full-sized avatar
Success!

AngryMan torresnova

Success!
View GitHub Profile
@torresnova
torresnova / index.js
Created September 24, 2024 15:07 — forked from formysister/index.js
Analyze EVM network blocks and transactions and pick transactions that ERC721 NFT smart contract deployed.
'use strict'
const ethers = require('ethers');
const readline = require('readline').createInterface({
input: process.stdin,
output: process.stdout,
});
const { RPC_URL_HTTP_ENDPOINT } = require('./config');
const ERC721 = require('./erc721-abi.json');