โ† All skills
Tencent SkillHub ยท Communication & Collaboration

Obverse Payments

Create, track, and manage USDC/USDT stablecoin payment links for sales, fundraising, and invoices across Telegram, WhatsApp, and Discord with dashboards.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Create, track, and manage USDC/USDT stablecoin payment links for sales, fundraising, and invoices across Telegram, WhatsApp, and Discord with dashboards.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
DEPLOYMENT.md, README.md, SKILL.md, clawhub.json, obverse-cli.js, openclaw.example.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 26 sections Open source page

Obverse - Stablecoin Payments for AI Agents

One generic payment link. Multiple use cases. Accept Stablecoin (USDC) payments on Solana and Monad for any purpose: selling products, fundraising, invoicing, or simple payments.

What This Skill Does

โœ… Create Payment Links - One flexible payment link for all use cases โœ… Collect Customer Data - Gather email, name, phone, or ANY custom fields you need โœ… Dashboard Analytics - Get detailed payment stats, customer lists, and charts โœ… Accept Stablecoin Payments - USDC on Solana and Monad blockchains โœ… Track Everything - Sales analytics, fundraising progress, payment history โœ… Multi-Platform - Works via Telegram, WhatsApp, Discord, and more โœ… Low Fees - 0.5-1.5% per transaction (vs 2.9% for Stripe) โœ… Instant Settlement - Funds in your wallet within minutes

1. Register & Get API Key

# Register from any platform (no Telegram required!) curl -X POST https://obverse.onrender.com/api-keys/register \ -H "Content-Type: application/json" \ -d '{"username": "your-agent-name"}' # With your own wallet: curl -X POST https://obverse.onrender.com/api-keys/register \ -H "Content-Type: application/json" \ -d '{"username": "your-agent-name", "walletAddress": "YOUR_WALLET", "chain": "solana"}' Response includes your API key (obv_sk_...) and wallet address. Save the key โ€” it's shown only once!

2. Set Environment Variables

export OBVERSE_API_KEY="obv_sk_your_key_here" export OBVERSE_API_URL="https://obverse.onrender.com" # optional, this is the default

3. Start Using

# Create a payment link obverse-cli create-link 50 USDC solana "My first payment"

1. ๐Ÿ›๏ธ Product/Service Sales (Merchant Sales)

Sell products or services to anyone with a payment link. Automatically collects customer email and name for your mailing list! Example: Selling Running Shoes # Create product payment link (auto-collects email & name) obverse-cli create-product-link "Premium Running Shoes" 120 USDC solana "High-performance shoes" # Returns: { "paymentUrl": "https://www.obverse.cc/pay/shoe-xyz", "linkCode": "shoe-xyz", "type": "product_sale", "title": "Premium Running Shoes", "amount": 120, "token": "USDC", "customFields": [ { "fieldName": "email", "fieldType": "email", "required": true }, { "fieldName": "name", "fieldType": "text", "required": true } ], "message": "Collects customer email and name!" } # Generate dashboard link to view all customer data obverse-cli generate-dashboard shoe-xyz # Returns: { "dashboardUrl": "https://www.obverse.cc/dashboard", "credentials": { "username": "@yourname", "password": "AbC123XyZ456" }, "instructions": [ "1. Open dashboard: https://www.obverse.cc/dashboard", "2. Login with your credentials", "3. View customer emails, names, and payment details!" ] } # Check sales analytics obverse-cli get-analytics shoe-xyz # List all customers with their data obverse-cli list-contributors shoe-xyz 50 Perfect For: Physical products (clothing, gadgets, merch) Digital products (ebooks, courses, templates) Services (consulting, development, design) Event tickets, subscriptions, pre-orders

2. ๐Ÿ’ฐ Crowdfunding/Fundraising

Raise money from multiple contributors for a shared goal. Example: Funding AI Development # Create fundraising campaign obverse-cli create-fundraiser "AI Development Fund" 5000 USDC monad "Building advanced AI agents" # Returns: { "paymentUrl": "https://www.obverse.cc/pay/fund-xyz", "linkCode": "fund-xyz", "type": "crowdfunding", "goalAmount": 5000 } # Check fundraising progress obverse-cli check-progress fund-xyz 5000 # Returns: { "fundraising": { "goalAmount": 5000, "raisedAmount": 3450, "remainingAmount": 1550, "progressPercent": "69.0", "contributors": 23 } } # List all contributors obverse-cli list-contributors fund-xyz Perfect For: Agent development funding Product launches Community projects Research funding Open source projects Bounty programs

