mev-inspect
A [WIP] Ethereum MEV Inspector in Python managed by Poetry
Containers
mev-inspect's local setup is built on Docker Compose
By default it starts up:
mev-insepct
- a container with the code in this repo used for running scriptsdb
- a postgres database instancepgadmin
- a postgres DB UI for querying and more (avaiable at localhost:5050)
Running locally
Setup Docker
Start the services (optionally as background processes)
poetry run start [-b]
To stop the services (if running in the background, otherwise just ctrl+c)
poetry run stop
MEV container can be attached via
poetry run attach
Running additional compose commands are possible through standard docker compose ...
calls. Check docker compose help
for more tools available
Executing scripts
Inspection is the only simplified api available through poetry at the moment with a more generalized api on the horizon.
Inspect scripts must have -script
, -block_number
and -rpc
arguments.
Using the uniswap inspect from ./examples
poetry run inspect -script ./examples/uniswap_inspect.py -block_number 11931271 \
-rpc 'http://111.11.11.111:8545'
Generalized user defined scripts can still be run through the docker interface as
docker compose exec mev-inspect python testing_file.py \
-block_number 11931271 \
-rpc 'http://111.11.11.111:8545'
Poetry Scripts
# code check
poetry run lint # linting via Pylint
poetry run test # testing and code coverage with Pytest
poetry run isort # fixing imports
poetry run mypy # type checking
poetry run black # style guide
poetry run pre-commit # runs Black, PyLint and MyPy
# docker management
poetry run start [-b] # starts all services, optionally in the background
poetry run stop # shutsdown all services or just ctrl + c if foreground
poetry run build # rebuilds containers
poetry run attach # enters the mev-inspect container in interactive mode
# launches inspection script
poetry run inspect -script ... -block_number ... -rpc ...
Rebuilding containers
After changes to the app's Dockerfile, rebuild with
poetry run build
Using PGAdmin
-
Go to localhost:5050
-
Login with the PGAdmin username and password in
.env
-
Add a new engine for mev_inspect with
- host: db
- user / password: see
.env
Contributing
Development can be done locally or in the docker container. Use local if contributions can be fully tested without invoking the database related services.
- Install dependencies and build python environment
poetry install
or with docker
poetry run build
- Pre-commit is used to maintain a consistent style, prevent errors and ensure test coverage. Make sure to fix any errors presented via Black, Pylint and MyPy pre-commit hooks
poetry run pre-commit
or within docker
pre-commit run --all-files
- Update README if needed