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.
Connect your wallet, fund with testnet USDC, and Flintex's agents go to work autonomously across portfolio management, market creation, and intelligent betting.
Connect your Circle Wallet or create one in-app. Deposit testnet USDC. The capital pool is shared across all three agents.
PortfolioAgent scans your holdings. MarketAgent monitors macro news. BetAgent watches open prediction markets for mispricing.
A master AI brain decides every cycle how to split USDC between the three strategies based on current opportunity scores.
Every rebalance, market creation, and bet executes on Arc. Sub-second finality. ~$0.01 fees in USDC. No waiting, no reorgs.
No silos. One USDC pool flows dynamically between three autonomous strategies based on where the edge is highest right now.
Monitors your holdings, detects market regime, rebalances automatically, and parks idle USDC in USYC during risk-off periods.
Scans macro and geopolitical news in real time, identifies events worth betting on, and creates USDC prediction markets on Arc automatically.
Finds mispriced prediction markets, calculates true probability estimates, and sizes positions optimally using the Kelly Criterion formula.
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.
// 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 →
Flintex uses every primitive in the Circle stack — Wallets, USYC, Gateway, CCTP, Paymaster, and App Kit — to build the first three-agent market OS.
Every Flintex user gets a Circle Wallet. Agents operate from the same wallet, sharing one USDC pool.
PortfolioAgent moves idle USDC to USYC during risk-off regimes. Capital works even when agents are waiting.
Fund Flintex from any chain. Gateway normalizes everything to Arc USDC in under 500ms.
PortfolioAgent rebalances across chains using CCTP for multi-venue collateral movement.
No volatile gas tokens. Every agent transaction is fee-paid in USDC via Circle Paymaster.
Drop-in components for bridging, swapping, and sending USDC directly inside the Flintex UI.