evm

n8n community node for EVM interactions

Package Information

Released: 4/28/2025
Downloads: 10 weekly / 110 monthly
Latest Version: 1.0.0
Author: joyboy9999

Documentation

EVM (Ethereum Virtual Machine) Integration for n8n


☕ How to Support & Donate

Maintaining open-source blockchain tooling takes time and gas. If this package saves you hours or prevents a failed transaction, consider saying thanks! ❤️

Method Link / Address
ETH / EVM 0xe7a596684E542E3dECa55883d85c9cFFcb3a78ED
Telegram @joyboydino

All donations fuel features, testnets, CI gas fees, and docs. Every wei counts—thank you!


Features

  • 🔄 Check native token balances across any RPC-compatible chain
  • 💸 Transfer native tokens with automatic gas estimation
  • ✍️ Sign messages (EIP-191 / personal-sign)
  • 🤝 Interact with smart contracts (read & write)
  • 📡 Monitor contract events with historical and real-time options
  • 🔢 Unit conversion between wei, gwei, ether
  • ⏱️ Nonce management for sequential transactions
  • 🌐 Multi-chain: Ethereum, BSC, Polygon, Arbitrum, Optimism, and any EVM network with an RPC URL

Need a new chain or feature? Open an issue or fund it via a donation to ship it faster!


Quick Start

  1. Install the community node.
  2. Add credentials: RPC URL + private key.
  3. Drop an “EVM → Get Balance” node into any workflow.
  4. Run the workflow—done!

Event Listener

Monitor blockchain events easily:

  • Track token transfers, swaps, or other contract activity
  • Query historical data or set up real-time monitoring
  • Filter events by parameter values
  • Integrate with n8n workflows for automated actions

How to Use: Monitoring USDC Transfers

This example sets up a workflow to monitor USDC token transfers on Ethereum from a specific address.

Workflow Overview

  1. Schedule Trigger: Runs every 5 minutes.
  2. EVM Node: Queries USDC Transfer events.
  3. Filter Node: Filters transfers from a specific address.
  4. Set Node: Formats the output.

Steps

  1. Add Schedule Trigger:
    • Set to run every 5 minutes.
  2. Configure EVM Event Listener:
    • Add an EVM node, select Contract Event Listener.
    • Settings:
      • Contract Address: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 (USDC on Ethereum).
      • Contract ABI: Copy from Etherscan.
      • Event Name: Transfer.
      • Block Range: "Recent Blocks" (set to 10 blocks).
      • Output Format: "Detailed".
      • Event Limit: 50.
  3. Filter Transfers by Address:
    • Add a Filter
    • {"from": "0x123...7890","to":"0x345...122}

Workflow Structure

[Schedule Trigger] → [EVM: Event Listener] → [Filter] → [Set]

Tips

  • Use a reliable RPC provider to avoid rate limits.
  • Test with a larger block range if no events appear.
  • Adjust block range and frequency for high-activity tokens.

Installation

Follow the official n8n guide for community nodes:
https://docs.n8n.io/integrations/community-nodes/installation/


Important Disclaimer

This is an open-source, community-driven project. The code is transparent and publicly auditable. Private keys are hashed and stored securely via n8n's credential system on your own server—we never access or store your keys. Always verify the code and use minimal funds for testing. Do not use large amounts of funds in workflows without thorough testing. Use at your own risk.

Discussion