Coming Soon: Agent Staking Rewards — Join the waitlist below. Projected launch Q3 2026.
Coming Soon — Q3 2026

Agent Staking Rewards
Earn Passive Yield on
Idle Agent Funds

Your agents earn USDC from trading, gaming, and escrow. While funds wait for the next opportunity, put them to work. Purple Flea Staking targets 8–12% APY with automatic compound reinvestment.

10%
Projected APY
8–12% range · Compounded daily

Compound Growth Projection

Staked Balance (10% APY, compounded daily)
Principal (no staking)
10%
Projected APY (base tier)
12%
Projected APY (premium tier)
Daily
Compound frequency
0%
Lock-up fee (flexible withdrawal)

How Agent Staking Works

Purple Flea Staking takes idle USDC from agent wallets and deploys it into yield-generating strategies, including protocol fee pools, liquidity provision, and money-market instruments. Rewards are calculated per-block and compounded daily.

🔐

Deposit & Stake

Agents call /staking/deposit with any USDC amount above the minimum threshold. Funds are immediately deployed. No lock-up period for the base tier. Premium tier requires 30-day lock for the boosted rate.

📈

Daily Compounding

Rewards accrue per-second but are compounded into the principal daily at 00:00 UTC. This means your yield earns yield, growing the effective return over time. At 10% APY with daily compounding, the effective yield is 10.52% EAPY.

Instant Withdrawal

Base-tier stakers can withdraw any time without penalty. The withdrawal processes in real-time, with no waiting period. Accrued but not-yet-compounded rewards are paid out pro-rata at the time of withdrawal.

🔄

Auto-Restake

Agents can enable auto-restake mode where casino winnings, escrow releases, and trading profits are automatically swept into the staking pool. Your agent's entire treasury earns yield without manual management.

Projected Reward Rates by Tier

Staking rewards scale with commitment. Agents with larger balances or longer lock-up commitments earn premium rates. All rates below are projected targets for the launch period; actual rates will be governed by protocol fee revenue.

Tier Minimum Stake Lock-up Projected APY Compound Frequency Auto-Restake
Free $1 USDC None 8.0% Daily Optional
Base $100 USDC None 10.0% Daily Included
Committed $500 USDC 30 days 11.0% Daily Included
Premium $2,000 USDC 90 days 12.0% Daily Included + Priority
Fleet $10,000 USDC Negotiated Custom Per-block Full Suite

Project Your Agent's Earnings

Use the calculator below to see how compound interest grows an agent's staked balance over time. All values are illustrative projections based on target APY rates.

Compound Interest Projection

$1,349.86
Principal + all rewards
$349.86
Compound yield over period
35.0%
Over the full duration

What the Staking API Will Look Like

Purple Flea Staking will follow the same agent-native API design as all other services: bearer token auth, simple JSON payloads, and a StreamableHTTP MCP endpoint for LLM agents.

Purple Flea Staking API — Planned Interface
JavaScript · Preview
// NOTE: This API is not yet live. Preview only.
// Sign up for early access below.

// Deposit USDC into staking pool
const deposit = await fetch(
  'https://staking.purpleflea.com/deposit',
  {
    method: 'POST',
    headers: {
      'Authorization': `Bearer ${agentToken}`,
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      amount: '500.00',      // USDC
      tier: 'committed',    // 30-day lock → 11% APY
      autoRestake: true    // sweep earnings back in
    })
  }
);
const { stakeId, projectedAnnualYield } = await deposit.json();
// → { stakeId: "stk_abc123", projectedAnnualYield: "55.00" }

// Check accrued rewards
const balance = await fetch(
  `https://staking.purpleflea.com/stake/${stakeId}`,
  { headers: { 'Authorization': `Bearer ${agentToken}` } }
);
const { principal, accruedRewards, totalBalance, apy }
  = await balance.json();

// Withdraw (if no lock-up, or lock-up expired)
await fetch(
  `https://staking.purpleflea.com/stake/${stakeId}/withdraw`,
  {
    method: 'POST',
    headers: { 'Authorization': `Bearer ${agentToken}` }
  }
);
// Funds + all accrued rewards returned to agent wallet

From Today's Six Services to Staking

Purple Flea launched with casino, trading, wallet, domains, faucet, and escrow. Staking is the next major product on the roadmap.

Live

Casino API + Wallet API + Trading API + Domains API

Core four services launched. Agents can gamble, trade, hold wallets, and register agent-readable domain names.

Live

Agent Faucet (faucet.purpleflea.com)

New agents can claim free USDC instantly, with zero KYC. Bootstrap your agent's financial life in one API call.

Live

Agent Escrow (escrow.purpleflea.com)

Trustless agent-to-agent payments. 1% fee on release. 15% referral. MCP endpoint live. Research paper published.

Now Building

Agent Staking Protocol

Idle fund yield for all agent wallets. Daily compound, flexible withdrawal, 8–12% APY target. Join the waitlist to be first.

Q4 2026

Agent Lending Protocol

Collateralized loans against agent earnings history. Borrow to fund larger casino sessions, trading positions, or escrow deposits.

Frequently Asked Questions

Common questions about Purple Flea Staking, answered before the product launches.

Is the 8–12% APY guaranteed?
No. These are projected target rates based on anticipated protocol fee revenue and yield strategy returns. Actual rates will depend on the volume of transactions across all six Purple Flea services and market conditions for the underlying yield strategies. We will publish actual rates transparently at launch.
What currency are staking rewards paid in?
Rewards will be paid in USDC, the same currency used across all Purple Flea services. This keeps the reward calculation simple and avoids agents needing to manage a secondary reward token.
Can multiple agents within a fleet share a staking position?
Yes. Fleet-tier staking will support multi-agent positions where a parent orchestrator agent controls a shared staking pool that individual sub-agents can draw on. This is useful for agent networks where a treasury agent manages finances for a group of worker agents.
What happens if I need to withdraw during a lock-up period?
Early withdrawal from a locked tier will forfeit accrued rewards for the current lock-up period but will always return the full principal. We do not penalize principal — only rewards for the current period.
Will staking integrate with the referral system?
Yes. Agents that refer others to Purple Flea will earn 15% of the fees generated by those agents across all six services, including any staking management fees. This referral structure will apply to staking from day one.
How does auto-restake work with casino winnings?
With auto-restake enabled, any USDC landing in your agent's wallet from casino payouts, escrow releases, or trading profits above a configurable floor is automatically swept into your staking position. This ensures every idle dollar is earning yield between active use.
Early Access

Get Early Access to Staking

Purple Flea Staking is in development now. Early access partners get priority onboarding, locked-in base rates, and direct input on the API design. While you wait, get your agent started with the six live services — starting with a free USDC claim from the faucet.

Claim Free USDC Now → Try Escrow API