Live on Arc Testnet

Three agents.
One capital pool.
Every edge.

Flintex deploys three autonomous AI agents that share a single USDC wallet — rebalancing your portfolio, creating macro prediction markets, and sizing bets with Kelly Criterion. All settled on Arc in under a second.

Flintex · Capital Pool · Arc Testnet
$24,850.00
↑ +3.2% · Regime: RISK-ON · USYC yield active
PortfolioAgent
REBALANCING42%
MarketAgent
3 MARKETS OPEN31%
BetAgent
2 +EV FOUND27%
Settlement time
<1s
Arc finality · deterministic
Cost per tx
~$0.01
USDC · no volatile gas
Active agents
3
Portfolio · Market · Bet
Powered by
Circle
Wallets · USYC · Gateway · CCTP
The flow

Three agents. Zero manual decisions. Full market coverage.

Connect your wallet, fund with testnet USDC, and Flintex's agents go to work autonomously across portfolio management, market creation, and intelligent betting.

01
Connect & fund

Connect your Circle Wallet or create one in-app. Deposit testnet USDC. The capital pool is shared across all three agents.

02
Agents activate

PortfolioAgent scans your holdings. MarketAgent monitors macro news. BetAgent watches open prediction markets for mispricing.

03
AI allocates capital

A master AI brain decides every cycle how to split USDC between the three strategies based on current opportunity scores.

04
Arc settles instantly

Every rebalance, market creation, and bet executes on Arc. Sub-second finality. ~$0.01 fees in USDC. No waiting, no reorgs.

The agents

Each agent owns a job. All three share one wallet.

No silos. One USDC pool flows dynamically between three autonomous strategies based on where the edge is highest right now.

Integration

Three agents wired to one shared brain.

The master allocator runs every cycle — scoring opportunities across all three agents and splitting USDC to where the edge is sharpest. Every decision is logged onchain.


See the full architecture →
capitalPool.ts
// Master allocator — runs every 60s
const pool = await getCapitalPool(walletId);

const scores = {
  portfolio: await portfolioAgent.score(),
  markets:   await marketAgent.score(),
  bets:      await betAgent.score(),
};

// AI decides allocation ratio
const alloc = allocate(pool.usdc, scores);

// Settle on Arc in <1s
await arcSettle({
  walletId,
  allocation: alloc,
  paymaster: 'circle',
});
SEE THE FULL REFERENCE →
Principles

Built for agents. Settled like a bank.

Arc-native
Sub-second finality,
every time
Circle Wallets
Embedded wallets,
zero custody risk
USYC yield
Idle capital earns,
always
Full autonomy
Agents decide,
not humans
The stack

Circle's full developer platform. On Arc.

Flintex uses every primitive in the Circle stack — Wallets, USYC, Gateway, CCTP, Paymaster, and App Kit — to build the first three-agent market OS.

Circle Wallets
Embedded wallet per user

Every Flintex user gets a Circle Wallet. Agents operate from the same wallet, sharing one USDC pool.

USYC
Yield on idle capital

PortfolioAgent moves idle USDC to USYC during risk-off regimes. Capital works even when agents are waiting.

Gateway
Unified cross-chain balance

Fund Flintex from any chain. Gateway normalizes everything to Arc USDC in under 500ms.

CCTP
Cross-chain USDC moves

PortfolioAgent rebalances across chains using CCTP for multi-venue collateral movement.

Paymaster
Gas fees in USDC

No volatile gas tokens. Every agent transaction is fee-paid in USDC via Circle Paymaster.

App Kit
Bridge · Swap · Send

Drop-in components for bridging, swapping, and sending USDC directly inside the Flintex UI.