RevenAI — The Undead AI Agent

Resurrecting dead crypto trends before the market knows they're alive. RevenAI is the necromancer of on-chain intelligence.

💀 What is RevenAI?
RevenAI is an AI-powered agent that scans the graveyard of forgotten crypto trends on X (Twitter), analyzes on-chain data, and predicts which "dead" tokens and narratives are about to resurrect — giving you the alpha before the crowd.

Key Features

🪦 Graveyard Scanner

Continuously monitors tokens and narratives that have been declared "dead" by the market.

🔮 X Buzz Oracle

Real-time sentiment analysis across X, detecting early whispers of resurrection.

🧟 Resurrection Alerts

Instant notifications when a dead trend shows signs of coming back to life.

📈 Pump Prediction

AI-driven scoring system that predicts the likelihood and magnitude of a resurrection pump.

⚙️ How It Works

  1. Scan the Dead — RevenAI's crawler monitors X for tokens and narratives with declining mentions, flagging them for the graveyard.
  2. Analyze the Bones — On-chain data (whale movements, liquidity shifts, smart money flows) is cross-referenced with social signals.
  3. Predict Resurrections — Our necromantic AI model assigns a Resurrection Score (0–100) to each candidate.
  4. Alert the Army — When a score crosses the threshold, you get notified before the crowd catches on.
⚠️ Dark Arts Warning
RevenAI provides signals, not financial advice. The graveyard is unpredictable — always do your own research. Not all the dead deserve to rise.

Quick Start

From zero to necromancer in five steps. Get RevenAI running and start detecting resurrections.

1

Access the Dashboard

Navigate to the RevenAI Dashboard to enter the Graveyard. No installation required — it runs in your browser.

2

Browse the Graveyard

Explore the live feed of dead and dying tokens. Each entry shows its death classification, last known activity, and current whisper level on X.

3

Ask the Necromancer

Use the AI chat interface to ask questions like "Which memecoins are showing signs of life?" or "What's the resurrection score for $PEPE?"

4

Set Resurrection Alerts

Configure alerts for specific tokens or score thresholds. Get notified via webhook, email, or directly on the dashboard when the dead start moving.

5

Integrate via API

Connect RevenAI to your trading bots, dashboards, or workflows using the REST API or WebSocket feeds.

🧪 Pro Tip
Start by watching the "STIRRING" category — these are tokens showing the first faint heartbeat. Combine with whale movement data for maximum alpha.

Core Concepts

The fundamental building blocks of RevenAI's necromantic intelligence system.

🎯 Resurrection Score

Every token in the graveyard is assigned a Resurrection Score from 0 to 100. This score represents the AI's confidence that the token will experience a significant price recovery.

// Resurrection Score Ranges
const SCORE_RANGES = {
  DEAD:         "0-20",    // No signs of life
  DORMANT:      "21-40",   // Faint whispers detected
  STIRRING:     "41-60",   // Notable activity brewing
  AWAKENING:    "61-80",   // Strong resurrection signals
  RESURRECTING: "81-100",  // Rise from the grave imminent
};

🪦 Death Classification

Tokens in the graveyard are classified into three states based on their activity level and score:

StatusClassificationScore RangeDescription
🪦 BURIED 0 – 40 Deep in the grave. Minimal activity, declining mentions, no whale interest.
🧟 STIRRING 41 – 70 Something's moving. Unusual on-chain activity or growing X whispers detected.
RESURRECTING 71 – 100 Rising from the dead. Strong multi-signal confluence. High pump probability.

📡 Signal Types

RevenAI tracks five core signal types that contribute to the Resurrection Score:

  • RESURRECT Multi-factor resurrection signal — the strongest indicator that a dead token is coming back.
  • WHALE_WAKE Large wallet accumulation detected. Smart money is moving into a dormant token.
  • BUZZ_SPIKE Sudden increase in X mentions and engagement after a prolonged silence period.
  • GRAVE_EXIT Token is being removed from "dead" watchlists — a contrarian bullish signal.
  • DEATH_WATCH Token is entering critical zone — may die permanently or stage a dramatic comeback.

