# TokenCreate

Creates a new token with specified properties. After creation, the master\_authority is initialized with the transaction signer. Fields:

| Field             | Type   | Description                                                |
| ----------------- | ------ | ---------------------------------------------------------- |
| symbol            | String | The token's symbol (e.g., "USDX")                          |
| decimals          | u8     | Number of decimal places for the token                     |
| master\_authority | String | The address that will have master authority over the token |

Sample Response:

```json
{
  "transaction_type": "TokenCreate",
  "data": {
    "symbol": "USDX",
    "decimals": 18,
    "master_authority": "0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC74ff3"
  }
}
```


---

# 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://developer.1moneynetwork.com/integrations/data-dictionary/transaction-types/tokencreate.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.
