Smart wallets with policy. Streaming payments. A service registry. Portable reputation. Python and TypeScript SDKs that disappear into your workflow.
Paxeer runs EVM Chain ID 125 with native Cosmos execution. Foundry, Hardhat, ethers, viem, wagmi, and standard Cosmos tooling all work.
Three primitives, three calls. The SDK exposes the wallet, payment, registry, and reputation layers as ergonomic functions the chain handles enforcement.
import { Paxeer } from '@paxeer/sdk'
const client = new Paxeer({ chainId: 125 })
const agent = await client.agent.create({
budget: '500 PAX / day',
allowlist: ['compute.*', 'oracle.*'],
stopOnDrawdown: '20%'
})const provider = await client.registry.find({
capability: 'inference.llm.q4',
maxPriceBps: 25
})
const session = await client.pay.stream({
to: provider.address,
ratePerSecond: '0.0008 PAX',
escrow: '5 PAX'
})
const result = await session.consume(prompt)const score = await client.pofq.read(provider.address)
if (score.qualityBps < 9700) {
throw new Error('Below quality threshold')
}
// Wallets and registries gate
// on these values onchain.Paxeer ships adapters into the agent frameworks that already have developer attention. The first transaction path becomes the distribution path for the full stack.
Agentic operating system. Paxeer adapter wires wallet, payments, and registry.
Tooling for agentic applications. Paxeer tools for spend, hire, and verify.
Multi-agent automation. Coordination + settlement via Paxeer SDK.
Onchain agent protocol. Settlement and reputation read through Paxeer.
Start with the docs, run a local environment, then ship.
Core docs: chain facts, JSON-RPC, contracts, SDK reference, and standards.
Read docsSet up Foundry, Hardhat, or viem against Chain ID 125 in minutes.
Setup guideStep-by-step walkthroughs covering agent wallets, payments, registry, and reputation.
View tutorialsHelp secure the network. Responsible-disclosure program with tiered rewards.
View programBootstrap an agent commerce project, connect a wallet, and ship your first paid call.
npx create-pax-app@latestReal-time support and source code.
The grants program funds builders shipping primitives, SDKs, and machine-economy applications.
const network = "Paxeer";