PAXEER
The settlement layer for the machine economy.
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.
The execution environment
for software that transacts.
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.
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.
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.
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.
Discover, transact,
prove, and earn.
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.
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.
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.
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.