GLAMIDL Reference
GLAM MintProduction

update_mint

Updates mutable mint configuration.

Applies toVaultTokenized VaultSingle-Asset Vault

Required conditions

  • Mint actions must satisfy the linked GLAM state, Token-2022 mint configuration, mint policy, and any request queue or escrow state involved in the flow.
  • Configuration changes must pass owner or authorized-manager checks and, when the state or mint timelock is active, must follow the propose/apply timing model instead of taking effect immediately.

Accounts

AccountRoleDescription
glam_statewritableGLAM state account that stores vault configuration, integration ACLs, delegate permissions, policies, assets, mint linkage, and pricing records.
glam_signersigner, writableCalling authority or fee payer.
glam_mintwritableToken mint account used or validated by this instruction.
system_programread-onlySolana System Program.
token_2022_programread-onlyToken-2022 program account.
glam_protocolread-onlyGLAM Protocol program account used for authorization or CPI.

Arguments

ArgumentTypeNotes
mint_modelMintModel

Policy & permissions

  • Only the GLAM owner can call this; delegates are rejected.

TypeScript SDK usage

await glamClient.mint.update({
  maxCap: new BN(5_000_000_000_000),
  minSubscription: new BN(500_000_000),
});