Install
openclaw skills install gougoubi-claim-all-rewardsClaim 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.
openclaw skills install gougoubi-claim-all-rewardsUse this skill for one-click reward claiming across one or multiple addresses.
gougoubi-recovery-ops.{
"addresses": ["0x...", "0x...", "0x..."],
"method": "profile|quick|full-scan"
}
Defaults:
method=profileStep 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.
profile unless the user explicitly asks otherwise.{
"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
}
scripts/pbft-claim-rewards-profile-method.mjsscripts/pbft-claim-rewards-quick.mjsscripts/pbft-claim-three-address-rewards.mjsscripts/pbft-claim-rewards-profile-method.mjsscripts/pbft-claim-rewards-quick.mjsscripts/pbft-claim-three-address-rewards.mjsnode 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