Docs

claimRewards payload - Reward Claims

Decode Hyperliquid `claimRewards` payloads for reward claims, returned through Dwellir's read-only L1 gRPC API.

Read-only action reference

Dwellir's Hyperliquid gRPC API returns this decoded action payload through StreamBlocks and GetBlock. It does not submit or execute this action. Submit supported user write actions through Hyperliquid's native POST /exchange endpoint.

The decoded claimRewards payload records a request to claim accumulated trading, staking, or referral rewards.

Sample Data

JSON
{
  "signature": {
    "r": "0x8dedb7dedab58dacf6e8ce112dc72c73ea20ea9ab5a183d2e4b6447be7f8ae85",
    "s": "0x45e1720d57401d213f32f37af54718429f6e536aa93e6bd7a411fcc57cdf7c64",
    "v": 28
  },
  "action": {
    "type": "claimRewards"
  },
  "nonce": 1767950334968,
  "expiresAfter": 1767950346788
}

Field Reference

Action Fields

FieldTypeDescription
typestringAlways "claimRewards"

Use Cases

Reward Claiming Activity

Track reward claims:

Python
def process_claimRewards_action(action):
    print("Rewards claimed")