List Token Holders

glam-cli mint holders

Update Mint Policies

  • -l, --lockup <seconds>: Set lockup period in seconds
  • -f, --frozen <boolean>: Set default account state frozen
# 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
glam-cli mint create-account <owner>

Freeze Token Accounts

  • accounts...: A space-separated list of token account pubkeys to freeze
glam-cli mint freeze <accounts...>

Unfreeze Token Accounts

  • accounts...: A space-separated list of token account pubkeys to unfreeze
glam-cli mint unfreeze <accounts...>

Issue Tokens

  • recipient: Public key of the recipient’s wallet
  • amount: Amount of tokens to mint
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
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
glam-cli mint transfer <from> <to> <amount>