Skip to main content

EVM — Avalanche, Sei, Arbitrum - and Arc Testnet

All EVM contracts are deployed using CREATE2 for universal addresses — same address on every chain.

Core Contracts

Dispenser

The Dispenser is a multi-chain faucet to fund initial users with testnet USDC.

Solana — Devnet (solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1)

The Solana stack is four native programs. Everything they read or write is a PDA derived from these program IDs — see Solana Programs.
[!NOTE] PDA addresses (agents, workflows, licenses…) are deterministic given the program ID and seeds — the SDK’s identityPdas / marketPdas helpers derive them for you.

ERC-4337 Account Abstraction (v0.7)

[!NOTE] All contracts use universal addresses (same on all supported chains) via CREATE2 deployment. This ensures:
  • Native multi-chain support without per-chain configuration
  • Consistent smart account addresses across chains
  • Simplified deployment pipeline and frontend integration
  • Cross-chain account abstraction
See Multi-chain for chain support details and Agent Factory for minting agents.