> ## Documentation Index
> Fetch the complete documentation index at: https://docs.glam.systems/llms.txt
> Use this file to discover all available pages before exploring further.

# Mint

### List Token Holders

```bash theme={null}
glam-cli mint holders
```

### Update Mint Policies

* `-l, --lockup <seconds>`: Set lockup period in seconds
* `-f, --frozen <boolean>`: Set default account state frozen

```bash theme={null}
# Update lockup to 3600 seconds, set default token account state to frozen
glam-cli mint update -l 3600 -f true
```

### Create Token Account

* `owner`: Public key of the account owner

```bash theme={null}
glam-cli mint create-account <owner>
```

### Freeze Token Accounts

* `accounts...`: A space-separated list of token account pubkeys to freeze

```bash theme={null}
glam-cli mint freeze <accounts...>
```

### Unfreeze Token Accounts

* `accounts...`: A space-separated list of token account pubkeys to unfreeze

```bash theme={null}
glam-cli mint unfreeze <accounts...>
```

### Issue Tokens

* `recipient`: Public key of the recipient's wallet
* `amount`: Amount of tokens to mint

```bash theme={null}
glam-cli mint issue <recipient> <amount>
```

### Burn Tokens

* `from`: Public key of the wallet that holds the token account to burn
* `amount`: Amount of tokens to burn

```bash theme={null}
glam-cli mint burn <from> <amount>
```

### Force Transfer Tokens

* `from`: Public key of the source wallet
* `to`: Public key of the destination wallet
* `amount`: Amount of tokens to transfer

```bash theme={null}
glam-cli mint transfer <from> <to> <amount>
```
