# Changing Token Metadata

## Temporary manifests for token creator functionality

At the moment the Rakoon.fun website does not yet have functionality for token creators to change the details of their created tokens. 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 change the token metadata, the owner of a token needs to submit a proof of their token owner badge and a transaction to change the relevant metadata field.&#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 are the transaction manifests for changing the most important metadata fields.

## Transaction Manifests&#x20;

### Change token symbol:

```
CALL_METHOD
Address("<address of account that holds owner badge>")
"create_proof_of_non_fungibles"
Address("<token owner badge address>")
Array<NonFungibleLocalId>(
NonFungibleLocalId("#1#")
)
;
SET_METADATA
Address("<token resource address>")
"symbol"
Enum<0u8>(
"<symbol for token - dont make this too long>"
)
;
```

### Change token name:

```
CALL_METHOD
Address("<address of account that holds owner badge>")
"create_proof_of_non_fungibles"
Address("<token owner badge address>")
Array<NonFungibleLocalId>(
NonFungibleLocalId("#1#")
)
;
SET_METADATA
Address("<token resource address>")
"name"
Enum<0u8>(
"<name for token>"
)
;
```

### Change token description:

```
CALL_METHOD
Address("<address of account that holds owner badge>")
"create_proof_of_non_fungibles"
Address("<token owner badge address>")
Array<NonFungibleLocalId>(
NonFungibleLocalId("#1#")
)
;
SET_METADATA
Address("<token resource address>")
"description"
Enum<0u8>(
"<token description>"
)
;
```

### Change token icon\_url:

```
CALL_METHOD
Address("<address of account that holds owner badge>")
"create_proof_of_non_fungibles"
Address("<token owner badge address>")
Array<NonFungibleLocalId>(
NonFungibleLocalId("#1#")
)
;
SET_METADATA
Address("<token resource address>")
"icon_url"
Enum<13u8>(
"<valid icon url address including https://>"
)
;
```

### Change token social links

Note that to change the social links, you have to send all the links as part of the transaction. So even if you only want to change one social link, you still need to include the other social links again in the transaction manifest.

````
```
CALL_METHOD
Address("<address of account that holds owner badge>")
"create_proof_of_non_fungibles"
Address("<token owner badge address>")
Array<NonFungibleLocalId>(
NonFungibleLocalId("#1#")
)
;

SET_METADATA
  Address("<token resource address>")
  "social_urls"
  Enum<141u8>(
    Array<String>(
      "<valid telegram address including https:// e.g. https://t.me/example",
      "<valid x address including https:// e.g. https://x.com/example", 
      "<valid website url address including https:// e.g. https://example.com"
    )
  )
;

```
````


---

# 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/changing-token-metadata.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.
