Workflows & Examples

Pre-built templates and real-world workflow patterns

Ready-to-Use Templates

NodeMatrix includes pre-built workflow templates that you can load with a single click. Access them via the Templates tab in the Flow Controls panel.

Template Categories

Token + Social (V1)

Deploy token with integrated Telegram and Twitter announcements

5 nodes - Medium complexity

Perfect for quick launches with social presence

AI Token Launcher (V1.2)

AI-generated logo + docs + deploy + liquidity

6 nodes - Medium complexity

Fully automated launch with AI assets

Bundling & Profit (V1.2)

Multi-wallet bundling + profit taking strategies

9 nodes - Complex

Advanced trading with multiple wallets

Social Management (V1.2)

TG group + Twitter + website updates

9 nodes - Complex

Complete social media automation

Template loading interface
Access pre-built templates from the Flow Controls panel

Example: Basic Token Launch

1

Token Info Node

Configure token name, symbol, and metadata

2

Deploy Node

Deploy smart contract to selected chain

3

Add Liquidity Node

Create initial liquidity pool

4

Telegram Node

Send launch announcement to community

{
  "nodes": [
    { "id": "token-info", "type": "TokenInfo" },
    { "id": "deploy", "type": "Deploy" },
    { "id": "liquidity", "type": "AddLiquidity" },
    { "id": "telegram", "type": "Telegram" }
  ],
  "edges": [
    { "source": "token-info", "target": "deploy" },
    { "source": "deploy", "target": "liquidity" },
    { "source": "liquidity", "target": "telegram" }
  ]
}

Example: Multi-Wallet Trading

Advanced Feature

Multi-wallet operations require careful configuration. Always test with small amounts first.

All-to-All

1:1 mapping - each source wallet to one destination

One-to-Many

Single source to multiple destinations with random amounts

Many-to-One

Collect from all sources to single destination

Multi-wallet configuration
Configure individual wallet trading strategies