Verifiable AI agents on Zcash.
An autonomous agent with a shielded wallet and a provable track record, operating across any platform, verifiable on any chain.
Three layers that don't exist together anywhere else:
- Capability (OpenClaw) - full agent runtime with shell, browser, search, code execution, 90+ messaging channels
- Privacy (Orchard) - shielded wallet via Zcash Orchard pool, balances and counterparties invisible
- Accountability (ZAP1) - every action anchored to a BLAKE2b Merkle tree on Zcash mainnet, proofs verifiable by anyone
- Site: 00zeven.cash
- Dashboard: 00zeven.cash/dashboard.html
- API: pay.frontiercompute.io
- Etherscan: Sepolia verifier
openclaw plugins install @frontiercompute/openclaw-zap1Configure agentId and apiKey. Every tool call, LLM response, and outbound message gets attested to Zcash. No agent code changes.
OpenClaw agent runtime
|
+-- 90+ channels (Telegram, Discord, Signal, Slack, Matrix, ...)
+-- Tools (shell, browser, search, code, files)
+-- Hooks (tool_result_persist, llm_output, message_sending)
|
v
ZAP1 attestation layer
|
+-- AGENT_REGISTER (0x40) - identity committed
+-- AGENT_POLICY (0x41) - decision rules committed
+-- AGENT_ACTION (0x42) - every action attested
|
v
Zcash Orchard pool
|
+-- Shielded wallet (financial privacy)
+-- Memo field carries attestations
+-- Merkle roots anchored on-chain
|
v
Verification
|
+-- ZAP1 API (proof bundles, lifecycle views)
+-- Solidity verifier (Ethereum cross-chain)
+-- Zodl wallet (memo rendering)
| Repo | What |
|---|---|
| 00zeven | This repo - site, dashboard, brand |
| openclaw-zap1 | OpenClaw plugin - tools + hooks |
| zap1 | Protocol - API, Merkle tree, anchoring |
| zap1-verify | Rust + WASM verification SDK |
| zap1-verify-sol | Solidity verifier for EVM chains |
| zap1-js | JS/TS verification SDK |
| zcash-memo-decode | Universal Zcash memo classifier |
git clone https://github.com/Frontier-Compute/zap1.git && cd zap1
ZAP1_API_KEY=your-key bash examples/agent_demo.shRegisters an agent, commits policy, takes 3 actions, verifies all proofs. 30 seconds.
cd zap1 && bash scripts/operator-setup.sh myoperator 3081
cd operators/myoperator && ./run.shYour own Merkle tree, your own anchor address, your own API keys. MIT licensed.
MIT