โ† All skills
Tencent SkillHub ยท Content Creation

Chia SplitXCH

Create SplitXCH royalty split addresses from plain language descriptions. Use when the user wants to split XCH payments, royalties, or revenue between multiple recipients. Triggers on "split royalties", "royalty split", "splitxch", "split XCH between", "revenue share", "payment split", "basis points split", or any request to divide Chia payments among wallets. Supports nested/cascading splits for complex hierarchies and 128+ recipients.

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

Create SplitXCH royalty split addresses from plain language descriptions. Use when the user wants to split XCH payments, royalties, or revenue between multiple recipients. Triggers on "split royalties", "royalty split", "splitxch", "split XCH between", "revenue share", "payment split", "basis points split", or any request to divide Chia payments among wallets. Supports nested/cascading splits for complex hierarchies and 128+ recipients.

โฌ‡ 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
SKILL.md, references/api.md, scripts/splitxch.sh

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. 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. 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.0

Documentation

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

SplitXCH Royalty Split Builder

Create complex XCH royalty distribution addresses from natural language descriptions.

How It Works

SplitXCH creates special Chia blockchain addresses that automatically split incoming payments to multiple recipients based on configured percentages. The API computes a puzzle address; any XCH sent to that address gets distributed automatically on-chain.

Workflow

Parse the user's plain-language split description into recipients with percentages Convert percentages to basis points (scale to 9850 total, API adds 150 bps / 1.5% fee) For nested splits (splits-of-splits), build bottom-up: create leaf splits first, then use their addresses as recipients in parent splits Call the SplitXCH API via scripts/splitxch.sh or direct curl Return the generated split address and a summary

Basis Points Conversion

10,000 bps = 100%. API fee = 150 bps (1.5%). Recipients get 9,850 bps total. Formula: points = round(percentage / 100 * 9850) Adjust last recipient so points sum to exactly 9850. Example: "Split 60/40 between Alice and Bob" Alice: round(0.60 * 9850) = 5910 Bob: 9850 - 5910 = 3940

Building the API Payload

{ "recipients": [ {"name": "Alice", "address": "xch1...", "points": 5910, "id": 1}, {"name": "Bob", "address": "xch1...", "points": 3940, "id": 2} ] } Save to a temp file and run: bash <skill_dir>/scripts/splitxch.sh /tmp/split-payload.json

Nested Splits (>128 recipients or hierarchies)

When the user describes groups within groups: Create each leaf-level split first via the API Use the returned address as a recipient in the parent split Each split level incurs its own 150 bps fee Example: "Team A (Alice 50%, Bob 50%) gets 70%, Charlie gets 30%" Create Team A split: Alice 4925 + Bob 4925 = 9850 โ†’ returns xch1teamA... Create parent split: TeamA address 6895 + Charlie 2955 = 9850

Validation Rules

All addresses must start with xch1 and be valid bech32m Max 128 recipients per split All addresses unique within a split Each recipient's points > 0 Points must sum to exactly 9850

Output Format

After creating a split, present: Split Address: The generated xch1... address Summary Table: Each recipient's name, address (truncated), and percentage Fee Note: "SplitXCH takes a 1.5% platform fee per split level" Usage: "Send XCH to this address and it will automatically distribute to all recipients" If nested, show the full tree structure.

API Reference

For detailed API docs, validation rules, and error handling, see references/api.md.

Important Notes

The user MUST provide valid XCH wallet addresses for all recipients. If addresses are missing, ask for them before calling the API. If the user only provides names and percentages without addresses, list what's needed and ask. For dry runs / previews, show the calculated basis points without calling the API.

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/api.md Docs
  • scripts/splitxch.sh Scripts