Create and manage MPC blockchain wallets and sign transactions on EVM and Solana chains using Para's secure distributed key infrastructure via REST API.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install para-wallet或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install para-wallet⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/para-wallet/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: para-wallet description: Create blockchain wallets and sign transactions using Para's MPC infrastructure where the private key never exists in a single place. Supports EVM and Solana chains via three REST endpoints. metadata: author: para version: "1.0" openclaw.requires.env: ["PARA_API_KEY"] ---
Para provides MPC (Multi-Party Computation) wallets where the private key is split into shares and never assembled in a single place. This makes Para ideal for AI agents that need to create wallets and sign transactions without ever holding a full private key.
All operations use Para's REST API with a single API key for authentication.
https://api.beta.getpara.comhttps://api.getpara.comX-API-Key header on every requestapplication/jsonX-Request-Id (UUID) for tracing; Para generates one if omitted``` export PARA_API_KEY="your-secret-api-key" ```
https://api.beta.getpara.com) during development. Switch to Production for mainnet.POST /v1/wallets
Creates a new MPC wallet for a user. Each combination of type + scheme + userIdentifier produces exactly one wallet. Attempting to create a duplicate returns a 409 with the existing walletId.
| Field | Type | Required | Description | |-------|------|----------|-------------| | type | string | Yes | EVM, SOLANA, or COSMOS | | userIdentifier | string | Yes | User identifier (email, phone, or custom ID) | | userIdentifierType | string | Yes | EMAIL, PHONE, CUSTOM_ID, GUEST_ID, TELEGRAM, DISCORD, or TWITTER | | scheme | string | No | Signature scheme: DKLS, CGGMP, or ED25519 (defaults based on wallet type) |
curl -X POST https://api.beta.getpara.com/v1/wallets \
-H "Content-Type: application/json" \
-H "X-API-Key: $PARA_API_KEY" \
-d '{
"type": "EVM",
"userIdentifier": "[email protected]",
"userIdentifierType": "EMAIL"
}'
curl -X POST https://api.beta.getpara.com/v1/wallets \
-H "Content-Type: application/json" \
-H "X-API-Key: $PARA_API_KEY" \
-d '{
"type": "SOLANA",
"userIdentifier": "[email protected]",
"userIdentifierType": "EMAIL"
}'
The wallet starts in creating status. You must poll until it reaches ready.
{
"id": "0a1b2c3d-4e5f-6789-abcd-ef0123456789",
"type": "EVM",
"scheme": "DKLS",
"status": "creating",
"createdAt": "2024-01-15T09:30:00Z"
}
The response includes a Location header with the wallet's URL:
Location: /v1/wallets/0a1b2c3d-4e5f-6789-abcd-ef0123456789
After creating a wallet, poll GET /v1/wallets/{walletId} until status becomes ready:
# Poll every 1 second until the wallet is ready
WALLET_ID="0a1b2c3d-4e5f-6789-abcd-ef0123456789"
while true; do
RESPONSE=$(curl -s https://api.beta.getpara.com/v1/wallets/$WALLET_ID \
-H "X-API-Key: $PARA_API_KEY")
STATUS=$(echo "$RESPONSE" | grep -o '"status":"[^"]*"' | cut -d'"' -f4)
if [ "$STATUS" = "ready" ]; then
echo "$RESPONSE"
break
fi
sleep 1
done
GET /v1/wallets/{walletId}
Retrieves the current status and details of a wallet.
curl https://api.beta.getpara.com/v1/wallets/0a1b2c3d-4e5f-6789-abcd-ef0123456789 \
-H "X-API-Key: $PARA_API_KEY"
When the wallet is ready, the response includes the address and public key:
{
"id": "0a1b2c3d-4e5f-6789-abcd-ef0123456789",
"type": "EVM",
"scheme": "DKLS",
"status": "ready",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f...",
"publicKey": "04a1b2c3d4e5f6...",
"createdAt": "2024-01-15T09:30:00Z"
}
| Field | Type | Description | |-------|------|-------------| | id | string | Unique wallet identifier (UUID) | | type | string | Blockchain network: EVM, SOLANA, or COSMOS | | scheme | string | Signature scheme: DKLS, CGGMP, or ED25519 | | status | string | creating or ready | | address | string | Wallet address (present when status is ready) | | publicKey | string | Public key (present when status is ready) | | createdAt | string | ISO 8601 creation timestamp |
POST /v1/wallets/{walletId}/sign-raw
Signs arbitrary data using the wallet's MPC key shares. The private key is never assembled — each share signs independently and the results are combined.
Important: The wallet must be in ready status before signing.
| Field | Type | Required | Description | |-------|------|----------|-------------| | data | string | Yes | Data to sign as a 0x-prefixed hex string |
Sign a message hash (e.g., a keccak256 hash of a transaction):
curl -X POST https://api.beta.getpara.com/v1/wallets/0a1b2c3d-4e5f-6789-abcd-ef0123456789/sign-raw \
-H "Content-Type: application/json" \
-H "X-API-Key: $PARA_API_KEY" \
-d '{
"data": "0x48656c6c6f20576f726c64"
}'
Sign a serialized Solana transaction:
curl -X POST https://api.beta.getpara.com/v1/wallets/aabbccdd-1122-3344-5566-778899aabbcc/sign-raw \
-H "Content-Type: application/json" \
-H "X-API-Key: $PARA_API_KEY" \
-d '{
"data": "0x01000103b5d..."
}'
{
"signature": "a1b2c3d4e5f6..."
}
The signature is a hex string without the 0x prefix.
Each combination of type + scheme + userIdentifier maps to exactly one wallet. If you try to create a duplicate, the API returns 409 Conflict with the existing wallet's ID in the response body. Use this to safely retry or look up existing wallets.
Wallet creation is asynchronous. The POST /v1/wallets call returns immediately with status: "creating". You must poll GET /v1/wallets/{walletId} until status becomes "ready" before you can use the wallet to sign.
Para uses Multi-Party Computation so the full private key never exists on any single machine. Key shares are distributed across independent parties. When you call sign-raw, each party signs with their share and the results are combined into a valid signature. This means:
All error responses include a message field describing the issue.
| Status | Message | Cause | Action | |--------|---------|-------|--------| | 400 | "type must be one of EVM, SOLANA, COSMOS" | Invalid or missing request body fields | Check required fields and enum values | | 401 | "secret api key not provided" | Missing X-API-Key header | Add the X-API-Key header with your API key | | 403 | "invalid secret api key" | API key is wrong or revoked | Verify your API key at developer.getpara.com | | 404 | "wallet not found" | Wallet ID doesn't exist or doesn't belong to your account | Check the wallet ID | | 409 | "a wallet for this identifier and type already exists" | Duplicate wallet creation attempted | Use the returned walletId to access the existing wallet | | 500 | "Internal Server Error" | Server-side issue | Retry with exponential backoff |
The 409 response includes the existing wallet's ID so you can retrieve it:
...
安装 Para Wallet 后,可以对 AI 说这些话来触发它
Help me get started with Para Wallet
Explains what Para Wallet does, walks through the setup, and runs a quick demo based on your current project
Use Para Wallet to create and manage MPC blockchain wallets and sign transactions on E...
Invokes Para Wallet with the right parameters and returns the result directly in the conversation
What can I do with Para Wallet in my developer & devops workflow?
Lists the top use cases for Para Wallet, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/para-wallet/ 目录(个人级,所有项目可用),或 .claude/skills/para-wallet/(项目级)。重启 AI 客户端后,用 /para-wallet 主动调用,或让 AI 根据上下文自动发现并使用。
Para Wallet 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Para Wallet 可免费安装使用。请查阅仓库了解许可证信息。
Create and manage MPC blockchain wallets and sign transactions on EVM and Solana chains using Para's secure distributed key infrastructure via REST API.
Para Wallet 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Para Wallet
Identifies repetitive steps in your workflow and sets up Para Wallet to handle them automatically