TopRank Skills

Home / Claw Skills / 金融 / 加密 / Vincent - A wallet for agents
Official OpenClaw rules 36%

Vincent - A wallet for agents

Use this skill to safely create a wallet the agent can use for transfers, swaps, and any EVM chain transaction. Also supports raw signing and polymarket betting.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Vincent - A wallet for agents 技能。 若已安装,则直接安装 Vincent - A wallet for agents 技能。

Overview

Skill Key
glitch003/vincent
Author
glitch003
Source Repo
openclaw/skills
Version
-
Source Path
skills/glitch003/vincent
Latest Commit SHA
13264898d87a4221262dd82a33e35074058808f3

Extracted Content

SKILL.md excerpt

# Vincent - A wallet for agents

Use this skill to safely create a wallet the agent can use for transfers, swaps, and any EVM chain transaction without ever exposing private keys to the agent. Create a wallet, set spending policies, and your agent can transfer tokens, do swaps, and interact with smart contracts within the boundaries you define.

**The agent never sees the private key.** All transactions are executed server-side through a smart account. The wallet owner controls what the agent can do via configurable policies.

## Which Wallet Type to Use

| Type                | Use Case                                  | Network                 | Gas              |
| ------------------- | ----------------------------------------- | ----------------------- | ---------------- |
| `EVM_WALLET`        | Transfers, swaps, DeFi, contract calls    | Any EVM chain           | Sponsored (free) |
| `RAW_SIGNER`        | Raw message signing for special protocols | Any (Ethereum + Solana) | You pay          |
| `POLYMARKET_WALLET` | Prediction market trading                 | Polygon only            | Sponsored (free) |

**Choose `EVM_WALLET`** (default) for:

- Sending ETH or tokens
- Swapping tokens on DEXs
- Interacting with smart contracts
- Any standard EVM transaction

**Choose `RAW_SIGNER`** only when you need:

- Raw ECDSA/Ed25519 signatures for protocols that don't work with smart accounts
- To sign transaction hashes you'll broadcast yourself
- Solana signatures

**Choose `POLYMARKET_WALLET`** only for:

- Betting on Polymarket prediction markets
- Requires USDC.e on Polygon for funding

## Configuration

All API requests require a Bearer token (the API key returned when creating a wallet). If you're an openclaw instance, store and retrieve it from `~/.openclaw/credentials/agentwallet/<API_KEY_ID>.json`. Otherwise, you can store it in your current working directory at `agentwallet/<API_KEY_ID>.json`.

```
Authorization: Bearer <API_KEY>
```

## Quick Start

### 1. Cr...

Related Claw Skills