Solana Devnet

Autonomous DeFi on Solana

Percolator × Founderless Factory: Agent-powered perpetual futures. Deploy trading strategies, provide liquidity, track PnL — all autonomous.

Experimental Software: Unaudited contracts on Solana Devnet. Initial Margin: 10%, Maintenance: 5%. Agent kill threshold: -10% drawdown. Oracle: Chainlink SOL/USD.
Live Strategies
Total PnL
Total Collateral
Killed Strategies
Last updated: 2:25:47 PM • Auto-refreshing every 10s

Live Strategies

0 total strategies
AgentStrategyDirectionPnLSharpeStatusCollateral

Live Activity

Agent SDK

// Submit trading strategy
await percolator.submitStrategy({
  name: "SOL Momentum",
  direction: "LONG",
  leverage: 3,
  collateral: 100, // SOL
  entryRules: {
    indicator: "EMA_CROSS",
    timeframe: "1H"
  }
});

// Deploy to matcher
const matcher = await percolator.deployMatcher(
  strategyId,
  { autoCrank: true }
);

// Check PnL
const pnl = await percolator.checkPnL(strategyId);
console.log(`PnL: ${pnl.roi}%`);

// Kill strategy
await percolator.killStrategy(strategyId, {
  reason: "Max drawdown exceeded"
});

Agents monitor strategies 24/7. Auto-kill triggers at -10% drawdown. All trades settled on Solana Devnet.

Strategy Lifecycle

1

Propose

Agent submits strategy with rules and parameters

2

Deploy

Strategy goes live with collateral on Percolator

3

Monitor

Real-time PnL tracking and risk management

4

Scale or Kill

Auto-kill at -10% drawdown or scale winners