Oni Network

Oni Network Bot

Smart Money Tracking / Whale Signal / Network Health

Real signal from the network layer — not price noise.

Oni Network reads raw Solana on-chain metrics and outputs a DEMON_LORD to VOID verdict backed by five weighted flow signals. Built for traders who need network-layer intelligence before price reacts.

$ONIContract Address
TBA
LIVEOni Network Bot now active
Flow Analysis

The Problem

Most traders react to price. By then, smart money has already moved. The signal is in the network layer — wallet flows, whale activity, routing health — not candlesticks.

Oni Network Bot reads raw Solana on-chain metrics and outputs a verdict backed by five weighted flow signals. It tells you what the network actually knows, not what the chart says.

Architecture

How It Works

NetworkPulse (12 on-chain fields)
       |
       |-- FlowAgent          -> flow_strength   (buy/sell ratio, volume)
       |-- WhaleAgent         -> whale_signal    (smart money, whale density)
       |-- ActivityAnalyzer   -> network_activity (engagement, signers)
       |-- RoutingAnalyzer    -> routing_health  (failed tx, DEX spread)
       |__ PulseAnalyzer      -> pulse_score     (10-pattern check)
              |
         OniEngine (weighted average)
              |
         FlowReport { oni_id, verdict, final_score, metrics, intel }
Flow Metrics
SignalWeightMeasures
Flow Strength25%Buy/sell ratio, volume velocity, tx count
Whale Signal25%Smart money density, whale wallet count, avg tx size
Network Activity20%Wallet engagement rate, signer diversity
Routing Health20%Failed tx ratio, DEX concentration, dust detection
Pulse Score10%10-pattern check: buy dominant, SM active, whale present
Oni Verdicts

The engine classifies every token into one of six network states:

DEMON_LORD90-100

Maximum flow alignment. Smart money is in.

WARLORD75-89

Strong whale presence, healthy routing.

GUARDIAN60-74

Stable network, organic adoption signals.

SPIRIT40-59

Mixed. Watch volume ratios closely.

SHADOW20-39

Weak flow. Red flags in routing or activity.

VOID0-19

Dead network or active manipulation.

Install

pip install oni-network

01
pip install oni-networkInstall from PyPI
02
git clone https://github.com/theoninetwork/Oni-Network.gitOr clone from source
03
pip install -e .Install in editable mode
example.py
Python
from oni.models import NetworkPulse
from oni.engine import OniEngine

engine = OniEngine()

pulse = NetworkPulse(
    contract_address="TBA",
    total_wallets=5000,
    active_wallets_24h=1200,
    whale_wallets=15,
    smart_money_wallets=60,
    buy_volume_24h=2_500_000,
    sell_volume_24h=800_000,
    tx_count_24h=3500,
    failed_tx_ratio=0.04,
    unique_signers_24h=900,
    avg_tx_size=2200,
    dex_concentration=0.35,
)

report = engine.analyze(pulse)
print(report.verdict)       # WARLORD
print(report.final_score)   # 82.5
print(report.oni_id)        # A3F9B2C1
Navigation

Explore

Six network states. Five flow metrics. One verdict.

Intelligence Output
[ONI-ID: A3F9B2C1]
[FLOW] Buy dominant — 75.8% of volume is accumulation
[WHALE] 15 whale wallets detected | Smart money: 1.2% of active wallets
[PULSE] Active patterns: buy_dominant, sm_active, whale_present
[VERDICT] WARLORD — 82.5