GLAM Mint StagingStaging
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
| Account | Role | Description |
|---|---|---|
| glam_state | writable | GLAM state account that stores vault configuration, integration ACLs, delegate permissions, policies, assets, mint linkage, and pricing records. |
| glam_signer | signer, writable | Calling authority or fee payer. |
| glam_mint | writable | Token mint account used or validated by this instruction. |
| system_program | read-only | Solana System Program. |
| token_2022_program | read-only | Token-2022 program account. |
| glam_protocol | read-only | GLAM Protocol program account used for authorization or CPI. |
Arguments
| Argument | Type | Notes |
|---|---|---|
| mint_model | MintModel |
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),
});