3. ๐Ÿ’ณ Simple Payments & Invoicing

Accept one-time payments or create invoices for clients. Example: Consulting Invoice # Generic payment link (one-time use) obverse-cli create-link 750 USDC solana "Consulting Services - 5 hours" # Check if paid obverse-cli check-payment xyz123 # List all payments obverse-cli list-payments xyz123 Or use formal invoicing: # Create invoice with recipient details obverse-cli create-invoice john@example.com 750 USDC monad Perfect For: Freelance work Professional services One-time payments Tips and donations

Collect Customer Data with Payment Links

Every payment link can now collect custom data from customers! Perfect for building mailing lists, gathering customer info, and invoicing. # Simple example: Collect email and phone number obverse-cli create-link 50 USDC solana "Consultation Fee" '[{"fieldName":"email","fieldType":"email","required":true},{"fieldName":"phone","fieldType":"tel","required":false}]' true # Product sales automatically collect email & name obverse-cli create-product-link "Digital Course" 299 USDC monad # Fundraising automatically collects optional contributor info obverse-cli create-fundraiser "Community Project" 10000 USDC solana Custom fields you can collect: Email addresses (fieldType: "email") Names (fieldType: "text") Phone numbers (fieldType: "tel") Messages (fieldType: "textarea") Company names, addresses, or ANY text field you need!

Dashboard Analytics

Get a full dashboard with payment analytics and customer data! # Generate dashboard credentials for any payment link obverse-cli generate-dashboard shoe-xyz # Returns login credentials: { "dashboardUrl": "https://www.obverse.cc/dashboard", "credentials": { "username": "@yourname", "password": "AbC123XyZ456", // Valid for 2 hours "expiresAt": "2024-01-15T12:30:00.000Z" }, "instructions": [ "1. Open dashboard", "2. Login with credentials", "3. View analytics, customer emails, payment history, charts" ] } What you get in the dashboard: ๐Ÿ“Š Payment statistics (total revenue, count, success rate) ๐Ÿ“ง Customer data (emails, names, all collected fields) ๐Ÿ“ˆ Charts and trends over time ๐Ÿ” Searchable payment history ๐Ÿ’พ Export customer lists

Creating Payment Links

# Generic payment link with optional custom fields obverse-cli create-link <amount> [currency] [chain] [description] [customFieldsJson] [isReusable] # Example: Simple payment obverse-cli create-link 50 USDC solana "Payment for services" # Example: With data collection obverse-cli create-link 100 USDC monad "Consultation" '[{"fieldName":"email","fieldType":"email","required":true}]' true

Convenience Wrappers (Auto-collect customer data!)

# For product/service sales (auto-collects email & name) obverse-cli create-product-link <title> <price> [currency] [chain] [description] [customFieldsJson] # For crowdfunding (auto-collects optional email & name) obverse-cli create-fundraiser <title> <goalAmount> [currency] [chain] [description] [customFieldsJson] # For invoicing (formal) obverse-cli create-invoice <recipient> <amount> [currency] [chain] [dueDate]

Dashboard & Analytics

# Generate dashboard credentials obverse-cli generate-dashboard <linkCode> # Get analytics (sales/fundraising stats) obverse-cli get-analytics <linkCode> # Check payment link status obverse-cli check-payment <linkCode> # List all payments for a link obverse-cli list-payments <linkCode> [limit] # Check fundraising progress toward goal obverse-cli check-progress <linkCode> <goalAmount> # List all contributors/customers obverse-cli list-contributors <linkCode> [limit] # Check wallet balance obverse-cli balance <userId> [chain]

Workflow 1: Selling Digital Products (with Customer Data Collection)

# Step 1: Create product link (auto-collects email & name) obverse-cli create-product-link "AI Course Bundle" 299 USDC solana # Step 2: Share the link # https://www.obverse.cc/pay/course-xyz # Customers pay AND provide their email/name automatically! # Step 3: Generate dashboard to view all customer data obverse-cli generate-dashboard course-xyz # Returns: Login credentials for full analytics dashboard # Step 4: Check sales analytics obverse-cli get-analytics course-xyz # Step 5: Export customer email list for marketing obverse-cli list-contributors course-xyz 100 # Now you have customer emails to send course access links!

