v2

latestOpenAPI 3.1.02026-08-01170225.5 KB
Boost

Generate a claim signature that can be used to submit a claim

Given a tx hash, id, and valid claim data hash, generate a valid signature that can be used to claim a reward on chain.

get/signatures

Query parameters

txHashstring required

Transaction hash of transaction that satisfies a reward's action that unlocks claim rewards.

Hex in format 0x[0-9a-fA-F]{64}

boostIdstring required

System reward ID in the format chainId:boostCoreAddress:identifier

Example:8453:0x378632819f39c74c4f56b1429e760739c5fb51b7:1

BoostID in format chainId:boostCoreAddress:identifier

{"stackTrail":"paths:/signatures:get:parameters:2:schema","oasType":"schema","type":"unknown","description":"Additional encoded claim data to submit along with the transaction for a claim"}

Response

Successfully generated a claim signature

signaturestring required

Claim signature that can be used with the Boost Protocol V2's claim/claimIncentiveFor methods

claimantstring required

The address for the user making the claim

referrerstring required

The address of the referrer

incentiveIdnumber required

The index of the incentive being claimed, typically 0

Example response

[
  {
    "claimant": "0x378632819f39c74c4f56b1429e760739c5fb51b7",
    "referrer": "0x378632819f39c74c4f56b1429e760739c5fb51b7"
  }
]