Getting Started

Get up and running with NodeMatrix in under 5 minutes

Prerequisites

Before you begin, make sure you have an EVM-compatible wallet (MetaMask recommended) and native tokens for gas fees on your target chain.
NodeMatrix Main Dashboard
The NodeMatrix visual workflow editor with drag-and-drop node canvas

The NodeMatrix dashboard is your command center for blockchain automation. The visual editor provides a powerful drag-and-drop interface where you can build complex workflows without writing a single line of code. Each node represents a specific action or condition, and connecting them creates your automation logic.

Quick Start Guide

1

Connect Your Wallet

Visit app.nodematrix.one and connect your MetaMask or WalletConnect compatible wallet to your preferred EVM network.

2

Create Your First Workflow

Click 'Add Nodes' to open the node palette. Drag and drop nodes onto the canvas to build your automation.

3

Configure Node Settings

Click on any node to configure its settings. Each node type has specific parameters for your automation needs.

4

Connect Nodes Together

Draw connections between nodes by clicking and dragging from output ports to input ports.

5

Deploy Your Workflow

Once configured, click 'Deploy Config' to save your workflow to the blockchain and start automation.

Template Library
Pre-built workflow templates to get started quickly

Don't want to start from scratch? Our template library includes dozens of pre-built workflows for common use cases like token sniping, portfolio rebalancing, NFT minting automation, and cross-chain bridging.

Each template is fully customizable - load one, modify the parameters to match your needs, and deploy. It's the fastest way to get productive with NodeMatrix.

Your First Workflow

Let's create a simple token swap automation. This workflow will automatically swap tokens when certain conditions are met.

AI-Powered Node Configuration

Watch how NodeMatrix AI intelligently configures data nodes based on natural language

YOU TYPE:
"Track total DEX volume across all chains for ETH using DeFiLlama"
AI CONFIGURES DeFiLlama NODE
AI analyzes DeFiLlama documentation
Identifies correct API endpoint: /overview/dexs
Configures filters for ETH volume
Sets up automatic data aggregation
Validates response format
Basic Workflow Example
Simple workflow: Start → Token Info → Deploy → End

Understanding the Workflow Structure

This diagram shows the basic flow of a NodeMatrix workflow. Data flows from left to right through connected nodes:

  • Start Node: Triggers the workflow based on your conditions
  • Token Info Node: Fetches current token data from the blockchain
  • Deploy Node: Executes the transaction on-chain
  • End Node: Completes the workflow and logs results
// Example: Auto-swap workflow configuration
{
  "name": "Auto Token Swap",
  "trigger": {
    "type": "price_threshold",
    "token": "MON",
    "condition": "below",
    "value": 0.50
  },
  "action": {
    "type": "swap",
    "from": "USDC",
    "to": "MON",
    "amount": "100",
    "slippage": "0.5%"
  }
}

Key Features to Explore

Multi-Wallet Support

Connect and manage multiple wallets simultaneously for complex trading strategies.

Lightning Fast Execution

Optimized RPC connections ensure your automations execute quickly across all chains.

Visual Configuration

No coding required - build complex workflows with drag-and-drop simplicity.

Battle-Tested Security

Your keys never leave your device. All operations are signed locally.

You're Ready!

You now have the basics to start building powerful blockchain automations. Explore the Core Concepts section to learn more about nodes and workflows.