Stop maintaining separate product databases in every ERP system. Register products once on the blockchain, reference them everywhere. Immutable, transparent, and universally accessible material master data for modern supply chains.
Loading products from blockchain...
Connect your wallet to register materials as global master data on the blockchain
Every company maintains their own master data for products and materials. When businesses trade, they waste time mapping between different systems. A product exists with different IDs, descriptions, and attributes across suppliers, manufacturers, and retailers.
This catalogue creates globally unique, blockchain-verified master data that any company can reference. Each product becomes a tamper-proof NFT with a permanent address. Any ERP or MRP system can query the blockchain for authoritative product information.
Our schema is based on global ERP standards (SAP, Oracle) and international specifications (GS1, UN/CEFACT, ISO). Each asset is limited to 1KB on Nexus blockchain.
| Attribute | Description | Standard |
|---|---|---|
art-nr | Internal article/part number | Free text |
GTIN | Global Trade Item Number (barcode) | GS1 (8-14 digits) |
brand | Brand name if different from manufacturer | Free text |
| Attribute | Description | Standard |
|---|---|---|
category | Human-readable product category | Free text |
subcategory | More specific classification | Free text |
GPC | GS1 Global Product Classification | 8-digit code |
HSCode | Harmonized System code for international trade | 6-10 digits |
| Attribute | Description | Standard |
|---|---|---|
description | Short product description (â¤100 chars) | Free text |
manufacturer | Manufacturer name or GLN | Free text / GS1 GLN |
origin | Country of origin | ISO 3166-1 alpha-2 |
| Attribute | Description | Standard |
|---|---|---|
UOM | Base unit of measure | UN/CEFACT codes |
weight | Net weight per unit in grams | Integer |
hazardous | Dangerous goods flag | Boolean |
perishable | Temperature-sensitive product | Boolean |
shelflife | Shelf life in days (if perishable) | Integer |
| Attribute | Description | Standard |
|---|---|---|
url | Link to extended product info | URL (no https://) |
replaces | Blockchain address of superseded product | Nexus address |
| Attribute | Description |
|---|---|
address | Unique blockchain identifier for this asset |
owner | Blockchain address of asset owner |
created | Unix timestamp of asset creation |
modified | Unix timestamp of last modification |
version | Asset version number (increments on update) |
| Attribute | Description | Values |
|---|---|---|
distordia-type | Asset type identifier | product |
distordia-status | Lifecycle status | valid, discontinued, recalled |
Due to the 1KB asset limit, the following should be stored in your private systems and linked via the url field:
Your ERP/MRP system can query the Nexus blockchain API to import verified product data:
POST https://api.distordia.com/register/list/assets:asset
{
"where": "results.distordia-type=product AND results.distordia-status=valid"
}
Each product returns complete master data including blockchain address for unique reference. To get details of a specific product by its blockchain address:
POST https://api.distordia.com/register/get/assets:asset
{
"address": "<product_blockchain_address>"
}
{
"owner": "a164ce40f952...",
"version": 1,
"created": 1766848496,
"modified": 1766848496,
"type": "OBJECT",
"form": "ASSET",
"distordia-type": "product",
"distordia-status": "valid",
"art-nr": "BV-DN25-TH",
"GTIN": "00012345678905",
"category": "Piping",
"subcategory": "Valves",
"GPC": "40161500",
"HSCode": "848180",
"description": "Ball Valve DN25 Threaded Brass",
"manufacturer": "Distordia",
"brand": "FlowMaster",
"origin": "DE",
"UOM": "EA",
"weight": 2320,
"hazardous": false,
"perishable": false,
"url": "distordia.com/products/bv-dn25"
}
This dApp runs on the Nexus blockchain, providing enterprise-grade security, low transaction fees, and a quantum-resistant architecture for long-term data integrity.