Ethereum-Event-Scan is a lightweight Ethereum event explorer for smart contracts. The right tool when you develop smart contracts (and your source codes has not been submitted to EtherScan). Also in the case you work with a private blockchain you may use Ethereum-Event-Scan.
- Set docker-desktop to experimental mode true
- Install docker-buildx
Start directly with docker-cli:
$ docker run -dit -p 55226:80 --name ethereum-event-scan sprunck/ethereum-event-scan:latest
or
use docker-compose.yml:
version: '3.7'
services:
ethereum-event-scan:
image: sprunck/ethereum-event-scan:latest
container_name: ethereum-event-scan
ports:
- '55226:80'
You may download the sources, build Angular and then build with docker-compose:
$ npm install
$ ./build.sh
$ docker-compose up -d
Detailed description:
https://www.sw-engineering-candies.com/blog-1/Ethereum-Event-Explorer-for-Smart-Contracts
Docker image:
https://cloud.docker.com/u/sprunck/repository/docker/sprunck/ethereum-event-scan
Source code: