A simple web-app for monitoring transactions on the latest Ethereum block.
Getting started:
Clone the repo:
git clone https://github.com/amurshak/ethsentinel.git
Cd into the root directory:
cd ethsentinel
Create, then activate, the local virtual environment:
python3 venv envsource ./env/bin/activate
Install dependencies:
pip3 install -r requirements.txtcd ./clientnpm install
Set environment variables:
export FLASK_DEBUG=trueexport FLASK_ENV=developmentexport FLASK_APP=app.pyexport SECRET_KEY='XXXXXXXXXXXXXXX'export ALCHEMY_API_KEY='XXXXXXXXXXXXXXX'export COINMARKETCAP_API_KEY='XXXXXXXXXXXXXXX'
Run:
python3 app.py