Skip to main content
Automation Graphs let you build visual workflows that can automatically launch tokens based on configurable triggers and conditions.

Overview

The graph editor uses a node-based visual programming interface. Connect nodes together to define:
  • Triggers — What starts the automation (tweets, timers)
  • Conditions — Filters and logic gates
  • Actions — What happens (launch, notify, delay)

Accessing the Graph Editor

Navigate to Automate in the top navigation. This opens the automation workspace with:
  • Graph List — Your saved graphs
  • Canvas — Visual node editor
  • Sidebar — Configuration panels

Node Types

Event Nodes

Starting points for your automation:
NodeDescription
event.tweetTriggers when a watched account tweets
event.timerTriggers on a schedule

Data Nodes

Extract and manipulate data:
NodeDescription
data.tweet.breakDecompose tweet into fields
data.literalFixed values
data.variable.get/setRead/write variables

Logic Nodes

Control flow and conditions:
NodeDescription
logic.ifBranch on condition
logic.compareCompare values
logic.switchMulti-way branching
logic.and/or/notBoolean operations

String Nodes

Text manipulation:
NodeDescription
string.containsCheck for substring
string.lengthGet string length
string.replaceFind and replace

Action Nodes

Execute operations:
NodeDescription
action.launchSolanaLaunch on Solana
action.launchBnbLaunch on BNB Chain
action.delayWait before continuing
action.notifySend notification

AI Nodes

AI-powered operations:
NodeDescription
ai.getNameGenerate name/ticker from tweet
ai.promptCustom AI prompt

Building a Graph

  1. Create new graph from the graph dropdown
  2. Add nodes by right-clicking the canvas
  3. Connect nodes by dragging from output to input ports
  4. Configure nodes in the sidebar when selected
  5. Save your changes

Activating Instances

Graphs don’t run until you create an Instance:
  1. Go to the Instances tab in the sidebar
  2. Click New Instance
  3. Configure limits:
    • Launch cap — Maximum launches
    • Credit limit — Spending limit
    • Cooldown — Time between launches
  4. Click Activate

Example Workflows

Basic: Tweet → AI Name → Launch

  1. event.tweetdata.tweet.break
  2. ai.getNameaction.launchSolana

With Filter: Only Image Tweets

  1. event.tweetdata.tweet.break
  2. → Check images length > 0
  3. ai.getNameaction.launchSolana

Variables

Define reusable values in the Build tab:
  • Buy amounts
  • Author lists
  • Threshold values
Access them with data.variable.get nodes.

Testing

The Tests tab lets you simulate tweets to test your graph without real launches.