b402 Private DeFi
/install b402-private-defi
b402 — Private DeFi for AI Agents
Shield. Swap. Lend. Bridge. All private. All gasless.
b402 wraps Railgun's ZK privacy pool with an agent-friendly SDK and MCP server. On-chain observers see "RelayAdapt called a DEX" — not your wallet, not your strategy.
Install
npx b402-mcp@latest --claude
This generates a wallet at ~/.b402/wallet.json, patches your Claude Desktop config, and registers the MCP server. Fund the wallet with USDC on Base to start.
Tools
| Tool | What it does |
|---|---|
check_pool_balance |
Show shielded balances, wallet state, vault positions |
shield_usdc |
Move USDC into the Railgun privacy pool (gasless) |
private_swap |
Swap tokens inside the pool via ZK proof (USDC↔WETH, etc.) |
lend_privately |
Deposit into Morpho vault from pool (~4-8% APY) |
redeem_privately |
Withdraw from Morpho vault back to pool |
cross_chain_privately |
Private cross-chain transfer or swap via LI.FI (Base→Arb, etc.) |
get_swap_quote |
Preview swap rates without executing |
run_strategy |
Multi-step: swap + lend + reserve in one call |
Example prompts
- "Check my privacy pool balance"
- "Shield 5 USDC into the pool"
- "Swap 2 USDC to WETH privately"
- "Privately send 1 USDC to 0xABC... on Arbitrum"
- "Private cross-chain swap: 1 USDC from pool to ARB on Arbitrum, to 0xABC..."
- "Lend 10 USDC in the steakhouse vault"
- "Run a yield strategy: 30% WETH, 50% lend, 20% reserve"
How it works
Agent prompt → MCP tool call → b402-sdk
→ Railgun ZK proof (client-side, 10-30s)
→ RelayAdapt atomic tx (unshield → DeFi op → reshield)
→ On-chain: only RelayAdapt visible. No wallet linked.
Cross-chain: LI.FI routes through ~30 bridges + ~20 DEXes. Source and destination are unlinkable.
Supported chains
| Chain | ID | Privacy pool | Cross-chain |
|---|---|---|---|
| Base | 8453 | Yes (0% fee) | Source + dest |
| Arbitrum | 42161 | Yes (0% fee) | Dest only (v1) |
| BSC | 56 | Yes (0% fee) | Dest only (v1) |
SDK usage (for builders)
import { B402 } from '@b402ai/sdk'
const b402 = new B402({ privateKey: process.env.WORKER_PRIVATE_KEY! })
// Shield into privacy pool (gasless)
await b402.shieldFromEOA({ token: 'USDC', amount: '10' })
// Private swap inside pool
await b402.privateSwap({ from: 'USDC', to: 'WETH', amount: '5' })
// Private cross-chain (LI.FI routing)
await b402.privateCrossChain({
toChain: 'arbitrum',
fromToken: 'USDC',
toToken: 'ARB',
amount: '1',
destinationAddress: '0x...',
})
// Private lend (Morpho vaults, 4-8% APY)
await b402.privateLend({ amount: '10', vault: 'steakhouse' })
Links
- SDK: npmjs.com/package/@b402ai/sdk
- MCP: npmjs.com/package/b402-mcp
- Starter: github.com/b402-ai/b402-starter
- Agent template: github.com/b402-ai/b402-agent-starter
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install b402-private-defi - 安装完成后,直接呼叫该 Skill 的名称或使用
/b402-private-defi触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
b402 Private DeFi 是什么?
Private DeFi for AI agents. Shield tokens into a Railgun ZK privacy pool, swap privately, lend into Morpho vaults for yield, and bridge cross-chain via LI.FI... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 60 次。
如何安装 b402 Private DeFi?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install b402-private-defi」即可一键安装,无需额外配置。
b402 Private DeFi 是免费的吗?
是的,b402 Private DeFi 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
b402 Private DeFi 支持哪些平台?
b402 Private DeFi 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 b402 Private DeFi?
由 mmchougule(@mmchougule)开发并维护,当前版本 v0.4.2。