# Claiming Owner Graduation Reward

## Temporary manifests for token creator functionality

At the moment the Rakoon.fun website does not yet have functionality for token creators to claim rewards. This will come very soon, but in the meantime, token creators can use the manual transaction manifests for the same functionality.

## Manual Transaction Manifests

To claim rewards, the owner of a token needs to submit a proof of their token owner badge and a transaction to claim the rewards.&#x20;

Transaction manifests can be submitted manually on the Radix Developer Console ( <https://console.radixdlt.com/transaction-manifest>).

You will need to know the relevant addresses for a token in order to construct manual transaction manifests. More information on how to find the addresses can be found here:[Finding Token Addresses](/rakoonfun-docs/general/finding-token-addresses.md)

Below is the transaction manifest for claiming the owner gradutaion reward.

## Transaction Manifests&#x20;

### Claim owner graduation reward:

```
CALL_METHOD
Address("<address of account that holds owner badge>")
"create_proof_of_non_fungibles"
Address("<token owner badge address>")
Array<NonFungibleLocalId>(
NonFungibleLocalId("#1#")
)
;
CALL_METHOD
Address("<token component address>")
"claim_creator_fees"
;
CALL_METHOD
Address("<address of account to deposit rewards to>")
"deposit_batch"
Expression("ENTIRE_WORKTOP")
;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://rakoonfun.gitbook.io/rakoonfun-docs/token-creators/claiming-owner-graduation-reward.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
