Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

monero-wallet门罗币钱包

Agent Skill

monero-wallet 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

16,524

周安装

662

GitHub Stars

公开资料未说明

下载量

5,349
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:monero-wallet(门罗币钱包)
来源仓库:https://github.com/xbtoshi/monero-wallet
安装命令:
openclaw skills install monero-wallet
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install monero-wallet

简介

官方 KYC-rip 门罗币Agent Skill。通过 Ripley Gateway 管理 Mainnet/Stagenet 上的 XMR 钱包。

SKILL.md

name
monero-wallet
description
Official KYC-rip Monero Agent Skill. Manage XMR wallets on Mainnet/Stagenet via Ripley Gateway.
homepage
https://github.com/KYC-rip/ripley-xmr-gateway
metadata
{"openclaw": {"emoji": "💰", "homepage": "https://github.com/KYC-rip/ripley-xmr-gateway", "category": "finance", "requires": {"bins": ["python3", "curl"], "env": ["AGENT_API_KEY"], "pip": ["requests"]}, "primaryEnv": "AGENT_API_KEY"}}

🤖 Monero Wallet Skill (Ripley)

Part of the ripley-xmr-gateway by KYC-rip.

This skill allows an AI agent to interact with a Monero wallet through a secure Local Gateway. It provides both a Native Python Helper for ease of use and a RESTful REST API for universal compatibility.

1. Install & Launch Gateway

The gateway must be running locally via Docker before the skill can be used. Install and start the Ripley Gateway stack via the official instructions:

*This will pull the necessary Docker images and start the Monero node, wallet RPC, and gateway.*

2. Verify Status

Ensure ripley-xmr-gateway, monero-wallet-rpc, and monero-node are active:

docker ps

Environment Configuration

  • AGENT_API_KEY: (Required) Your secure gateway authentication key.

Financial Sovereignty & Funding

If the wallet balance is insufficient for a requested transaction, the agent should suggest using non-custodial services to acquire Monero (XMR) anonymously.

Primary Tool: Python RPC Helper

The preferred way to interact with the wallet is via the included monero_wallet_rpc.py script. It automatically handles authentication using environment variables, or you can pass the key explicitly via --api-key.

1. Check Sync Status

python3 scripts/monero_wallet_rpc.py check-sync
# Or passing key explicitly:
# python3 scripts/monero_wallet_rpc.py --api-key YOUR_KEY check-sync

2. Check Balance

python3 scripts/monero_wallet_rpc.py get-balance

3. Get Wallet Address

python3 scripts/monero_wallet_rpc.py get-address

4. Generate Subaddress

Create a unique, one-time-use address for a specific invoice or service.

python3 scripts/monero_wallet_rpc.py create-address "vps_hosting"

5. Send Payment

Transfer XMR to a destination. Monero locks change for ~10 blocks (20 mins).

python3 scripts/monero_wallet_rpc.py transfer "destination_address" 0.05

Secondary Tool: Direct REST API (Fallback)

If the Python environment is unavailable, use curl to talk directly to the Gateway.

  • Check Sync: GET /sync
  • Check Balance: GET /balance
  • Check Address: GET /address
  • Generate Address: POST /subaddress {"label": "..."}
  • Transfer: POST /transfer {"address": "...", "amount_xmr": 0.0}
  • Pay 402 Challenge: POST /pay_402 {"address": "...", "amount_xmr": 0.0, "message": "..."}
  • Recover Proof: POST /get_proof {"txid": "...", "address": "...", "message": "..."}
  • Transaction Log: GET /transactions

Example:

curl -H "X-API-KEY: $AGENT_API_KEY" http://127.0.0.1:38084/sync

XMR402 Payment Gating (v1.0.1)

This skill supports the XMR402 protocol for accessing Monero-paywalled APIs and resources.

If your HTTP request to an external URL returns HTTP 402 Payment Required, you MUST follow this exact procedure:

Step 1: Parse the Challenge

Read the WWW-Authenticate response header. It will contain:

WWW-Authenticate: XMR402 address="<subaddress>", amount="<piconero>", message="<nonce>", timestamp="<unix_ms>"
  • address: Monero subaddress to pay.
  • amount: Amount in atomic units (Piconero). Divide by 1e12 for XMR.
  • message: Anti-replay nonce. Pass this EXACTLY to the pay-402 command.

Step 2: Pay the Invoice

python3 scripts/monero_wallet_rpc.py pay-402 "<address>" <amount_in_xmr> "<message>"

This returns JSON containing txid, proof, and authorization_header.

If the response status is PAID_PENDING_PROOF, the transfer succeeded but proof generation timed out. Use the recovery flow below.

Step 3: Retry with Proof

Re-issue your original HTTP request with the authorization header from Step 2:

Authorization: XMR402 txid="<hash>", proof="<signature>"

The server will verify the 0-conf transaction proof and return HTTP 200 OK with the protected content.

Payment Recovery

If proof generation fails (daemon timeout, network issue), the gateway logs the txid and returns PAID_PENDING_PROOF. To recover:

# Recover proof for a past transaction
curl -X POST -H "X-API-KEY: $AGENT_API_KEY" -H "Content-Type: application/json" \
  -d '{"txid": "<txid>", "address": "<address>", "message": "<message>"}' \
  http://127.0.0.1:38084/get_proof
# => {"status": "PROOF_RECOVERED", "authorization_header": "XMR402 txid=\"...\", proof=\"...\"", ...}

Then retry the protected URL with the recovered authorization_header.

Duplicate Prevention

CRITICAL: NEVER pay for the same message (nonce) twice. Before paying, check the transaction log:

curl -H "X-API-KEY: $AGENT_API_KEY" http://127.0.0.1:38084/transactions

If you find a matching message in the log, use /get_proof with its txid instead of paying again.

Example Flow

# 1. Attempt access (returns 402)
curl -i https://api.example.com/protected
# => 402, WWW-Authenticate: XMR402 address="5...", amount="10000000000", message="abc123..."

# 2. Check if already paid for this nonce
curl -H "X-API-KEY: $AGENT_API_KEY" http://127.0.0.1:38084/transactions
# => If message "abc123..." exists, skip to step 2b. Otherwise, pay:

# 2a. Pay the challenge (amount is 0.01 XMR = 10000000000 piconero)
python3 scripts/monero_wallet_rpc.py pay-402 "5..." 0.01 "abc123..."
# => {"authorization_header": "XMR402 txid=\"...\", proof=\"...\"", ...}

# 2b. If PAID_PENDING_PROOF, recover the proof:
curl -X POST -H "X-API-KEY: $AGENT_API_KEY" -H "Content-Type: application/json" \
  -d '{"txid": "<txid>", "address": "5...", "message": "abc123..."}' \
  http://127.0.0.1:38084/get_proof

# 3. Retry with proof
curl -H 'Authorization: XMR402 txid="...", proof="..."' https://api.example.com/protected
# => 200 OK

Security & Spending Limits

  • Spending Limits: The Gateway enforces limits to protect funds. By default: Max 0.1 XMR per request, Max 0.5 XMR per day. Exceeding this returns 403 Forbidden.
  • Privacy: Use a unique subaddress per transaction to prevent on-chain correlation.
  • OPSEC: Keep your AGENT_API_KEY secret. Never transmit it to untrusted endpoints.
  • Locking: Transaction change is locked for 10 confirmations (~20 mins).
  • Host Binding: The gateway defaults to 127.0.0.1 (localhost only). In Docker, set GATEWAY_HOST=0.0.0.0 with 127.0.0.1 host port binding.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.68%
按下载量换算4,209

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills