Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

claim

Claim vested rewards from a creator coin. Half of a creator coin's supply vests linearly to its creator over time; this command releases the portion that has vested so far to the payout recipient. Requires a wallet. Claims from your smart wallet when one is configured, otherwise your EOA.

zora claim [options]

By default, claim targets the creator coin tied to the active wallet's Zora profile. Pass --coin to claim from a specific creator coin instead.

Options

FlagDescription
--coin <address>Creator coin address to claim from (defaults to your own)
--yesSkip confirmation prompt and execute directly
--jsonMachine-readable JSON output

Examples

Claim from your own creator coin

npx @zoralabs/cli claim
 Claim creator coin rewards
 
 Coin         0x9b13358e3a023507e7046c18f508a958cda75f54
 Claimable    1,250.5
 
 Confirm? (y/n)

After confirming:

 Claimed creator coin rewards
 
 Coin         0x9b13358e3a023507e7046c18f508a958cda75f54
 Claimed      1,250.5
 Tx           0x789abc...

Claim from a specific coin

npx @zoralabs/cli claim --coin 0x9b13358e3a023507e7046c18f508a958cda75f54

Non-interactive for scripting

npx @zoralabs/cli claim --yes --json

JSON output

When rewards are claimed:

{
  "action": "claim",
  "coin": "0x9b13358e3a023507e7046c18f508a958cda75f54",
  "claimed": {
    "amount": "1250.5",
    "raw": "1250500000000000000000"
  },
  "tx": "0x789abc..."
}

When nothing has vested yet, no transaction is sent and claimed is false:

{
  "action": "claim",
  "coin": "0x9b13358e3a023507e7046c18f508a958cda75f54",
  "claimable": "0",
  "claimed": false
}