GLAM Mint StagingStaging
claim_fees
Claims accrued manager or protocol fees from a tokenized vault.
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.
- The vault must have fresh pricing records for the operation; fee or fulfillment math depends on NAV values written by the pricing flow.
Accounts
| Account | Role | Description |
|---|---|---|
| glam_state | read-only | GLAM state account that stores vault configuration, integration ACLs, delegate permissions, policies, assets, mint linkage, and pricing records. |
| glam_vault | writable | Vault PDA associated with the GLAM state and used as the vault authority. |
| glam_mint | writable | Token mint account used or validated by this instruction. |
| glam_escrow | read-only | Escrow account or escrow token account used by mint flows. |
| escrow_mint_ata | writable | Token mint account used or validated by this instruction. |
| signer | signer, writable | Calling authority or fee payer. |
| deposit_asset | read-only | Mint account for the asset being deposited, subscribed with, or used for fee settlement. |
| vault_deposit_ata | writable | Token account read or written by this instruction. |
| protocol_fee_authority | read-only | Configured protocol fee recipient authority for accrued tokenized-vault fees. |
| protocol_fee_authority_ata | writable | Token account read or written by this instruction. |
| manager_fee_authority | read-only | Configured manager fee recipient authority for accrued tokenized-vault fees. |
| manager_fee_authority_ata | writable | Token account read or written by this instruction. |
| 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. |
| system_program | read-only | Solana System Program. |
| associated_token_program | read-only | Associated Token Account program. |
| deposit_token_program | read-only | Token program account. |
| token_2022_program | read-only | Token-2022 program account. |
No arguments
Policy & permissions
- Caller: GLAM owner, or a delegate with Mint
ClaimFees. - The
managerandprotocol authorityaccounts are validated payout recipients, not signer authorities.
TypeScript SDK usage
await glamClient.fees.claimFees();