GLAM Mint StagingStaging
set_protocol_fees
Updates protocol fee configuration for mint flows.
Applies toVaultTokenized VaultSingle-Asset Vault
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_mint | read-only | Token mint account used or validated by this instruction. |
| signer | signer, writable | Calling authority or fee payer. |
| glam_config | read-only | Global GLAM configuration account for fee and asset/oracle metadata. |
| glam_protocol_program | read-only | GLAM Protocol program account used for authorization or CPI. |
Arguments
| Argument | Type | Notes |
|---|---|---|
| base_fee_bps | u16 | |
| flow_fee_bps | u16 |
Policy & permissions
- Signer must be the global
glam_configfee_authorityon mainnet and staging. - Protocol fees must have been crystallized at the current timestamp before this update is accepted.
TypeScript SDK usage
await glamClient.fees.setProtocolFees(
1,
2000,
);