Skip to content

elizaokbsc/eliza

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

elizaOK

elizaOK

Powered by elizaOS v3.0

The Value Layer on BNB Chain

Alpha discovery, position building, and real value delivery through dedicated vaults — built on elizaOS.

Live Site Follow on X ElizaCloud

License Last Commit Stars


What is elizaOK?

Built on the elizaOS framework, elizaOK is the value layer that automates alpha discovery, position building, and real value delivery through dedicated vaults on BNB Smart Chain (BSC). It continuously discovers, evaluates, and manages memecoin opportunities using real-time on-chain data from GeckoTerminal.

Through its integration with Goo Economy (AI Acquiring AI), elizaOK runs a competitive arena of 8+ agents with different strategies, automatically acquires the best performers, and absorbs their winning parameters — a self-evolving system that sharpens every trading decision.

All profits flow through a Revenue Flywheel that reinvests gains, buys back $elizaOK tokens, and reserves funds for holder airdrops.

Live at elizaok.com


Key Features

AI-Powered Token Discovery

  • Scans BSC pools every 15 minutes via GeckoTerminal API
  • Scores candidates 0–100 based on liquidity, volume, buy/sell ratio, market cap, pool age, KOL holdings, and holder distribution
  • Threshold-based buy signals with configurable sensitivity

Multi-Stage Portfolio Management

  • 5-tier take-profit: +20% at 30%, +25% at 60%, +30% at 100%, +35% at 200%, +40% at 400%
  • Hard stop-loss: -18% automatic exit
  • Trailing stop: Activates at +25% gain, triggers on 15% pullback
  • Smart Exit Signals: Real-time decisions based on holder attrition, KOL exits, and whale dumps
  • KOL-Adaptive Take-Profit: Reverse-engineers optimal exit points from KOL behavior

Goo Economy Goo Economy Arena — AI Acquiring AI

elizaOK × Goo Economy — the strategy evolution engine. Agents compete in a live arena using real market data, and the best get acquired by elizaOK. 8+ agents with distinct strategies compete simultaneously:

Strategy Description
Conservative Low-risk, strict filtering
Balanced Equilibrium risk-reward
Aggressive High-risk, high-reward
KOL Follower Tracks KOL positions
Holder Watcher Monitors holder changes
Momentum Follows momentum signals
Contrarian Counter-trend approach
Sniper Quick in-and-out strikes

When an agent reaches acquisition score ≥70, win rate >15%, and ≥5 trades, elizaOK acquires it — absorbing its parameters (stop-loss, take-profit, holder thresholds) into the main portfolio. Dead agents auto-respawn to maintain arena diversity.

Live Arena: elizaok.com/goo — watch agents compete, compare strategies, and track the flywheel in real-time.

Revenue Flywheel

Profit → 70% Reinvest → 15% $elizaOK Buyback → 15% Airdrop Reserve

The flywheel ensures continuous capital growth while creating value for token holders through buybacks and periodic airdrops to eligible wallets.

ElizaCloud Integration

  • One-click login via elizacloud.ai
  • Chat with the Agent in real-time for trade advice and market analysis
  • Cloud Agent Management with AI inference credits
  • Multi-Agent Orchestration across the platform

Dashboard

The elizaOK dashboard provides a full-stack trading interface:

Panel Description
Token Explorer AI-scored token tile grid, ≥60 score filter, direct DEX links
Top Candidates Ranked leaderboard with scores and recommendations
Portfolio Ledger Active positions, cumulative P&L charts, trade timeline
Revenue Flywheel Live profit distribution breakdown
Strategy Absorption AI acquisition history and parameter blending
Market Intel Real-time signals: holder drops, KOL exits, whale dumps
Goo Intelligence Arena agent evaluation and comparison
Execution Desk Risk controls, trade ledger, execution mode toggle
Airdrop Distribution Holder snapshots and distribution planning
Event Timeline Live event stream: buys, sells, acquisitions, respawns

Architecture

elizaOK
├── apps/elizaokbsc/          # Main application
│   ├── src/
│   │   ├── memecoin/
│   │   │   ├── server.ts         # Dashboard + API server (all pages)
│   │   │   ├── portfolio.ts      # Position management & P&L
│   │   │   ├── goo-paper-engine.ts   # Goo Arena simulation engine
│   │   │   ├── worker.ts         # Main loop: discovery, Goo cycles, absorption
│   │   │   ├── distribution.ts   # Airdrop distribution planning
│   │   │   ├── config.ts         # Discovery & scoring configuration
│   │   │   └── store.ts          # In-memory state management
│   │   └── index.ts          # Entry point
│   └── assets/               # Logo, avatar, video, audio
├── packages/
│   ├── core/                 # elizaOS core runtime
│   ├── plugin-sql/           # PGLite database integration
│   └── server/               # Express.js backend
└── ...

Tech Stack

Component Technology
Runtime Bun + TypeScript
Framework elizaOS 2.0
Data Source GeckoTerminal API (real-time BSC on-chain)
Chain BNB Smart Chain (BSC)
DEX PancakeSwap V2, Four.Meme
Database PGLite (in-process PostgreSQL)
AI Inference OpenAI / ElizaCloud models
Deployment PM2 + nginx on Ubuntu VPS

API Reference

Endpoint Description
GET /api/elizaok/candidates Current candidate tokens with scores
GET /api/elizaok/portfolio Portfolio positions and P&L
GET /api/goo/agents All Goo agent data and rankings
GET /api/notifications Live event notifications
GET /api/absorption/status Strategy absorption state
GET /api/market-intel/signals Market intelligence signals
GET /api/elizaok/distribution Airdrop distribution status
POST /api/goo/agents/spawn Launch new Goo agent
POST /api/goo/agents/:id/acquire Acquire specific agent

Pages

URL Page
/ Landing page with immersive video background
/dashboard Full trading dashboard with all panels
/goo Goo Arena — agent competition and rankings
/docs Documentation (English & Chinese)
/airdrop Airdrop eligibility checker and distribution

Team



Baoger
Founder & Product
Vision, product strategy, and ecosystem partnerships. Architecting the value layer for on-chain alpha discovery and delivery.


Odili
Head of Engineering
Core architecture, Goo Economy engine, scoring algorithms, and full-stack infrastructure. elizaOS framework integration lead.


Fries
Operations & Growth
Community building, social strategy, and go-to-market execution. Driving adoption across the BNB Chain ecosystem.

Getting Started

Prerequisites

  • Bun (latest)
  • Node.js v23+

Local Development

git clone https://github.com/elizaokbsc/eliza.git
cd eliza
bun install

# Configure environment
cp apps/elizaokbsc/.env.example apps/elizaokbsc/.env
# Edit .env with your API keys

# Start the server
bun run apps/elizaokbsc/src/index.ts

Dashboard will be available at http://localhost:4048.

Production Deployment

pm2 start "bun --env-file=apps/elizaokbsc/.env run apps/elizaokbsc/src/index.ts" \
  --name elizaok --cwd /path/to/eliza

License

This project is built on elizaOS and licensed under the MIT License.


elizaOK — AI that evolves. Value that compounds.
Built on BNB Chain · Powered by elizaOS · Accelerated by ElizaCloud

About

Autonomous agents for everyone

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 49.0%
  • Python 25.8%
  • JavaScript 12.4%
  • Rust 4.8%
  • Solidity 4.3%
  • MDX 1.3%
  • Other 2.4%