DevZenPro / Ethereum-Wallet-Tracker

Track you Ethereum wallet, get notified while any tokens or nfts transactions happened (追蹤你的以太坊錢包,在任何新交易發生時會立即通知)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ethereum Wallet Tracker

📖 繁體中文版README.md 📖

A bot notifies you when new transaction appears

image

This bot is designed to notify you when there is a new transaction on the tracked wallet addresses happened. It supports both Ethereum mainnet and Goerli testnet in case you are a developer. Notifications can be sent by Line Notify or Discord bot.

image

Project progress:

TODO LIST Support
Line-Notify support ☑️
Discord bot support 🛠️
Normal txns ☑️
Internal txns 🛠️
ERC20 token txns 🛠️
ERC721 token txns ☑️
ERC1155 token txns ❌️

☑️ Supported | 🛠️ In progress | ❌️ Not supported yet


Getting started to use the bot

How to use

  1. Download the latest release from here
  2. Unzip the file then open up config.yml, Notepad++ is recommended
  3. Fill in the following required information, see here for more details
  4. Now run WalletTracker.exe to start the bot
  5. Make sure you've invited the bot to your Discord server and added Line Notify as friend
  6. Enjoy!

About config.yml

# ++--------------------------------++
# | Ethereum Wallet Tracker          |
# | Made by LD                       |
# ++--------------------------------++

# Paste your etherscan api key here.
# You can get the api key from here: https://etherscan.io/myapikey
etherscan_api_key: ''

# Paste the wallet address you want to track here.
wallet_address: ''

# Time interval (in seconds) at which the program checks for new transactions on the tracked wallet addresses.
# Noted that Etherscan API has a rate limit per second and day!
# The default value is 60 seconds.
check_interval: 60

# Line Notify Service
# Get notified by Line while there is a new transaction on the tracked wallet addresses.
# You can get the token from here: https://notify-bot.line.me/my/
line_notify_token: ''


# Developer Options (Goerli Testnet)
# If you don't know what this is, don't touch it.
use_goerli_testnet: false
  • etherscan_api_key: Etherscan API key, you can get it from here
  • wallet_address: The ethereum wallet address you want to track (in hex format, multiple addresses are not supported yet)
  • check_interval: The time interval (in seconds) at which the program checks for new transactions on the tracked wallet addresses. Noted that Etherscan API has a rate limit per second and day! The default value is 60 seconds.
  • line_notify_token: Line Notify token, you can get it from here
  • use_goerli_testnet: If you want to use Goerli testnet, set this to true. If you don't know what this is, don't touch it.

Contribute to this project

How to contribute

  1. Fork this repository
  2. Clone your forked repository
  3. Create a new branch
  4. Make your changes
  5. Commit and push your changes
  6. Create a pull request
  7. Wait for review

Libraries used

Code style and commits

  • 100 characters per line
  • Use snake_case for variables and functions
  • Add a blank line at the end of the file
  • Optimize imports, remove the redundant ones
  • Google style TODO comments
  • Use Sphinx Docstring style for docstrings
  • Use these headers for commits
    • Update - your commit messages here
    • Fix bug - your commit messages here
    • Optimize - your commit messages here
    • Standardize - your commit messages here

Find bugs or having suggestions?

If you have any suggestions or found any bugs, please open an issue here, will try to fix it as soon as possible.

Support this project

If you find this project useful, consider starring this repository to show your support! or donating any cryptocurrencies to the following addresses

Ethereum address: hot.happygroup.eth

License

This project is licensed under the MIT License - see the LICENSE file for details


以太坊錢包交易通知機器人

📖 English README.md 📖

以太坊錢包交易通知機器人

image

此專案的機器人可以讓你追蹤一個以太坊錢包的交易活動,並在有新的交易發生時,透過Line Notify或Discord bot來通知您! 同時支援開法者使用 Goerli 測試網路。

image

專案進度:

完成列表 進度
支援 Line-Notify 通知 ☑️
支援 Discord 機器人通知 🛠️
一般的交易活動 ☑️
內部交易活動 🛠️
ERC20 代幣活動 🛠️
ERC721 代幣活動 ☑️
ERC1155 代幣活動 ❌️

☑️ 已支援 | 🛠️ 開發中... | ❌️ 尚未開發


開始使用

如何下載及運行

  1. 這裡 下載最新的版本
  2. 解壓縮檔案後,於資料夾內開啟 config.yml, 建議使用Notepad++來編輯檔案
  3. 遵照內文完成填寫 config.yml,請參考 這裡
  4. 運行 WalletTracker.exe
  5. 確認你已邀請Discord bot至你的伺服器及將Line Notify加為好友
  6. 盡情使用!

關於 config.yml

# ++--------------------------------++
# | Ethereum Wallet Tracker          |
# | Made by LD                       |
# ++--------------------------------++

# Paste your etherscan api key here.
# You can get the api key from here: https://etherscan.io/myapikey
etherscan_api_key: ''

# Paste the wallet address you want to track here.
wallet_address: ''

# Time interval (in seconds) at which the program checks for new transactions on the tracked wallet addresses.
# Noted that Etherscan API has a rate limit per second and day!
# The default value is 60 seconds.
check_interval: 60

# Line Notify Service
# Get notified by Line while there is a new transaction on the tracked wallet addresses.
# You can get the token from here: https://notify-bot.line.me/my/
line_notify_token: ''


# Developer Options (Goerli Testnet)
# If you don't know what this is, don't touch it.
use_goerli_testnet: false
  • etherscan_api_key : 你的 Etherscan API 金鑰,你可以在這裡取得
  • wallet_address : 你想要追蹤的以太坊錢包地址 (請使用十六進位制,目前不支援多個錢包)
  • check_interval : 檢查新交易的時間間隔 (單位: 秒),請注意 Etherscan API 有每秒及每日的查詢額度限制,預設為 60 秒
  • line_notify_token : Line Notify 權杖金鑰,你可以在這裡取得
  • use_goerli_testnet : 是否使用 Goerli 測試網路,預設為 false,如果你不知道這是什麼請不要更改

協助這個專案開發

如何貢獻

  1. Fork 這個專案
  2. 複製你剛剛 Fork 的專案至本地
  3. 建立新的分支
  4. 盡情發揮你的能力
  5. Commit / Push 你的程式碼
  6. 建立新的 Pull Request
  7. 等待回覆

使用的函式庫

程式碼撰寫/提交規範

  • 每行不超過100個字元
  • 使用 snake_case 命名變數及函式
  • 在檔案尾處加上一個空行
  • 最佳化程式碼並移除不必要的import
  • Google style TODO註解
  • 使用 Sphinx Docstring 進行函式註解
  • 提交請求時請使用以下格式,並全英文撰寫
    • Update - your commit messages here
    • Fix bug - your commit messages here
    • Optimize - your commit messages here
    • Standardize - your commit messages here

建議/問題回報

如果你有任何建議或是發現了任何問題,請在 Issues 提交你的意見,我會盡快回覆你!

支持我做出更多開源內容

如果你覺得這個專案對你有幫助,歡迎按下右上角的 Star 來追蹤此專案! 也可以透過加密貨幣捐款來支持我做出更多開源內容

以太坊錢包地址: hot.happygroup.eth

版權

此專案的版權規範採用 MIT License - 至 LICENSE 查看更多相關聲明

About

Track you Ethereum wallet, get notified while any tokens or nfts transactions happened (追蹤你的以太坊錢包,在任何新交易發生時會立即通知)

License:MIT License


Languages

Language:Python 100.0%