https://github.com/statickidz/wallet-tracker
Track a list of crypto wallets to get notified when a new transaction is being processed.
https://github.com/statickidz/wallet-tracker
bsc bscscan crypto erc20
Last synced: about 1 year ago
JSON representation
Track a list of crypto wallets to get notified when a new transaction is being processed.
- Host: GitHub
- URL: https://github.com/statickidz/wallet-tracker
- Owner: statickidz
- Created: 2021-05-25T19:01:31.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-09T16:21:31.000Z (almost 5 years ago)
- Last Synced: 2025-03-28T07:51:12.566Z (about 1 year ago)
- Topics: bsc, bscscan, crypto, erc20
- Language: JavaScript
- Homepage:
- Size: 525 KB
- Stars: 62
- Watchers: 5
- Forks: 22
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wallet Tracker
Track a list of crypto wallets to get notified when a new transaction is being processed.
## Installation
```
npm install
```
## Usage
- Copy `.env.sample` and rename to `.env`.
- Customize `.env` preferences and replace GetBlock.io API Key with yours (default is a limited one only for development).
- Copy `.wallets.sample` and rename to `.wallets`.
- Edit `.wallets` and add all the wallets to watch line-by-line like in the example below:
```
0x6660e0aac73c495d49ded3934132c405c4615e01
0xf60d6c152e89edf22a70de490f3be1fa309ca779
```
- Start tracking with `npm start`
## Options
You can edit `.env` and customize your preferences.
| Options | Values | Description |
| ------------------- | -------------------- | ---------------------------------------------------------- |
| `NETWORK` | `mainnet \| testnet` | Choose between main or test network |
| `GET_BLOCK_API_KEY` | `string` | GetBlock.io API Key |
| `OPEN_POOCOIN` | `true \| false` | Open Poocoin website when a new transation is detected |
| `OPEN_PANCAKE` | `true \| false` | Open PancakeSwap website when a new transation is detected |
| `PLAY_SOUND` | `true \| false` | Play sound when a new transation is detected |