Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xtaodev/wallet-trades-tracker
This tool allows for near-instant notifications whenever a wallet executes a swap on an EVM-compatible blockchain
https://github.com/0xtaodev/wallet-trades-tracker
avax blockchain bsc crypto defi dex ethereum evm ftm python swap tracking trade wallet web3
Last synced: 12 days ago
JSON representation
This tool allows for near-instant notifications whenever a wallet executes a swap on an EVM-compatible blockchain
- Host: GitHub
- URL: https://github.com/0xtaodev/wallet-trades-tracker
- Owner: 0xTaoDev
- License: mit
- Created: 2023-11-30T14:11:22.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-21T17:54:39.000Z (9 months ago)
- Last Synced: 2024-02-21T19:51:43.298Z (9 months ago)
- Topics: avax, blockchain, bsc, crypto, defi, dex, ethereum, evm, ftm, python, swap, tracking, trade, wallet, web3
- Language: Python
- Homepage:
- Size: 1.15 MB
- Stars: 14
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
๐ Wallet Trades Tracker ๐
---
# ๐ Introduction
**Wallet Trades Tracker** is a Python tool that allows you to get notifications when a wallet from the list make a trade.
At this moment, **the tool only supports Ethereum** but it's probably working with others EVM-compatible blockchain.# โ ๏ธ Disclaimer
**Please note that I'm not responsible for any loss of funds, damages, or other libailities resulting from the use of this software or any associated services.
This tool is provided for educational purposes only and should not be used as financial advice, it is still in expiremental phase so use it at your own risk.**## How it works ๐ฌ
Each EVM-compatible blockchain bot will **scan every new block** to find wallets **matching those in the `wallets.txt`** file.
Upon finding a match, it will **check if the transaction is a swap**, if so, it will then **notify this transaction using Discord and Telegram**.## Features โจ
- **Real-time monitoring**: Tracking each new swaps from any DEXs
- **Wallet filtering**: Allowing users to specify which wallets to track
- **Instant notification**: Sending real-time alerts via Discord, Telegram, or other platforms
- **Transaction analysis**: Providing details about transactions such as amounts, involved addresses, exchanged tokens...## Requirements ๐
To run the tool, you will **need these packages**
- `web3` (interacting with EVM-compatible blockchain)
- `multicall` (for making multi RPC calls)
- `discord.py` (to create an embed for each notification)
- `python-dotenv` (for managing environment variables in Python applications)## Installation ๐ ๏ธ
1. Clone this repository: `git clone https://github.com/0xTaoDev/Wallet-Trades-Tracker.git`
2. Install the required packages: `pip install -r requirements.txt`
3. Create a virtual environnment : `python -m venv venv`
4. Populate these variables located in .env file located in the main directory.
```python
DISCORD_WEBHOOK_URL=""
TELEGRAM_BOT_TOKEN=""
TELEGRAM_CHAT_ID=""
```
4. Edit `wallets.txt` with your own wallets to track
Format: BLOCKCHAIN:ADDRESS (e.g.:ETHEREUM:0xae2fc483527b8ef99eb5d9b44875f005ba1fae13)
5. Start the tool with `python run.py`## Known issues ๐ฉ
`ImportError: cannot import name 'getargspec' from 'inspect'` : you need to uninstall web3 and install it again in order to update it.
## Screenshots ๐ธ
# ๐ TO-DO
- [ ] Integrate others EVM-compatible blockchains# ๐ค Contributions
If you are interesting in contributing, fork the repository and submit a pull request in order to merge your improvements into the main repository.
Contact me for any inquiry, I will reach you as soon as possible.
[![Discord](https://img.shields.io/badge/Discord-%237289DA.svg?logo=discord&logoColor=white)](https://discord.gg/QxwPGcXDp7)
[![Twitter](https://img.shields.io/badge/Twitter-%231DA1F2.svg?logo=Twitter&logoColor=white)](https://twitter.com/_TaoDev_)## License ๐งพ
This project is licensed under the MIT license. Feel free to edit and distribute this template as you like.
See [LICENSE](LICENSE) for more information.