ClawdWallet
Multi-chain wallet extension your agent controls via WebSocket.
Quick Install
CODEBLOCK0
Load in Chrome
- 1.
chrome://extensions → Enable Developer mode - Load unpacked → select
dist/ folder - Click extension icon → set WebSocket URL (default:
ws://localhost:3033/clawdwallet)
Clawdbot Gateway Config
Add to your gateway config:
CODEBLOCK1
Agent Commands
Initialize with existing seed
CODEBLOCK2
Generate new wallet
{"type": "generate_wallet"}
Returns addresses for all supported chains.
Approve dApp request
CODEBLOCK4
Reject request
CODEBLOCK5
Check status
CODEBLOCK6
Incoming Requests
When dApp requests signature, you receive:
CODEBLOCK7
Review and approve/reject based on context.
Supported Chains
| Family | Chains |
|---|
| EVM | Ethereum, Polygon, Optimism, Arbitrum, Base, Avalanche, Gnosis, BSC |
| UTXO |
Bitcoin, Litecoin, Dogecoin, Bitcoin Cash |
| Cosmos | Cosmos Hub, Osmosis, THORChain, Mayachain |
| Other | Solana, TON, Near, Sui, Tron |
Security Notes
- - Only use with trusted agents
- Consider dedicated wallet for agent operations
- Never expose mnemonic or WebSocket URL publicly
ClawdWallet
您的代理通过WebSocket控制的多链钱包扩展。
快速安装
bash
克隆并构建
git clone https://github.com/NeOMakinG/clawdwallet.git
cd clawdwallet
npm install
npm run build
或直接使用预构建的dist/文件夹
在Chrome中加载
- 1. chrome://extensions → 启用开发者模式
- 加载已解压的扩展程序 → 选择dist/文件夹
- 点击扩展图标 → 设置WebSocket URL(默认:ws://localhost:3033/clawdwallet)
Clawdbot网关配置
添加到您的网关配置中:
yaml
extensions:
clawdwallet:
enabled: true
代理命令
使用现有助记词初始化
json
{type: init_wallet, mnemonic: 您的二十四个单词...}
生成新钱包
json
{type: generate_wallet}
返回所有支持链的地址。
批准dApp请求
json
{type: sign
andrespond, requestId: uuid}
拒绝请求
json
{type: reject_request, requestId: uuid, reason: 看起来可疑}
检查状态
json
{type: get_status}
传入请求
当dApp请求签名时,您将收到:
json
{
type: wallet_request,
id: uuid,
chain: ethereum,
method: eth_sendTransaction,
params: [{to: 0x..., value: 0x...}],
origin: https://app.uniswap.org
}
根据上下文审查并批准/拒绝。
支持的链
| 系列 | 链 |
|---|
| EVM | Ethereum, Polygon, Optimism, Arbitrum, Base, Avalanche, Gnosis, BSC |
| UTXO |
Bitcoin, Litecoin, Dogecoin, Bitcoin Cash |
| Cosmos | Cosmos Hub, Osmosis, THORChain, Mayachain |
| 其他 | Solana, TON, Near, Sui, Tron |
安全说明
- - 仅与受信任的代理一起使用
- 考虑为代理操作使用专用钱包
- 切勿公开暴露助记词或WebSocket URL