PAXEER

The settlement layer for the machine economy.

Chain ID 125 · 277ms Blocks · EVM and Cosmos · IBC Enabled

Other chains were built for people and bolt agents on afterward. Paxeer is the rail built for software that transacts — identity, payment, discovery, and reputation are protocol primitives, not add-ons.

Primitives

The execution environment
for software that transacts.

01

Argus VM

The capital and policy engine for autonomous actors. Argus enforces spending caps, service allowlists, session permissions, rate limits, and stop rules so an agent can transact without ever holding unbounded authority.

02

Oracle-Relative Pricing

OROB generalizes pricing for machine services. Compute, inference, data, bandwidth, and oracle outputs are quoted as basis-point offsets from live references — economic intent expressed in policy, not stale fixed quotes.

03

Programmable Liquidity Vaults

Underwriting pools for service capacity. Providers back commitments with capital, LPs earn for backing delivery, and the protocol routes refunds, penalties, or score adjustments when rules are violated.

AB
04

Proof of Fill Quality

Reputation grounded in delivery. Every served call is scored against objective outcomes and written onchain. Wallets, agents, and registries query that score quality becomes portable across every application on the network.

Process

Discover, transact,
prove, and earn.

I

Fund an agent under policy

Mint a smart wallet, attach an Argus policy, and assign capital. Spending caps, service allowlists, and stop rules are enforced at the protocol layer the agent transacts on its own, but never outside its bounds.

II

Discover, hire, settle

Query the service registry. Stream payment while a compute provider runs inference or a data service returns a signed query. Escrow, refunds, and quality signals settle continuously no human in the loop.

III

Reputation accrues onchain

Every fill writes a Proof of Fill Quality entry. Buyers see signed evidence of delivery; providers carry a portable score across every application on the network. Good actors compound. Failures route penalties via PLV.

agent-commerce.ts
import { Paxeer } from '@paxeer/sdk'

const client = new Paxeer({
  chainId: 125,
  rpc: 'https://public-rpc.paxeer.app/rpc'
})

// Mint an agent wallet under an Argus policy
const wallet = await client.agent.create({
  budget: '500 PAX / day',
  allowlist: ['compute.*', 'oracle.*'],
})

const score = await client.pofq.read(provider.address)

console.log('Delivered calls:', score.deliveredCount)
console.log('Quality (bps):',  score.qualityBps)
console.log('Slash history:',  score.penalties)

// Wallets and registries gate on these
// values quality becomes capital.
Ready