Complete cryptocurrency wallet management for Web3, DeFi, and blockchain applications. Create and manage EVM (Ethereum, Polygon, BSC, Arbitrum, Optimism, Base, Avalanche) and Solana wallets with encrypted local storage. Query balances for native tokens (ETH, MATIC, BNB, SOL) and standard tokens (ERC20, SPL). Send transactions, interact with smart contracts, and manage multiple addresses across 12+ networks. Secure password-protected key storage with AES-256 encryption. Use for: (1) Creating new crypto wallets, (2) Importing existing wallets, (3) Checking token balances across chains, (4) Sending cryptocurrency and tokens, (5) Interacting with DeFi protocols and smart contracts, (6) Multi-chain portfolio management, (7) NFT transfers, (8) Blockchain development and testing. Keywords: crypto, cryptocurrency, wallet, blockchain, ethereum, solana, web3, defi, token, erc20, nft, smart contract, metamask alternative, hardware wallet, cold storage, hot wallet, blockchain wallet, digital walle
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install cryptowallet或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install cryptowallet⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/cryptowallet/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: cryptowallet description: "Complete cryptocurrency wallet management for Web3, DeFi, and blockchain applications. Create and manage EVM (Ethereum, Polygon, BSC, Arbitrum, Optimism, Base, Avalanche) and Solana wallets with encrypted local storage. Query balances for native tokens (ETH, MATIC, BNB, SOL) and standard tokens (ERC20, SPL). Send transactions, interact with smart contracts, and manage multiple addresses across 12+ networks. Secure password-protected key storage with AES-256 encryption. Use for: (1) Creating new crypto wallets, (2) Importing existing wallets, (3) Checking token balances across chains, (4) Sending cryptocurrency and tokens, (5) Interacting with DeFi protocols and smart contracts, (6) Multi-chain portfolio management, (7) NFT transfers, (8) Blockchain development and testing. Keywords: crypto, cryptocurrency, wallet, blockchain, ethereum, solana, web3, defi, token, erc20, nft, smart contract, metamask alternative, hardware wallet, cold storage, hot wallet, blockchain wallet, digital wallet, bitcoin." ---
Comprehensive cryptocurrency wallet management for Clawdbot agents. Securely create, manage, and transact across multiple blockchain networks with encrypted local key storage.
Full network details in references/networks.json.
Create new wallets or import existing ones:
# Create new EVM wallet
python3 scripts/wallet_manager.py create my-eth-wallet --chain evm --password "secure-password"
# Create new Solana wallet
python3 scripts/wallet_manager.py create my-sol-wallet --chain solana --password "secure-password"
# Import existing wallet
python3 scripts/wallet_manager.py import imported-wallet --chain evm --key "0x..." --password "secure-password"
# List all wallets
python3 scripts/wallet_manager.py list
Query native and token balances:
# Native ETH balance on Ethereum
python3 scripts/balance_checker.py 0xYourAddress --network ethereum
# ERC20 token balance
python3 scripts/balance_checker.py 0xYourAddress --network polygon --token 0xTokenAddress
# Check all EVM networks at once
python3 scripts/balance_checker.py 0xYourAddress --all-evm
# Solana balance
python3 scripts/balance_checker.py YourSolanaAddress --network solana
# SPL token balance
python3 scripts/balance_checker.py YourSolanaAddress --network solana --token MintAddress
Send native tokens or ERC20/SPL tokens:
# Send ETH
python3 scripts/token_sender.py my-wallet 0xRecipient 0.1 --network ethereum --password "password"
# Send ERC20 token
python3 scripts/token_sender.py my-wallet 0xRecipient 100 --network polygon --token 0xTokenAddress --password "password"
# Send SOL
python3 scripts/token_sender.py my-wallet RecipientAddress 1.5 --network solana --password "password"
Security: Password required for every transaction. Private keys never leave encrypted storage unprotected.
Call contract functions (read and write):
# Read call (view function)
python3 scripts/contract_interactor.py 0xContract functionName --abi contract.json --network ethereum --args '[123, "param2"]'
# Write call (transaction)
python3 scripts/contract_interactor.py 0xContract mint --abi nft.json --network polygon --args '[1]' --write --wallet my-wallet --password "password"
# Payable function (send ETH with call)
python3 scripts/contract_interactor.py 0xContract purchase --abi contract.json --network ethereum --args '[]' --write --wallet my-wallet --password "password" --value 0.05
~/.clawdbot/cryptowallet/ with 0600 permissionsSee references/security.md for complete security documentation.
Check balances across all networks:
python3 scripts/balance_checker.py 0xYourAddress --all-evm
Send the same token across different chains:
# Polygon USDC
python3 scripts/token_sender.py wallet recipient 100 --network polygon --token 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174 --password "pwd"
# Arbitrum USDC
python3 scripts/token_sender.py wallet recipient 100 --network arbitrum --token 0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8 --password "pwd"
Example: Approve and stake tokens
# 1. Approve token spending
python3 scripts/contract_interactor.py 0xTokenAddress approve --abi erc20.json --network ethereum --args '["0xProtocolAddress", "1000000000000000000000"]' --write --wallet my-wallet --password "pwd"
# 2. Stake tokens
python3 scripts/contract_interactor.py 0xStakingContract stake --abi staking.json --network ethereum --args '["1000000000000000000000"]' --write --wallet my-wallet --password "pwd"
Modify references/networks.json to:
Default RPCs are public and may have rate limits. For production, use dedicated RPC providers.
Install required packages:
pip install web3 solana solders eth-account cryptography base58
references/networks.json to configure your own RPC endpointAdd to references/networks.json:
{
"evm": {
"your-network": {
"name": "Your Chain",
"chain_id": 12345,
"rpc": "https://rpc.yourchain.com",
"explorer": "https://explorer.yourchain.com",
"native_token": "TOKEN"
}
}
}
Use shell loops for batch transactions:
for addr in $(cat recipients.txt); do
python3 scripts/token_sender.py wallet $addr 1 --network polygon --password "pwd"
done
Generate ABIs from verified contracts on block explorers, or from your Solidity project's artifacts/ folder.
See references/security.md for comprehensive security guidelines.
安装 CryptoWallet - Multi-Chain Blockchain Wallet Manager 后,可以对 AI 说这些话来触发它
Help me get started with CryptoWallet - Multi-Chain Blockchain Wallet Manager
Explains what CryptoWallet - Multi-Chain Blockchain Wallet Manager does, walks through the setup, and runs a quick demo based on your current project
Use CryptoWallet - Multi-Chain Blockchain Wallet Manager to complete cryptocurrency wallet management for Web3, DeFi, and block...
Invokes CryptoWallet - Multi-Chain Blockchain Wallet Manager with the right parameters and returns the result directly in the conversation
What can I do with CryptoWallet - Multi-Chain Blockchain Wallet Manager in my finance & investment workflow?
将技能文件夹放到 ~/.claude/skills/cryptowallet/ 目录(个人级,所有项目可用),或 .claude/skills/cryptowallet/(项目级)。重启 AI 客户端后,用 /cryptowallet 主动调用,或让 AI 根据上下文自动发现并使用。
CryptoWallet - Multi-Chain Blockchain Wallet Manager 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
CryptoWallet - Multi-Chain Blockchain Wallet Manager 可免费安装使用。请查阅仓库了解许可证信息。
Complete cryptocurrency wallet management for Web3, DeFi, and blockchain applications. Create and manage EVM (Ethereum, Polygon, BSC, Arbitrum, Optimism, Base, Avalanche) and Solana wallets with encrypted local storage. Query balances for native tokens (ETH, MATIC, BNB, SOL) and standard tokens (ERC20, SPL). Send transactions, interact with smart contracts, and manage multiple addresses across 12+ networks. Secure password-protected key storage with AES-256 encryption. Use for: (1) Creating new crypto wallets, (2) Importing existing wallets, (3) Checking token balances across chains, (4) Sending cryptocurrency and tokens, (5) Interacting with DeFi protocols and smart contracts, (6) Multi-chain portfolio management, (7) NFT transfers, (8) Blockchain development and testing. Keywords: crypto, cryptocurrency, wallet, blockchain, ethereum, solana, web3, defi, token, erc20, nft, smart contract, metamask alternative, hardware wallet, cold storage, hot wallet, blockchain wallet, digital walle
Lists the top use cases for CryptoWallet - Multi-Chain Blockchain Wallet Manager, with example commands for each scenario
Automate my finance & investment tasks using CryptoWallet - Multi-Chain Blockchain Wallet Manager
Identifies repetitive steps in your workflow and sets up CryptoWallet - Multi-Chain Blockchain Wallet Manager to handle them automatically
CryptoWallet - Multi-Chain Blockchain Wallet Manager 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。