# Mint Token

Commands used to issue tokens.&#x20;

You must specify the name, symbol, and total amount of tokens to issue.&#x20;

After the token is issued, the token address is returned.

```
./sg dex mint -p localhost:9001 -n ${token_name} -s ${token_symbol} -a ${supply}
```

* **Example**

```
./sg dex mint -p localhost:9001 -n mytoken -s EAB -a 12000000000000000000000
```
