Skip to main content
Version: 1.4.2

Type Alias: MintBurnRole

MintBurnRole = "mint" | "burn" | "mintAndBurn"

Defined in: token-admin/types.ts:1080

Which role(s) to grant on a token.

  • 'mintAndBurn' — grant both mint and burn (default, backwards compatible)
  • 'mint' — grant mint only
  • 'burn' — grant burn only

Chain-specific notes:

  • Solana: Only 'mint' and 'mintAndBurn' are valid (SPL tokens have a single mint authority; burn is implicit for token holders). 'burn' will throw an error.