You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Built so a Fortune 500 compliance team can audit it (spec §11). Every control
below maps a non-negotiable constraint to the exact place it is enforced. The
thesis: the company is a software vendor, not a financial institution — it
issues no security, holds no user funds, and runs no mandatory registry.
1. Zero custody (spec §3.1)
Control
Enforcement
Location
Company never holds USDC/XRP/RLUSD
The escrow program has no admin/withdraw instruction. Funds leave the vault only via fulfill / expire / slash, each gated by coded rules.
programs/poi-escrow/src/lib.rs
Vault is not human-controlled
Vault token account authority is the Bond PDA (program-derived); no private key exists for it.
OpenBond accounts: token::authority = bond
Gossip layer touches only SOL infra fees
broadcast_intent transfers broadcast_fee_lamports to the treasury; the USDC bond is referenced (bond_amount, payment_rail) but never moved here.