Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

OWS composition

MoonPay's Open Wallet Standard (OWS - github.com/open-wallet-standard/core, launched 23 March 2026, 20 signatories incl. PayPal, Circle, OKX, Ripple, Ethereum Foundation, Solana Foundation, Base, Polygon, Arbitrum, Dynamic, Virtuals) defines a standard signing interface for AI agents.

@txkit/tx-protocol is a complement, not a competitor.

"OWS signs. txKit decides what's safe to sign."

Non-overlapping scopes

LayerOWStxKit
Key custody✅ encrypted vault, HSM integration❌ never holds keys
Policy engine (raw tx)✅ whitelist/blocklist/limits-
Signing operationssign / signAndSend / signMessage❌ delegates to OWS or wallet
Calldata decoding❌ sees only raw tx@txkit/tx-decoder registry
Human-readable preview❌ no preview schema@txkit/tx-protocol shape
Pre-sign simulation@txkit/react hooks
Confirmation UX❌ headless signing✅ components

OWS sees {to, data, value} - nothing more. Its policy engine operates on hashes and selectors; it cannot tell that 0xa9059cbb… means transfer(victim, 999ETH) when an LLM tool labels it "Stake 1 ETH". The decoder layer is the mitigation, and that layer is outside OWS's scope by design.

Composition pipeline

LLM → Read MCP → Prepare MCP (returns PreparedTx v0.1)


                  @txkit/tx-protocol (validate shape)


              @txkit/react (decode + simulate + preview UI)


         @txkit/ows-adapter (PreparedTx → OWS signAndSend payload + policy hints)


                        OWS signer (custody + policy + signature)


                            chain

Lane discipline

  • txKit does not standardize key management. OWS owns that layer (20 signatories = sufficient critical mass).
  • txKit does not add a signer. The txKit never holds keys invariant matches the OWS composition exactly.
  • txKit does not compete on raw-tx policy. Separate scope; both layers coexist.

Roadmap

DeliverableWhenDependency
@txkit/tx-protocol v0.1 on npm✅ published 2026-04-21-
Spec v0.1 RFC✅ in repo-
@txkit/ows-adapter npm package2 weeks post-launchrequires tx-protocol v0.1+
GitHub Discussion on open-wallet-standard/core (propose optional preview sub-spec)Weeks 1-2 post-launchneeds live npm artifact
Outreach to sympathetic signatories (Dynamic, Uniblock, Virtuals)Week 3 post-launchneeds demo video

Why this matters now

OWS v0.1 defines the signing contract. If OWS v0.1 adds an optional Preview or Decode sub-spec, the txKit moat narrows. The window to stake out the decode layer - with a live npm package and reference shape - is approximately 2-3 months.

Shipping @txkit/tx-protocol first establishes a de-facto shape that any future OWS preview spec can reference. That's the bet.

See also