NFT Categories
Access prerequisites
- Permission (module):
manageToken - License/Feature:
MANAGE_NFTS - Menu container: TOKENIZATION → group Tokenization → NFT Categories
What it is / when to use
Defines the categories (and subcategories) used to classify NFTs. Every NFT must be assigned to a category at creation time, and only categories that allow product creation (allow_product_creation) are available in the NFT form. The screen displays categories in a hierarchy (category → subcategory).
Prerequisites
- Permission:
manageToken(dual — CPM enum + module in DB). - License/Feature:
MANAGE_NFTS.
Step by step
- Go to Tokenization → NFT Categories.
- Search by name or browse the tree.
- Add category (or add a subcategory from a parent category).
- Edit or delete as needed.
Fields (create/edit modal)
| Field | What it is | Required? | System/backend effect |
|---|---|---|---|
| Name | Category name | Yes | Saves the name; validates whether a category with the same name already exists (blocks duplicates). |
| Photo | Category image | Yes | Image associated with the category. |
| Parent category | Defines whether it is a subcategory | No | parentCategory — when provided, creates the category as a child. |
Actions and modals
- Add category / subcategory: opens the application modal (
AssetsDialogApplyComponent) increatemode. - Edit: same modal in
editmode. - Delete category / subcategory: requests confirmation (bottom sheet) and removes.
Business rules / cautions
Attention
- Only categories with product creation enabled (
allow_product_creation) appear in the NFT form. - Deleting a category may affect the tree (subcategories). Check whether there are NFTs linked to it before deleting.
- The name is validated against duplicates on registration.