gougoubi-claim-all-rewards
Claim all Gougoubi rewards for one or more addresses, including winner rewards, governance rewards, and LP rewards. Use when users want one-click claiming without scanning every condition.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/chinasong/gougoubi-claim-all-rewardsGougoubi Claim All Rewards
Use this skill for one-click reward claiming across one or multiple addresses.
Use This Skill When
- The user wants to claim all rewards for one address or multiple addresses.
- The user explicitly wants the profile-style fast path.
- The user wants winner, governance, and LP rewards claimed together.
Do Not Use This Skill When
- The user wants to inspect missing results before claiming. Use
gougoubi-recovery-ops. - The user wants proposal activation or LP staking. Use activation skills instead.
Input
{
"addresses": ["0x...", "0x...", "0x..."],
"method": "profile|quick|full-scan"
}
Defaults:
method=profile
Pipeline
Step 1: Validate all addresses.
Step 2: Pick claim method:
profile: match the reward-detail modal behavior.quick: fast direct claim path.full-scan: exhaustive fallback only when needed.
Step 3: Run claim for each address.
Step 4: Record all tx hashes and per-type claim status when available.
Step 5: Return a full summary.
Checkpoints
- Prefer
profileunless the user explicitly asks otherwise. - Do not force slow condition scanning when the user asked for one-click claim.
- Safe re-run behavior is required.
Output
{
"ok": true,
"method": "profile",
"addresses": ["0x..."],
"claimedTxCount": 0,
"results": [
{
"address": "0x...",
"winnerRewardClaimed": true,
"governanceRewardClaimed": true,
"lpRewardClaimed": true,
"txHashes": ["0x..."]
}
],
"warnings": []
}
Failure:
{
"ok": false,
"stage": "validation|claim|confirm",
"error": "reason",
"retryable": true
}
Project Scripts
scripts/pbft-claim-rewards-profile-method.mjsscripts/pbft-claim-rewards-quick.mjsscripts/pbft-claim-three-address-rewards.mjs
Script Entry Points
- Preferred profile path:
scripts/pbft-claim-rewards-profile-method.mjs - Fast one-click path:
scripts/pbft-claim-rewards-quick.mjs - Deep scan path:
scripts/pbft-claim-three-address-rewards.mjs node scripts/pbft-claim-rewards-profile-method.mjs --helpnode scripts/pbft-claim-rewards-profile-method.mjs --dry-runnode scripts/pbft-claim-rewards-quick.mjs --dry-runnode scripts/pbft-claim-three-address-rewards.mjs --dry-run
Boundaries
- Claim all three reward classes together when available.
- Keep the method explicit in the output.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-chinasong-gougoubi-claim-all-rewards": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
gougoubi-activate-and-stake-risklp
Activate Gougoubi proposal conditions and stake risk LP per condition in one deterministic workflow. Use when users want to activate a proposal, activate selected conditions, or add fixed risk LP after activation.
silicaclaw-bridge-setup
Use when OpenClaw should learn how to install SilicaClaw bridge skills, check bridge connectivity, verify owner-forward runtime settings, and troubleshoot why broadcast learning or owner delivery is not ready yet.
silicaclaw-network-config
Use when OpenClaw should learn how to inspect or change SilicaClaw runtime network mode, explain the difference between local, lan, and global-preview, and enable or disable public discovery before broadcast workflows.
silicaclaw-owner-push
Use when OpenClaw should continuously watch SilicaClaw public broadcasts and automatically push owner-relevant summaries through OpenClaw's own social channel.
gougoubi-recovery-ops
Detect and repair partial failures in Gougoubi PBFT operations, including missing activation, missing risk LP, missing results, and pending reward claims. Use when earlier batch workflows only partially succeeded.