Workflow 2: Running a Fundraising Campaign

# Step 1: Create fundraiser obverse-cli create-fundraiser "Open Source AI Project" 10000 USDC monad # Step 2: Share campaign link # https://www.obverse.cc/pay/project-xyz # Step 3: Track progress obverse-cli check-progress project-xyz 10000 # Step 4: Thank top contributors obverse-cli list-contributors project-xyz

Workflow 3: Freelance Consulting

# Step 1: Create payment link obverse-cli create-link 1500 USDC solana "Smart Contract Development" # Step 2: Send link to client # https://www.obverse.cc/pay/work-xyz # Step 3: Check if paid obverse-cli check-payment work-xyz # Step 4: Verify payment obverse-cli list-payments work-xyz

Via Telegram

User: "Create payment link to sell my AI course for $299" Agent: โœ… Product Payment Link Created! Product: AI Course Bundle Price: $299 USDC Link: https://www.obverse.cc/pay/course-xyz Share this link to start selling! User: "How many courses have I sold?" Agent: ๐Ÿ“Š Sales Analytics Total Sales: 47 Revenue: $14,053 USDC Customers: 47 Average: $299.00

Via WhatsApp

User: "Start a fundraiser for $5000" Agent: ๐Ÿš€ Fundraising Campaign Created! Goal: $5,000 USDC Link: https://www.obverse.cc/pay/fund-xyz User: "How much have we raised?" Agent: ๐Ÿ’ฐ Fundraising Progress Goal: $5,000 USDC Raised: $3,450 (69%) Remaining: $1,550 Contributors: 23

Via Discord

User: "Bill the client for $750" Agent: ๐Ÿ’ณ Payment Link Created Amount: $750 USDC Link: https://www.obverse.cc/pay/work-xyz User: "Did they pay?" Agent: โœ… PAYMENT RECEIVED! Amount: $750 USDC Transaction: 0x8a9b7c... Time: 15 minutes ago

NEW: Data Collection & Dashboard Examples

User: "Create a payment link for my course and collect customer emails" Agent: โœ… Product Link Created with Data Collection! Product: Online Course Price: $299 USDC Link: https://www.obverse.cc/pay/course-xyz ๐Ÿ“ง Automatically collects: โ€ข Customer email โ€ข Customer name Share this link to sell and build your email list! User: "Show me who bought my course" Agent: ๐Ÿ“Š Generating Dashboard Access... ๐Ÿ” Dashboard Credentials: URL: https://www.obverse.cc/dashboard Username: @yourname Password: AbC123XyZ456 โฐ Valid for: 2 hours View all customer emails, names, payments, and analytics! User: "I want to collect phone numbers too" Agent: โœ… Custom Payment Link Created! Link: https://www.obverse.cc/pay/custom-xyz Collecting: โ€ข Email (required) โ€ข Name (required) โ€ข Phone (optional) Perfect for building your customer database!

Default Behavior

Default chain: Solana Default currency: USDC (most widely used) Settlement: Funds arrive in 2-5 minutes Fees: 0.5-1.5% per transaction

Supported Chains

ChainCurrenciesFeesSolanaUSDClowMonadUSDClow

Common Errors

"Invalid API key" # Check your API key echo $OBVERSE_API_KEY # Register for a new key: curl -X POST https://obverse.onrender.com/api-keys/register \ -H 'Content-Type: application/json' \ -d '{"username": "your-agent-name"}' **"Payment link not found"** ```bash # Check if link code is correct obverse-cli check-payment <linkCode> "Rate limit exceeded" # Wait 60 seconds and retry

API Rate Limits

PlanRequests/minMonthly TxnsFree10100Starter60500Pro3002,000

Getting Help

API Docs: obverse.onrender.com/api-docs Support: obverse.ccc@gmail.com

Key Takeaway

One generic payment link. Multiple use cases. Whether you're selling products, raising funds, or invoicing clients - it's all the same flexible payment link system. The convenience commands just make it easier to use. No complex setup. No multiple endpoints. Just simple, flexible payments. ๐Ÿ’™ Made with โค๏ธ by the Obverse Team

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs2 Config1 Scripts
  • SKILL.md Primary doc
  • DEPLOYMENT.md Docs
  • README.md Docs
  • obverse-cli.js Scripts
  • clawhub.json Config
  • openclaw.example.json Config