> 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/tokencreate.md).

# 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"
  }
}
```
