In this notebook, we leverage Etherscan API to extract the following information from a list of public addresses (retrieved from the file defined on ADDRESS_LIST
):
- Current ETH balance
- Token transfers and swaps
- Current tokens balance
To run this notebook locally, follow the steps below:
virtualenv venv
source venv/bin/activate
pip3 install -r requirements.txt
Please add your Etherscan API info and the public address list to the .env
file:
cp .env_example .env
vim .env
jupyter notebook
The three dataframes for this exercise are saved into .csv
files inside the directory ./output
.
◼️