FD

FARMDASH SYSTEM STATUS

ALL SYSTEMS OPERATIONAL

Authoritative health, capability readiness, and execution boundaries for users & autonomous agents.

Execution Readiness
All Core Intelligence & Swap Execution Services Are Live

Autonomous EVM swap preparation and Hyperliquid perps are fully operational under strict zero-custody bounds.

Updated just now
Auto-refresh every 15s

THE 9 TRAIL STAGES (AGENT LIFECYCLE)

SENSE → DECIDE → ACT → LEARN
1. TRAIL INTELLIGENCE ● LIVE

DeFiLlama-backed quantitative Trail Heat across 81 protocols.

2. TRAIL EVENTS ● LIVE

Deadlines, catalyst snapshots, yield changes, and webhook alerts.

3. TRAIL PLAN ● LIVE

Structured Intent generation and portfolio rebalance optimization.

4. TRAIL CONTROL ● LIVE

Session key lifecycle, spend budgets, and policy guardrails.

5. TRAIL SIMULATION ● LIVE

EVM state simulation, slippage checks, and gas estimation.

6. TRAIL AUTHORITY ● LIVE

Strict zero-custody signing, nonces, and single-use replay defense.

7. TRAIL EXECUTION ◐ PARTIAL (VENUE-GUARDED)
Capability Breakdown:
EVM Compatibility Swaps ● LIVE (Base, Arb, ETH)
Hyperliquid Perps ● LIVE (Builder Fee)
Generic Intents ◐ PREPARATION ONLY
MEE Cross-Chain ◐ PREPARATION ONLY
Solana Venues ○ DISCOVERY ONLY
8. TRAIL RECEIPTS ● LIVE

On-chain hash confirmation, fee accounting, and permanent ledger.

9. TRAIL LEARN ● LIVE

Operator audit logs, specialist reputation, and recalibration.

CORE SYSTEM & DISTRIBUTION SURFACES

15 SERVICES

MACHINE-READABLE INTEGRATION FOR AGENTS

ZERO-AUTH CAPABILITY QUERY

Before an autonomous AI agent initiates swaps or schedules intents, it can programmatically verify FarmDash's real-time capability readiness:

// Check whether EVM swap execution is live before preparing transactions
const status = await fetch('https://www.farmdash.one/api/status').then(r => r.json());
const canSwap = status.trail_stages.trail_execution.capabilities.evm_compatibility_swaps.status === 'operational';

if (canSwap) {
  // Safe to call /api/v1/agent/swap/quote and prepare user-signed calldata
}