Testnet v0.7 · Live
Build
Faster
on Chain
AnsemAgent connects EVM and Solana — fast finality, smooth developer experience, global network coverage powered by autonomous on-chain agents.
Network Information
◉Chain ID
307
⌁RPC
https://rpc.ansemagent.network
◎Explorer
t-explorer.ansemagent.network
↗Network
Testnet
Why AnsemAgent?
</>
EVM Compatible
Write Solidity contracts, use familiar tools, and connect existing wallets.
◎
Solana-Linked
Bridge assets between EVM and Solana ecosystems seamlessly.
✦
Builder-First
Fast setup, clear documentation, and free testnet tokens.
✶
Agent-Powered
Autonomous on-chain agents orchestrate liquidity, routing, and execution.
307
Chain ID
~1.2s
Block time
12k+
Testnet wallets
4.8M
Txns processed
$0.0001
Avg. fee
Platform
Engineered for the next wave of on-chain apps
A modular L1 with an embedded agent runtime — designed so teams ship in days, not quarters.
</>
EVM Compatible
Deploy Solidity contracts unchanged. MetaMask, Foundry, Hardhat, viem and ethers all just work.
◎
Solana Bridged
Native canonical bridge to Solana mainnet with sub-minute settlement and verified message passing.
✶
Agent Runtime
First-class autonomous agents with deterministic scheduling, on-chain triggers, and signed actions.
⚡
Sub-second Finality
DAG-ordered consensus delivers ~1.2s block times and single-slot finality under load.
$
Microcent Fees
Transactions average $0.0001. Sponsored gas via paymasters and account abstraction built-in.
⛨
Verifiable Off-chain
Co-processors run zk and TEE workloads, with proofs settled atomically alongside state.
Architecture
A runtime built around agents
Smart contracts and autonomous agents share state through a deterministic execution layer with sub-second finality.
- 1Execution layerReth-derived EVM forked for parallel transaction execution and per-account state locks.
- 2Agent kernelEmbedded WASM runtime schedules agent tasks against block triggers, time triggers, and signed intents.
- 3Cross-chain meshLight-client bridges to Solana and Ethereum allow agents to read remote state and dispatch signed messages.
- 4Data availabilityErasure-coded DA layer keeps history cheap and externally verifiable by any full node.
agent.ts
import { defineAgent } from "@ansemagent/runtime";
export default defineAgent({
name: "liquidity-router",
chains: ["ansem", "solana"],
triggers: {
onBlock: async (ctx) => {
const pool = await ctx.evm.read("UniV4Pool", "slot0");
if (pool.priceX96 < ctx.target) {
await ctx.solana.swap({
from: "USDC",
to: "SOL",
amount: ctx.size,
});
}
},
},
});Use cases
What people are building
From autonomous DeFi strategies to cross-chain games — AnsemAgent is general-purpose, with agent primitives baked in.
🤖
Autonomous DeFi
Strategy agents that rebalance, hedge, and route liquidity across pools without a bot server.
🎮
On-chain games
Tick-driven worlds where NPCs and economy logic run as agents on-chain.
🪙
RWA & payments
Stablecoin rails with policy agents enforcing limits, KYC, and settlement windows.
🧠
AI x crypto
Inference proofs verified on-chain; agents act on signed model outputs.
Roadmap
The road to mainnet
Public milestones, shipped in the open.
✓ Shipped
Q1 2026
- — Devnet launch
- — EVM equivalence
- — Faucet & explorer
✓ Shipped
Q2 2026
- — Agent runtime v1
- — Solana bridge alpha
- — Account abstraction
● In progress
Q3 2026
- — Public testnet v0.7
- — Paymaster network
- — Co-processor SDK
○ Planned
Q4 2026
- — Mainnet beta
- — ANSEM token launch
- — Validator decentralization
FAQ
Questions, answered
What is AnsemAgent?+
AnsemAgent is an EVM-compatible L1 with a native autonomous-agent runtime, linked to Solana through a canonical bridge. It exists to make on-chain automation a first-class primitive rather than an off-chain hack.
Is the network live?+
Public testnet v0.7 is live. Chain ID 307. Mainnet beta is scheduled for Q4 2026. You can claim test ANSEM from the faucet and ship today.
How do agents work?+
Agents are WASM modules registered on-chain. The runtime invokes them on block ticks, signed intents, or external triggers, and their actions are bundled into normal transactions with deterministic gas accounting.
Which wallets are supported?+
Any EVM wallet — MetaMask, Rabby, Frame, Coinbase Wallet, WalletConnect-compatible mobile wallets. See the Add Wallet guide in the docs.
Where can I get ANSEM?+
Testnet ANSEM is free from the faucet. Mainnet ANSEM trades on pump.fun and will list on additional venues at mainnet beta.
Start building today
Spin up an RPC, claim testnet ANSEM, and deploy your first agent in under five minutes.