Graveyard Scanner

The all-seeing eye that watches over the cryptographic dead. Continuously scanning for signs of life in the graveyard.

The Graveyard Scanner is RevenAI's core monitoring engine. It tracks thousands of tokens that have experienced significant price declines, volume drops, and social media abandonment — then watches for any anomalies that might signal a resurrection.

🔍 How Scanning Works

// Initialize the Graveyard Scanner
const scanner = new GraveyardScanner({
  depth: "deep",          // How far back to scan
  chains: ["ethereum", "solana", "base"],
  minDeathAge: 30,        // Days since "death"
  sensitivity: "paranoid"  // Miss nothing
});

// Start watching the graveyard
scanner.watch((event) => {
  if (event.type === "STIR_DETECTED") {
    console.log(`🧟 Movement detected: ${event.token}`);
    console.log(`   Score: ${event.resurrectionScore}/100`);
  }
});JavaScript

📊 Scanner Metrics

🪦 Graves Monitored

12,847 tokens currently being watched across 6 chains.

⚡ Scan Frequency

Every 15 seconds for active graves, 5 minutes for dormant ones.

X Buzz Oracle

Listening to the whispers of the dead across X. The Oracle decodes sentiment shifts before they become trends.

The X Buzz Oracle connects to X's firehose and applies RevenAI's proprietary NLP models to detect early narrative shifts, sentiment reversals, and emerging buzz around previously dead tokens.

🔮 Oracle Query

// Query the X Buzz Oracle
const oracle = await revenai.buzzOracle({
  token: "$PEPE",
  timeframe: "7d",
  includeKOL: true,      // Track key opinion leaders
  sentimentDepth: "deep" // Full emotional analysis
});

console.log(oracle.buzzLevel);     // "RISING_WHISPER"
console.log(oracle.sentimentShift); // +34.7% (bearish → curious)
console.log(oracle.kolMentions);     // 12 new KOL mentionsJavaScript
🔮 Oracle Insight
The most profitable resurrections are preceded by a "whisper phase" — 3-7 days of slowly increasing mentions from small accounts before any major influencer picks it up. The Oracle detects this phase.

Resurrection Alerts

Never miss a rising from the dead. Configure real-time alerts for the signals that matter to you.

🔔 Setting Up Alerts

// Configure resurrection alerts
const alert = await revenai.createAlert({
  name: "Memecoin Gravewatch",
  conditions: {
    minScore: 65,                  // Minimum resurrection score
    signals: ["RESURRECT", "WHALE_WAKE"],
    chains: ["solana", "base"],
    categories: ["memecoin"]
  },
  delivery: {
    webhook: "https://your-api.com/alerts",
    priority: "critical"
  }
});

console.log(`🧟 Alert active: ${alert.id}`);JavaScript

📋 Alert Conditions

  • minScore — Minimum Resurrection Score to trigger (0–100)
  • signals — Array of signal types to watch for
  • chains — Blockchain networks to monitor
  • categories — Token categories: memecoin, defi, nft, l2, gaming
  • buzzThreshold — Minimum X buzz level change to trigger

Pump Prediction

The dark art of predicting when the dead will rise — and how high they'll climb.

RevenAI's Pump Prediction engine combines on-chain analytics, social sentiment, and historical resurrection patterns to estimate the probability and potential magnitude of a token's comeback.

🧠 Prediction Model

// Get pump prediction for a token
const prediction = await revenai.predictPump({
  token: "$BONK",
  timeframe: "72h",
  confidence: "high"
});

