Check Tron wallet USDT blacklist status via Telegram
 Description This n8n workflow template allows users to check if a Tron wallet address is blacklisted on the USDT contract via a Telegram bot. When a user sends the command {walletAddress} t...
Template notes
 Description This n8n workflow template allows users to check if a Tron wallet address is blacklisted on the USDT contract via a Telegram bot. When a user sends the command {walletAddress} through the Telegram bot, the workflow queries the Tronscan API to determine if the provided wallet address is blacklisted. The result is then sent back to the user via the Telegram bot.
Detailed Description Workflow Overview This workflow is designed to interact with users through a Telegram bot and check if a given Tron wallet address is blacklisted on the USDT contract. The workflow consists of four main nodes:
1. Telegram Trigger Node: Listens for messages from the Telegram bot. 2. HTTP Request Node: Sends a GET request to the Tronscan API to check the blacklist status of the provided wallet address. 3. Function Node: Processes the API response and formats the message to be sent back to the user. 4. Telegram Send Message Node: Sends the formatted message back to the user via the Telegram bot.
Nodes Configuration
1.Telegram Trigger Node
- Event: Message - Update Types: Message - Command: /sorgu - Description: This node listens for the {walletAddress} command followed by a wallet address from the user.
2.HTTP Request Node
- Method: GET - URL: https://apilist.tronscanapi.com/api/stableCoin/blackList?blackAddress={{ $json.message.text }} - Response Format: JSON - Description: This node sends a GET request to the Tronscan API using the wallet address provided by the user.