Governed by default
No raw-transaction backdoor. Every change traverses approval and policy — governance you can’t forget to turn on.
A governance-first execution layer for Accumulate. Every action ends in a proof you can verify yourself — no node, no trust required.
THE GOVERNANCE SPINE
intent in · proof out · no step skippable
infrix new verifiable-app my-escrow \
"escrow that releases when two approvers sign"
intent compiled ✓ plan generated (4 steps)
approvals enforced ✓ evidence bundle written
proof.infrix.json ready
infrix verify proof.infrix.json
verified offline — no node, no trust required$ ✓ ✓ → $ ✓
No raw-transaction backdoor. Every change traverses approval and policy — governance you can’t forget to turn on.
Every outcome ships a portable receipt. A regulator verifies it offline — no node, no trust in us.
Infrix picks how each step runs — by confidentiality, cost, trust, and capability — not one hard-coded VM.
The traditional contract surface still exists — @call, @deploy, storage. It just sits beneath the spine, not above it. You can’t bypass governance, because there’s no API to.
On EVM / typical chains
On Infrix
Step through the governance spine — one enforced pipeline — and verify the receipt yourself.
What you want, described — in plain or typed terms.
Transfer 100 tokens from Alice to Bob.
GOVERNED_TRANSFER {
from: acc://alice.acme
to: acc://bob.acme
amount: 100
}intent intent-7f3a9c
Submit a submitIntent and Infrix walks all seven stages for you:
import { Wallet } from "@infrix/wallet";
const wallet = new Wallet({ endpoint: "http://localhost:8080", identity: "acc://alice.acme" });
const intent = await wallet.submitIntent({
goal: "GOVERNED_TRANSFER",
params: { from: "acc://alice.acme", to: "acc://bob.acme", amount: 100 },
});
const plan = await intent.plan();
await wallet.approveIntent(plan.id);
const outcome = await intent.outcome();
console.log("evidence:", outcome.evidenceBundle);Infrix is governance-first: there is no raw-transaction path, and every outcome is a portable receipt you can verify offline. Read the governance-spine model to see why nothing bypasses it.