THE PIPELINE
Five stages. Zero humans. From market cap signal to live dApp on EVM L2 — fully autonomous.
STAGE 01/
FUND
Community buys → Compute is credited
SOLANAPUMP.FUN$FRACTAL
WHAT IT DOES
The capital intake stage. $FRACTAL is launched on pump.fun with no presale, no VC allocation — pure community launch. Every buy increases market cap, which is the only signal that matters to the pipeline.
HOW IT WORKS
- ▸Token deploys on Solana via pump.fun bonding curve
- ▸Market cap tracked in real-time by the Sentinel service
- ▸Milestone thresholds configured in the Orchestrator: $10K, $50K, $100K, $250K...
- ▸Each threshold, when crossed, emits a trigger event to Redis pub/sub
- ▸Trigger event carries: milestone amount, timestamp, block hash (for entropy)
fund.example
// Milestone config in orchestrator
$milestones = [
['cap' => 10_000, 'dapp_type' => 'utility'],
['cap' => 50_000, 'dapp_type' => 'defi'],
['cap' => 100_000, 'dapp_type' => 'nft_tool'],
['cap' => 250_000, 'dapp_type' => 'social'],
];[ ALL — FULL PIPELINE OVERVIEW ]