⚡ Only 300 spots remaining • Closes in 2d 14h 32m
Save on transaction fees. This workflow polls the Etherscan or EthGasStation API for current "Low", "Standard", and "Fast" gwei prices. If the current "Standard" price is lower than your pre-set threshold (e.g., 20 gwei), it sends an urgent notification to your Telegram so you can execute your transactions cheaply.
This workflow is pre-configured and ready for deployment. Simply import the JSON template into your n8n instance and configure your credentials.
This is an exclusive blueprint. Copy the JSON below to use it.
PRO TIP
Always test your workflow in a development environment before pushing to production.
{
"nodes": [
{
"parameters": {
"interval": 10,
"unit": "minutes"
},
"name": "Every 10m",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"url": "https://api.etherscan.io/api?module=gastracker&action=gasoracle&apikey=YOUR_API_KEY"
},
"name": "Get Gas Price",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [450, 300]
},
{
"parameters": {
"conditions": {
"number": [
{
"value1": "={{$json[\"result\"][\"ProposeGasPrice\"]}}",
"operation": "smaller",
"value2": 20
}
]
}
},
"name": "Target Hit?",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [650, 300]
},
{
"parameters": {
"chatId": "YOUR_CHAT_ID",
"text": "=⛽ ETH Gas Alert: Current price is {{$node[\"Get Gas Price\"].json[\"result\"][\"ProposeGasPrice\"]}} gwei. Time to trade!"
},
"name": "Telegram Alert",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1,
"position": [850, 250]
}
],
"connections": {
"Every 10m": {
"main": [[{"node": "Get Gas Price", "type": "main", "index": 0}]]
},
"Get Gas Price": {
"main": [[{"node": "Target Hit?", "type": "main", "index": 0}]]
},
"Target Hit?": {
"main": [[{"node": "Telegram Alert", "type": "main", "index": 0}]]
}
}
}To use this, copy the JSON above and paste it directly onto your n8n canvas.
Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.