This application visualizes recent Ethereum Name Service transactions with a focus on BidRevealed event logs.
This application visualizes recent ENS transactions with a focus on BidRevealed
event logs.
Install from the repo using the instructions below, or use Docker
# clone this repo
$ git clone https://github.com/amitdeshmukh/ens-explorer.git
# change directory
$ cd ens-explorer
# install dependencies
$ npm install
# serve with hot reload at localhost:8080
$ npm run dev
# build for production with minification
$ npm run build
# unit tests
$ npm test
# clone this repo
$ git clone https://github.com/amitdeshmukh/ens-explorer.git
# change directory
$ cd ens-explorer
# Run docker-compose
$ docker-compose build && docker-compose up
Browse to http://localhost:8080
ENS events will begin to stream into the app.
The app will perform some calculations as new data comes in. This process depends on the number of events emitted by the ENS contract within the past day.
Currently, the app will display:
A summary of ENS contract events
Metrics related to BidRevealed
events:
Individual BidRevealed
events are also displayed.
The app uses Infura websockets to connect to the Ethereum mainnet, and receive ENS contract events. This was done so that using the app would not require to setup a local geth/parity node, and events can be streamed into the app immediately.
The drawback of this approach however, is that Infura websockets seem to not provide event logs that are older than 2 days. The performance is optimal when events within the past 1 day of blocks are requested.