Variable: AGENT_TX_GROUP_VALUES
constAGENT_TX_GROUP_VALUES: readonly [AdvancedAssetManagement,AssetDocumentManagement,AssetManagement,AssetMetadataManagement,CapitalDistribution,CheckpointManagement,ComplianceManagement,CorporateActionsManagement,CorporateBallotManagement,ExternalAgentManagement,Issuance,Redemption,StoManagement,TrustedClaimIssuersManagement]
Defined in: src/types/txGroupConstants.ts:513
Runtime list of TxGroup values that are permitted for External Agent permissions.
- Pairs with AgentTxGroup for compile-time safety.
- Use this constant when you need to iterate, validate, or render the allowed groups at runtime without duplicating definitions.
- All transactions in these groups are available to both Agents and Secondary Keys.
- Groups are ordered alphabetically for consistency.
Example
AGENT_TX_GROUP_VALUES.forEach(group => {
const tags = txGroupToTxTags(group);
// render group with its tags, build UI options, etc.
});