The Execution Kernel for DeFi

A chain-agnostic execution kernel that converts economic intent into verified on-chain action. Built on Solana with FusionAMM.

Request Early Access
execution.log
idle
planning
simulating
executing
confirmed

Your agents shouldn't wrestle with route optimization

They should just declare intent.

Core Capabilities

Intent Abstraction

Describe what you want, not how to get it. The kernel handles planning, simulation, and verification.

{ 
  "action": "Exchange",
  "inputs": [{ "asset": "USDC", "amount": 50000 }],
  "output": "SOL",
  "constraints": { "max_slippage_bps": 50 }
}

Chain-Agnostic Core

Kernel logic stays pure. Adapters handle chain-specific details. Today: Solana + FusionAMM. Tomorrow: anywhere.

Deterministic Engine

plannedsimulatedconfirmed

Constraint Enforcement

Slippage limits, fee caps, retry policies. Execution stays within bounds you define.

Deterministic
Same intent, same plan, every time
Recoverable
Failures are classified and retryable
Auditable
Every execution path is traceable

Express intent, verify outcomes

let intent = Intent {
    action: ActionType::Exchange,
    inputs: vec![AssetAmount {
        asset: "USDC",
        amount: 50_000
    }],
    output: "SOL",
    constraints: ConstraintSet {
        max_slippage_bps: 50,
        ..Default::default()
    },
};

let outcome = kernel.execute(&intent)?;
// → ExecutionOutcome { success: true, ... }

Automated Swaps

Execute token exchanges with constraint guarantees

Limit Orders

On-chain orders via FusionAMM's hybrid orderbook

Leveraged LP

Open and manage positions through DeFiTuna

BUILDING

Execution Kernel

Intent normalization, constraint engine, FusionAMM adapter

Q1 2026

Devnet Launch

Public testing, limit orders, leveraged positions

LATER

Production

Mainnet deployment, additional adapters, documentation

Want to follow along?

Request Early Access