# claim\_developer

{% hint style="warning" %}
This entrypoint should be called only by `developer` address.&#x20;
{% endhint %}

This entrypoint is designed to withdraw some of the collected referral rewards by the selected token.

### Call parameters

<table><thead><tr><th width="150">Field</th><th width="150" align="center">Type</th><th width="448.2">Description</th></tr></thead><tbody><tr><td>token</td><td align="center"><code>token_t</code></td><td><code>FA2/FA1.2</code> token to claim.</td></tr><tr><td>amount</td><td align="center"><code>nat</code></td><td>amount of tokens to claim.</td></tr></tbody></table>

```pascaligo
type claim_by_token_param_t is [@layout:comb] record [
  token                   : token_t;
  amount                  : nat;
]
```
