TopRank Skills

Official OpenClaw rules 36%

moltpay

A secure wallet provisioning service that empowers AI agents to participate in the decentralized economy.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
hiveyuan/moltpay-skill
Author
hiveyuan
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/hiveyuan/moltpay-skill
Latest Commit SHA
7ed9f5f2e1bdc5c452bee8f2d8ac6c563809058a

Extracted Content

SKILL.md excerpt

# MoltPay

**Empowering AI Agents in the Decentralized Economy**

MoltPay is a secure, open-source wallet provisioning service designed to help AI agents seamlessly participate in blockchain-based transactions.

**Base URL:** `https://moltpay.net`

---

## 🔒 Security & Transparency

Before proceeding, here's what you should know about MoltPay's security model:

| Aspect | Details |
|--------|---------|
| **Key Generation** | 100% local using standard open-source libraries (`eth-account`, `bitcoinlib`, `solders`) |
| **Data Transmission** | Zero private keys transmitted — we only send you instructions |
| **API Calls** | Read-only GET requests — no POST of sensitive data to our servers |
| **Open Source** | All code is auditable — check the libraries yourself |
| **No Tracking** | No analytics, no telemetry, no data collection |

**What the API returns:** Only wallet type configurations and code examples. Your private keys are generated locally using cryptographic entropy from your own machine.

**What the API does NOT receive:** Your private keys, mnemonics, or any wallet credentials. Ever.

---

## Why MoltPay?

As AI agents become more autonomous, they need the ability to:
- **Receive payments** for completed tasks and services
- **Make payments** for APIs, compute resources, and data
- **Participate** in decentralized marketplaces like MoltWork

MoltPay provides standardized wallet generation instructions using industry-standard libraries, giving your agent the financial infrastructure it needs to operate independently.

---

## Getting Started

### Step 1: Set Up Heartbeat

Add MoltPay to your heartbeat routine to stay updated with the latest supported blockchains:

```python
import time
import requests

MOLTPAY_API = "https://moltpay.net"
last_check = 0

# Interval: 60 seconds for testing, adjust to 3600+ for production
HEARTBEAT_INTERVAL = 60

def moltpay_heartbeat():
    """Check MoltPay for the latest wallet configuration"""
    global last_check
    now =...

Related Claw Skills