Subscribe to https://t.me/degen_statistics 🤫
Этот проект проверяет статистику для заданных публичных адресов. Для каждого адреса анализируются следующие параметры:
- Наличие домена Turbo
- Баланс в нативной монете
- Количество транзакций
- Количество уникальных приложений
- Количество уникальных месяцев и дней
- Объем в эфире и уплаченную комиссию в эфире
- Количество токенов
Результаты сохраняются в файл output.csv в той же директории.
- Убедитесь, что у вас установлен Python (версия 3.12 или выше).
- Установите необходимые зависимости, выполнив команду:
pip install -r requirements.txt
-
Создайте или заполните файл
addresses.txt, указав в нем публичные адреса, каждый с новой строки. Пример:7jtuen1N95bBNyAV5dbcx6enYT24qKqHobyHQZnyRoTD 8t2XBEjM7db1Fv24FhNaayPx32daDZ95L5xTETKCk2pK -
По желанию создайте или заполните файл
proxies.txt, указав в нем прокси формата логин:пароль@айпи:порт, каждый с новой строки. Пример:log:pass@ip:port log:pass@ip:port
- Запустите скрипт с помощью команды:
python main.py
- После выполнения скрипта, все результаты будут сохранены в файл
output.csvв формате CSV.
- Убедитесь, что ваши публичные адреса корректны, чтобы избежать ошибок в процессе выполнения.
- В случае возникновения ошибок проверьте правильность заполнения
addresses.txtи установленных зависимостей. - Объем считается только в парах к нативной монете и в роутерах с нативной монетой. Это необходимо для корректной и быстрой работы.
- Ошибка на windows решается даунгрейдом библиотеки aiohttp с 3.10 до 3.9.5
pip3 install aiohttp==3.9.5
Subscribe to https://t.me/degen_statistics 🤫
This project checks statistics for specified public addresses. For each address, the following parameters are analyzed:
- Presence of a Turbo domain
- Balance in the native currency
- Number of transactions
- Number of unique applications
- Number of tokens
- Number of unique months and days
- Ethereum volume and eth fees
The results are saved to the output.csv file in the same directory.
- Ensure that Python (version 3.7 or higher) is installed on your system.
- Install the required dependencies by running:
pip install -r requirements.txt
- Create or fill in the
addresses.txtfile with public addresses, each on a new line. Example:7jtuen1N95bBNyAV5dbcx6enYT24qKqHobyHQZnyRoTD 8t2XBEjM7db1Fv24FhNaayPx32daDZ95L5xTETKCk2pK - Optionally, create or fill in the file
proxies.txt, specifying in it proxies of the format login:password@ip:port, each on a new line. Example:log:pass@ip:port log:pass@ip:port
- Run the script using the command:
python main.py
- After the script finishes execution, all results will be saved in the
output.csvfile in CSV format.
- Ensure that your public addresses are correct to avoid errors during execution.
- If errors occur, check the
addresses.txtfile and the installed dependencies for correctness.