// Response
{
  token: "$BONK",
  resurrectionScore: 78,
  pumpProbability: 0.73,
  estimatedGain: "120-340%",
  confidence: "HIGH",
  signals: ["WHALE_WAKE", "BUZZ_SPIKE"],
  riskLevel: "MODERATE",
  necromancerNote: "The bones are warm. Multiple whale wallets accumulating. X buzz rising from the whisper phase."
}JavaScript
⚠️ Risk Disclaimer
Pump predictions are probabilistic estimates, not guarantees. Even a 90+ score can fail. The graveyard has claimed many overconfident traders. Manage your risk accordingly.

REST API

Programmatic access to the graveyard. Integrate RevenAI into your bots, dashboards, and trading systems.

🔑 Authentication
All API requests require a Bearer token. Include it in the Authorization header: Bearer rvn_your_api_key

📡 Endpoints

GET/api/v1/graveyard
List all tokens in the graveyard with current scores and classifications.
GET/api/v1/graveyard/:token
Get detailed resurrection data for a specific token.
GET/api/v1/signals
Stream recent signals across all monitored tokens.
POST/api/v1/predict
Request a pump prediction for a specific token and timeframe.
POST/api/v1/alerts
Create a new resurrection alert with custom conditions.
GET/api/v1/buzz/:token
Query the X Buzz Oracle for a token's social sentiment data.

💻 Example Request

# Fetch graveyard data
curl -X GET "https://api.revenai.xyz/v1/graveyard" \
  -H "Authorization: Bearer rvn_your_api_key" \
  -H "Content-Type: application/json"

# Response
{
  "graves": [
    {
      "token": "$DOGE",
      "chain": "ethereum",
      "resurrectionScore": 72,
      "classification": "RESURRECTING",
      "signals": ["WHALE_WAKE", "BUZZ_SPIKE"],
      "lastActivity": "2025-01-15T08:30:00Z"
    }
  ],
  "total": 12847,
  "page": 1
}cURL

WebSocket

Real-time connection to the graveyard. Receive resurrection events as they happen — no polling required.

Connection

// Connect to the RevenAI WebSocket
const ws = new WebSocket("wss://ws.revenai.xyz/v1/stream");

ws.onopen = () => {
  // Authenticate
  ws.send(JSON.stringify({
    type: "auth",
    token: "rvn_your_api_key"
  }));

  // Subscribe to resurrection events
  ws.send(JSON.stringify({
    type: "subscribe",
    channels: ["resurrections", "whale_wakes", "buzz_spikes"],
    minScore: 50
  }));
};

ws.onmessage = (event) => {
  const data = JSON.parse(event.data);
  console.log(`🧟 ${data.signal}: ${data.token} (Score: ${data.score})`);
};JavaScript

📢 Event Types

  • resurrection — Token crossed the resurrection threshold
  • whale_wake — Large wallet activity on a graveyard token
  • buzz_spike — Sudden X mention increase
  • score_change — Resurrection Score changed significantly
  • death_watch — Token entering critical zone

Webhooks

Push-based delivery for resurrection events. RevenAI calls your endpoint when the dead start moving.

🔗 Webhook Setup

# Register a webhook endpoint
curl -X POST "https://api.revenai.xyz/v1/webhooks" \
  -H "Authorization: Bearer rvn_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-app.com/revenai-hook",
    "events": ["resurrection", "whale_wake"],
    "secret": "your_webhook_secret",
    "minScore": 60
  }'cURL

📦 Webhook Payload

// Incoming webhook payload
{
  "id": "evt_rvn_8x7k2m",
  "type": "resurrection",
  "timestamp": "2025-01-15T08:30:00Z",
  "data": {
    "token": "$SHIB",
    "chain": "ethereum",
    "resurrectionScore": 84,
    "previousScore": 31,
    "classification": "RESURRECTING",
    "signals": ["RESURRECT", "WHALE_WAKE", "BUZZ_SPIKE"],
    "necromancerNote": "From the grave it rises. Three convergent signals. The bones sing."
  }
}JSON
🔐 Webhook Security
All webhook payloads are signed with your webhook secret using HMAC-SHA256. Verify the X-RevenAI-Signature header to ensure authenticity.