Overview
- Skill Key
- aviclaw/zeroex-swap
- Author
- aviclaw
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/aviclaw/zeroex-swap
- Latest Commit SHA
- ecf4ee0c0a05bbdbc083a62bf9398554dc6301fd
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Zeroex Swap 技能。 若已安装,则直接安装 Zeroex Swap 技能。
# ZeroEx Swap Skill
⚠️ **SECURITY WARNING:** This skill involves real funds. Review all parameters before executing swaps.
## Install
```bash
cd skills/zeroex-swap
npm install
```
## Required Environment Variables
| Variable | Description | Required |
|----------|-------------|----------|
| `ZEROEX_API_KEY` | Get from https://dashboard.0x.org/ | Yes |
| `PRIVATE_KEY` | Wallet private key (hex, without 0x prefix) | Yes |
| `RPC_URL` | RPC endpoint for chain (optional, defaults provided) | No |
**Declared required env vars:** `ZEROEX_API_KEY`, `PRIVATE_KEY`
```bash
export ZEROEX_API_KEY="your-0x-api-key"
export PRIVATE_KEY="your-private-key-hex"
export RPC_URL="https://mainnet.base.org" # optional
```
## Usage
### Get Price Quote
```bash
node quote.js --sell USDC --buy WETH --amount 1 --chain base
```
### Execute Swap (sell → buy)
```bash
node swap.js --sell USDC --buy WETH --amount 1 --chain base
```
### Execute Swap (buy example)
```bash
node swap.js --sell WETH --buy USDC --amount 0.01 --chain base
```
## Trade History
### getSwapTrades
```bash
curl -s "https://api.0x.org/trade-analytics/swap?chainId=8453&taker=0xYOUR_WALLET" \
-H "0x-api-key: $ZEROEX_API_KEY" \
-H "0x-version: v2"
```
### getGaslessTrades
```bash
curl -s "https://api.0x.org/trade-analytics/gasless?chainId=8453&taker=0xYOUR_WALLET" \
-H "0x-api-key: $ZEROEX_API_KEY" \
-H "0x-version: v2"
```
## Gasless Swap (Meta-transaction)
**Flow:**
1. Get gasless quote
2. Sign EIP-712 payload
3. Submit meta-tx
### 1) Get gasless quote
```bash
curl -s "https://api.0x.org/gasless/quote?sellToken=USDC&buyToken=WETH&sellAmount=1000000&chainId=8453&taker=0xYOUR_WALLET" \
-H "0x-api-key: $ZEROEX_API_KEY" \
-H "0x-version: v2"
```
### 2) Sign EIP-712 (use viem)
```js
// use viem to sign quote.trade.eip712
await client.signTypedData({
domain: quote.trade.eip712.domain,
types: quote.trade.eip712.types,
message: quote.trade.eip712.message,
primaryType: quote.trade.eip712.primaryType...
# 0x Swap Skill Secure ERC‑20 swaps via 0x Swap API. ## Files - `SKILL.md` — agent skill instructions - `quote.js` — fetch quotes - `swap.js` — execute swaps - `package.json` — dependencies ## Setup ```bash npm install export ZEROEX_API_KEY="your-0x-api-key" export PRIVATE_KEY="your-private-key-hex" export RPC_URL="https://mainnet.base.org" # optional ``` ## Usage ```bash node quote.js --sell USDC --buy WETH --amount 1 --chain base node swap.js --sell USDC --buy WETH --amount 1 --chain base ``` ## Security - Use a dedicated hot wallet - Set slippage protection - Approve exact amounts only
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.