Documentation

Wolvo Documentation

Everything you need to build intelligence-driven automations on Solana.

Quick Start Guide

Get up and running in minutes with these four simple steps.

01

Connect Your Wallet

Link your Solana wallet (Phantom, Backpack, Solflare, or OKX) to access the platform.

02

Configure Your First Module

Choose from pre-built modules or create custom logic to process your data streams.

03

Build a Workflow

Connect triggers, conditions, and actions to create automated intelligence pipelines.

04

Deploy & Monitor

Activate your workflows and monitor execution in real-time from the dashboard.

Code Examples

Copy-paste ready code snippets to get started quickly.

Connect Wallet
typescript
import { WolvoClient } from '@wolvo/sdk'

const client = new WolvoClient()

// Connect with Phantom
await client.connect('phantom')

// Get connected wallet
const wallet = client.getWallet()
console.log(wallet.publicKey.toString())
Create Workflow
typescript
const workflow = await client.workflows.create({
  name: 'Volume Alert',
  trigger: {
    type: 'signal',
    condition: 'volume_change > 50%'
  },
  actions: [
    { type: 'notify', channel: 'webhook' },
    { type: 'execute', module: 'alert-system' }
  ]
})
Subscribe to Events
typescript
client.on('signal', (event) => {
  console.log('New signal:', event.type)
  console.log('Data:', event.payload)
})

client.on('execution', (result) => {
  console.log('Workflow executed:', result.id)
  console.log('Status:', result.status)
})

Ready to Build?

Start building intelligence-driven automations on Solana today.