USDT Flasher Tools is a graphical tool for sending and canceling ERC-20 token transactions on the Ethereum Mainnet. 💸
- 🛠️ Customizable Transactions: Send ERC-20 tokens (USDT, USDC, DAI, etc.) to any Ethereum address.
- ⏳ Pending Transactions: Set minimal gas to keep transactions "stuck."
- 🛑 Cancel Transactions: Override a transaction with increased gas fees.
- 🖥️ Intuitive Graphical Interface: Designed with
tkinter
for a user-friendly experience.
graph TD
A[Start] --> B[Enter Private Key]
B --> C[Select Currency]
C --> D[Enter Destination Address]
D --> E[Enter Amount]
E --> F{Validate Inputs}
F -->|Valid| G[Build Transaction]
F -->|Invalid| H[Show Error]
G --> I[Send to Blockchain]
I --> J[Show Transaction Hash]
J --> K{Cancel?}
K -->|Yes| L[Replace Transaction]
K -->|No| M[Finish]
-
Install Dependencies:
pip install web3 tkinter
-
Configure Infura Project ID: Replace
ID
in theinfura_url
variable with your Infura Project ID. -
Run the Script:
python USDT-Flasher.py
-
Graphical Interface:
- Enter your private key and transaction details.
- Click Send Transaction to send the transaction.
- Click Cancel Last Transaction to override a pending transaction.
Token | Contract Address | Decimals |
---|---|---|
USDT | 0xdAC17F958D2ee523a2206206994597C13D831ec7 |
6 |
WBTC | 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599 |
8 |
USDC | 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606EB48 |
6 |
DAI | 0x6B175474E89094C44Da98b954EedeAC495271d0F |
18 |
SHIB | 0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE |
18 |
- Private Key Security: Never share your private key with anyone.
- Testnet Usage: Test the script on a simulation network before using it on Mainnet.
- Legal Compliance: Ensure compliance with local cryptocurrency regulations.
Contributions are welcome! 🧑💻 Please open a pull request or report an issue in the Issues section.