<\!DOCTYPE html> URTI Global — TQPP Scanner · Triple-Chain Quantum Proof Protocol
v1.0.0
3D SCAN → NFCC
PROTOCOL LIVE
SOVEREIGN · POST-QUANTUM · IMMUTABLE

TQPP Triple-Chain Quantum Proof

Every NFCC issued through TQPP is signed by three independent post-quantum algorithms simultaneously, with each signature anchored to a separate blockchain. A certificate is only valid if all three chains confirm. Physical objects are scanned on-device (iOS LiDAR / Android ARCore), then a dimensional fingerprint mints the NFCC.

217UBVCF COMMODITY CLASSES
3POST-QUANTUM LAYERS
3CHAIN ANCHORS
$4/treeCERTIFIED · $2/pallet
LAYER 1 · LATTICE (Module-LWE)
CRYSTALS-Dilithium-3
→ Polygon (chain id 137)
LAYER 2 · LATTICE (NTRU)
FALCON-1024
→ Ethereum mainnet (chain id 1)
LAYER 3 · HASH-BASED
XMSS via QRL
→ QRL blockchain (QRL-MAINNET)

Issue · Verify

3D SCAN → NFCC SUBMIT
POST /api/tqpp/scan/submit
NFCC VERIFIER
GET /api/tqpp/scan/:id

iOS LiDAR + Android ARCore

iOS · LiDAR
iPhone 14 Pro Max · ARKit

Native iOS capture. Device LiDAR produces a depth-anchored point cloud; we hash the geometry on-device and POST the fingerprint to TQPP. Cross-platform parity with Android.

// Swift payload — POST /api/tqpp/scan/submit
let fp = "0x" + dimFingerprint(pointCloud)
let body: [String: Any] = [
  "scanFingerprint": fp,
  "commodityClass":   "UBVCF-T-0001",
  "device": [
    "platform":   "ios",
    "model":      "iPhone 14 Pro Max",
    "appVersion": "1.0.0",
  ],
  "provenance": [
    "country":           "US",
    "captureTimestamp": ISO8601()
  ],
  "scanPayload": [
    "pointCloudHash": "0x…64hex",
    "dimensions": ["x": 1.2, "y": 0.8, "z": 1.5]
  ]
]
$4 / tree $2 / pallet 217 UBVCF CLASSES
Android · ARCore
Depth API · Java/Kotlin

ARCore + Depth API produces the same dimensional fingerprint shape as the iOS path. Same JSON contract, same TQPP pipeline — parity guaranteed by signature determinism.

// Kotlin payload — POST /api/tqpp/scan/submit
val fp = "0x" + dimFingerprint(depthFrame)
val body = mapOf(
  "scanFingerprint" to fp,
  "commodityClass"   to "UBVCF-T-0001",
  "device" to mapOf(
    "platform"   to "android",
    "model"      to "Pixel 8 Pro",
    "appVersion" to "1.0.0"
  ),
  "provenance" to mapOf(
    "country"           to "US",
    "captureTimestamp" to ts()
  ),
  "scanPayload" to depthStats
)
CROSS-PLATFORM PARITY SAME FINGERPRINT FORMAT

Latest TQPP NFCCs

RECENT SCANS
GET /api/tqpp/scans
NFCC IDCOMMODITYPLATFORMDEVICE COMBINED HASHSTATUSISSUED
Loading…