返回 Skill 列表
extension
分类: 数据与分析无需 API Key

Clawdwallet

安装并控制 ClawdWallet——由 Clawdbot 代理控制的多链 Web3 钱包 Chrome 扩展。用于搭建代理钱包、连接 dApp、签名交易或在 20+ 条链(EVM、比特币、Solana、Cosmos)上管理加密资产。ShapeShift hdwallet 驱动。

person作者: neomakinghubclawhub

ClawdWallet

Multi-chain wallet extension your agent controls via WebSocket.

Quick Install

# Clone and build
git clone https://github.com/NeOMakinG/clawdwallet.git
cd clawdwallet
npm install
npm run build

# Or use pre-built dist/ folder directly

Load in Chrome

  1. chrome://extensions → Enable Developer mode
  2. Load unpacked → select dist/ folder
  3. Click extension icon → set WebSocket URL (default: ws://localhost:3033/clawdwallet)

Clawdbot Gateway Config

Add to your gateway config:

extensions:
  clawdwallet:
    enabled: true

Agent Commands

Initialize with existing seed

{"type": "init_wallet", "mnemonic": "your twenty four words..."}

Generate new wallet

{"type": "generate_wallet"}

Returns addresses for all supported chains.

Approve dApp request

{"type": "sign_and_respond", "requestId": "uuid"}

Reject request

{"type": "reject_request", "requestId": "uuid", "reason": "Looks suspicious"}

Check status

{"type": "get_status"}

Incoming Requests

When dApp requests signature, you receive:

{
  "type": "wallet_request",
  "id": "uuid",
  "chain": "ethereum",
  "method": "eth_sendTransaction",
  "params": [{"to": "0x...", "value": "0x..."}],
  "origin": "https://app.uniswap.org"
}

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