> For the complete documentation index, see [llms.txt](https://developer.1moneynetwork.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.1moneynetwork.com/integrations/data-dictionary/transaction-types/tokenupdatemetadata.md).

# TokenUpdateMetadata

Updates token metadata. The transaction signer must be the token's metadata\_update\_authority. Fields:

| Field    | Type          | Description   |
| -------- | ------------- | ------------- |
| metadata | TokenMetadata | New metadata  |
| token    | String        | Token address |

Sample Response:

```json
{
  "transaction_type": "TokenUpdateMetadata",
  "data": {
    "metadata": {
      "name": "US Dollar X",
      "uri": "https://example.com/metadata",
      "additional_metadata": [
        {
          "key": "website",
          "value": "https://example.com"
        }
      ]
    },
    "token": "0x1234567890123456789012345678901234567890"
  }
}
```
