https://github.com/dorukyy/telegram-wallet-tracker
The Telegram Crypto Wallet Tracker is a Python application that allows users to track cryptocurrency wallets for various blockchains and sends notifications on Telegram when a transaction is made.
https://github.com/dorukyy/telegram-wallet-tracker
bsc crypto-wallet-tracker cryptocurrency ethereum python sqlite telegram-bot wallet-tracking wax
Last synced: 11 months ago
JSON representation
The Telegram Crypto Wallet Tracker is a Python application that allows users to track cryptocurrency wallets for various blockchains and sends notifications on Telegram when a transaction is made.
- Host: GitHub
- URL: https://github.com/dorukyy/telegram-wallet-tracker
- Owner: dorukyy
- License: mit
- Created: 2023-06-04T19:05:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-23T19:42:39.000Z (over 2 years ago)
- Last Synced: 2023-09-24T00:40:49.726Z (over 2 years ago)
- Topics: bsc, crypto-wallet-tracker, cryptocurrency, ethereum, python, sqlite, telegram-bot, wallet-tracking, wax
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Telegram Crypto Wallet Tracker
The Telegram Crypto Wallet Tracker is a Python application that allows users to track cryptocurrency wallets for various blockchains and sends notifications on Telegram when a transaction is made.
The application provides a convenient way for users to add, remove, and list their cryptocurrency wallets. It supports popular blockchains such as WAX, BSC (Binance Smart Chain), and ETH (Ethereum).
When a new transaction occurs in any of the tracked wallets, the application sends a notification message to the user's Telegram chat, providing details about the transaction.
This wallet tracking solution is designed to keep users informed about their cryptocurrency transactions and provide a seamless experience for managing multiple wallets across different blockchains.

### Supported Block-chains
- ETH
- BSC
- WAX
You can contact me via:
[](https://t.me/dorukyd)
## Support
If you like the project you can support me with the link below
## Prerequisites
- Python 3.7 or higher
- `pip` package manager
## Installation
1. Clone the repository:
```shell
git clone https://github.com/your-username/wallet-tracker.git
```
2. Install the required dependencies:
```shell
pip install -r requirements.txt
```
3. Edit the config.ini file to configure the Telegram token and blockchain settings:
```
[Telegram]
token =
[WAX]
wax_track = False
wax_track_interval = 60
[BSC]
token =
bsc_track = True
bsc_track_interval = 60
[ETH]
token =
eth_track = False
eth_track_interval = 60
```
4. Run the application:
```
python main.py
```
## Usage
1. Start the bot by sending the /start command.
2. Add a wallet by sending the /add
command. For example:
```
/add 0x123456789abcdefg eth
```
This will add an Ethereum wallet with the given address.
3.Remove a wallet by sending the /remove
command. For example:
```
/remove 0x123456789abcdefg eth
```
This will remove the Ethereum wallet with the given address.
4. List all your wallets by sending the /list command.
## Contributions
Contributions are welcome! If you find any issues or have suggestions, please create a new issue or submit a pull request.