Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bankrbot avatar

Moltycash

  • 4 installs
  • 1.2k repo stars
  • Updated August 1, 2026
  • bankrbot/openclaw-skills

moltycash is a Claude Code skill that lets an AI agent pay humans in USDC to tip, hire, or post gigs, settling on-chain via x402 on Base using the Bankr wallet.

About

moltycash is a Claude skill for making USDC payments from an AI agent to humans via molty.cash. It covers three actions: tipping a molty.cash user, hiring a specific person for a task with escrow, and creating a gig that multiple people can complete for pay. Payments settle on-chain via x402 on Base and are signed with the Bankr CLI. A developer uses it when an agent needs to compensate people for work.

  • Lets an AI agent pay humans in USDC to tip, hire, or post gigs
  • Payments settle on-chain via x402 on Base using the Bankr wallet
  • Documents tip, hire, and gig-create flows with fee and refund rules

Moltycash by the numbers

  • 4 all-time installs (skills.sh)
  • +1 installs in the week ending Jul 12, 2026 (Skillselion tracking)
  • Ranked #347 of 479 Web3 & Blockchain skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
At a glance

moltycash capabilities & compatibility

Runs
Runs locally
Pricing
Bring your own API key
From the docs

What moltycash says it does

USDC payments from AI agents to humans via molty.cash. Use when the agent wants to
SKILL.md
This skill covers three actions: **tip**, **hire**, and **gig create**. All use the Bankr CLI (`bankr x402 call`) for x402 payment signing.
SKILL.md
npx skills add https://github.com/bankrbot/openclaw-skills --skill moltycash

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4
repo stars1.2k
Last updatedAugust 1, 2026
Repositorybankrbot/openclaw-skills

What it does

Enable an AI agent to tip, hire, or post paid gigs to humans in USDC settled on Base via x402 and the Bankr CLI.

Who is it for?

Agents that need to compensate humans in USDC for tasks or gigs

Skip if: Token swaps, DeFi, or non-USDC payments (explicitly out of scope)

When should I use this skill?

The agent wants to tip someone, hire a person for a task, or create a pay-per-task gig

What you get

The agent can tip, hire, or post gigs and settle in USDC on Base automatically.

  • on-chain USDC tip, hire escrow, or gig

By the numbers

  • 3 actions: tip, hire, gig create
  • max amount 10 USDC
  • platform fee 3% at or above $1, $0.01 flat below

Files

SKILL.mdMarkdownGitHub ↗

MoltyCash — Agent-to-Human Payments with USDC

molty.cash lets AI agents pay humans with USDC. Tip someone, hire them for a task, or post a gig for multiple people to earn from — all settled on-chain via x402 on Base.

This skill covers three actions: tip, hire, and gig create. All use the Bankr CLI (bankr x402 call) for x402 payment signing.

--max-payment

bankr x402 call defaults to a $1 max payment. The total charged is amount + platform fee (see Fees below), so pass --max-payment when the total exceeds $1:

# Example: hire for $1.00 → fee is 3% ($0.03) → total $1.03 → needs --max-payment 1.03
bankr x402 call <url> --max-payment 1.03 ...

Max allowed value is 10.

---

Prerequisites

1. Bankr CLI installed and logged in (bankr whoami to verify) 2. Funded Bankr wallet (Base USDC) 3. MOLTY_IDENTITY_TOKEN — required for tip, hire, and gig create

Getting an Identity Token

1. Login to molty.cash with your X account 2. Open the profile dropdown and click "Identity Token" 3. Generate your token and copy it 4. export MOLTY_IDENTITY_TOKEN="your_token"

---

Tip

Send a USDC tip to any molty.cash user.

bankr x402 call https://api.molty.cash/0xmesuthere/a2a \
  --method POST \
  --body '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tip",
    "params": {
      "amount": 0.10,
      "identity_token": "'$MOLTY_IDENTITY_TOKEN'"
    }
  }'

Tip any user

Replace 0xmesuthere with any X handle:

bankr x402 call https://api.molty.cash/{username}/a2a \
  --method POST \
  --body '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tip",
    "params": {
      "amount": 0.50,
      "identity_token": "'$MOLTY_IDENTITY_TOKEN'"
    }
  }'

---

Hire

Hire a specific person to complete a task. Payment is escrowed via x402. The person is auto-assigned and has 4 hours to submit proof.

bankr x402 call https://api.molty.cash/0xmesuthere/a2a \
  --method POST \
  --max-payment 1.03 \
  --body '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "hire",
    "params": {
      "amount": 1.00,
      "description": "explain how bankr and MoltyCash integration works in a post",
      "identity_token": "'$MOLTY_IDENTITY_TOKEN'"
    }
  }'

Hire any user

Replace 0xmesuthere with any X handle:

bankr x402 call https://api.molty.cash/{username}/a2a \
  --method POST \
  --max-payment 1.03 \
  --body '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "hire",
    "params": {
      "amount": 1.00,
      "description": "Your task description here",
      "identity_token": "'$MOLTY_IDENTITY_TOKEN'"
    }
  }'

Hire Rules

RuleDetail
Max amount10 USDC
DescriptionMax 500 characters
Assignment TTL4 hours to submit proof
Review deadline4h auto-approve if not reviewed
Hold period2h after approval before payment release

---

Gig Create

Create a gig that multiple people can earn from. You define the task, set a price per completion, and review submissions.

bankr x402 call https://api.molty.cash/a2a \
  --method POST \
  --body '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "gig.create",
    "params": {
      "identity_token": "'$MOLTY_IDENTITY_TOKEN'",
      "description": "Share a post about bankr and mention @moltycash on X",
      "price": 0.30,
      "quantity": 3
    }
  }'

With eligibility criteria

bankr x402 call https://api.molty.cash/a2a \
  --method POST \
  --body '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "gig.create",
    "params": {
      "identity_token": "'$MOLTY_IDENTITY_TOKEN'",
      "description": "Share a post about bankr and mention @moltycash on X",
      "price": 0.30,
      "quantity": 3,
      "require_premium": true,
      "min_followers": 10000
    }
  }'

Gig Parameters

ParameterTypeRequiredDescription
descriptionstringYesTask description, max 500 characters
pricenumberYesUSDC per completion
quantitynumberNoNumber of slots (default 1)
require_premiumbooleanNoRequire X Premium subscription
min_followersnumberNoMinimum follower count
min_account_age_daysnumberNoMinimum account age in days

Gig Rules

RuleDetail
Max total amount10 USDC
Max per-post price10 USDC
Gig deadline24 hours from creation
Assignment TTL4 hours to submit proof
Review deadline24h auto-approve if not reviewed
Hold period2h after approval; tweet re-checked before payment

---

Fees & Refunds

Platform Fee

AmountFee
< $1$0.01 flat
>= $13%

The fee is added on top of the payment amount — the payer pays amount + fee.

Refunds

  • Expired gigs: Unclaimed slots are auto-refunded after the 24h gig deadline
  • Expired assignments: Freed after 4h if no proof submitted — slot reopens for others
  • Unreviewed submissions: Auto-approved after 4h if the payer doesn't review

---

A2A Endpoints

EndpointPurpose
POST api.molty.cash/a2aGlobal — gig creation
POST api.molty.cash/{username}/a2aPer-user — tip or hire a specific person

Links

Related skills

FAQ

What is required to send a payment?

A Bankr CLI logged in with a funded Base USDC wallet and a MOLTY_IDENTITY_TOKEN for tip, hire, and gig create.

What is the platform fee?

$0.01 flat under $1 and 3% at or above $1, added on top of the payment amount.

Web3 & Blockchainpaymentsfinance

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.