Audience: Data center operators, battery manufacturers, sustainability engineers, ESG reporting teams, EU regulatory compliance leads. No prior SWT3 experience required.
CRITICAL ASSESSOR NOTICE: SWT3 witness anchors are evidence artifacts, not compliance determinations. Each anchor records that a governance-relevant event occurred and preserves its cryptographic fingerprint. The assessor determines whether the evidence satisfies a given control requirement. The protocol does not make pass/fail compliance decisions on behalf of any regulatory body. SWT3 does not measure temperature, PUE, water usage, or battery health. It records what was reported, when, and by whom. Substance verification remains the assessor's responsibility.

1. The Regulatory Landscape

If you manufacture batteries, operate data centers, or build hardware products for the EU market, you are about to face a new reality: you will need to prove, with traceable evidence, what is in your products, where it came from, and what happened to it over its entire lifecycle.

This is not a reporting exercise you can handle with spreadsheets. The EU Battery Regulation requires machine-readable Digital Product Passports by February 2027. The Energy Efficiency Directive requires annual disclosure of PUE, water usage, and energy sources for every data center above 500 kW. CSRD requires auditable sustainability data. The Cyber Resilience Act requires hardware bills of materials. And they all require traceability -- proof that the data was captured at the right time, by the right system, and has not been altered since.

The challenge is not collecting the data. Most organizations already have BMS systems, thermal sensors, and battery management controllers producing measurements. The challenge is creating an evidence chain that an auditor or regulator can independently verify without trusting the reporting organization's own databases.

RegulationScopeKey Deadline
EU Battery Regulation (2023/1542) All batteries placed on the EU market must carry a Digital Product Passport with state-of-health, material composition, recycled content, and carbon footprint data February 2027 (DPP mandatory)
ESPR (Ecodesign for Sustainable Products) Extends Digital Product Passports to nearly all physical products sold in the EU, including electronics, textiles, and construction materials 2027-2030 (phased rollout)
EU Energy Efficiency Directive (EED) Data centers above 500 kW must report PUE, water usage, waste heat recovery, and renewable energy share to national authorities Annual reporting (effective 2024)
CSRD (Corporate Sustainability Reporting Directive) Large companies and listed SMEs must publish auditable sustainability reports covering energy, water, waste, and supply chain due diligence Phased from 2024 (large) to 2026 (listed SMEs)
EU Cyber Resilience Act (CRA) Products with digital elements must maintain software and hardware bills of materials with vulnerability tracking throughout their lifecycle 2027 (full enforcement)

These regulations do not exist in isolation. A data center operator who deploys GPU clusters with lithium-ion UPS batteries faces obligations under the Battery Regulation (battery passports), EED (energy and water reporting), CSRD (sustainability disclosure), and CRA (hardware SBOMs) -- simultaneously. A battery manufacturer shipping cells to automotive OEMs needs Digital Product Passports that track state-of-health from factory to end-of-life recycler.

The common thread is traceability. Regulators do not simply want the numbers. They want proof that the numbers were reported at specific times, by identified parties, and that the evidence chain has not been altered.

2. What SWT3 Witnesses

SWT3 is a passive witness. It records reported values. It does not measure temperature, calculate PUE, assess battery health, or determine recycled content percentages. Your sensors, BMS controllers, and monitoring systems produce the measurements. SWT3 creates a tamper-evident record that those measurements were reported, when they were reported, and by which system.

When your building management system reports that facility power consumption is 2,400 kW and IT load is 1,800 kW, SWT3 records those reported values with a SHA-256 fingerprint. If anyone later disputes what was reported, the fingerprint proves the exact values that were recorded at that exact moment. SWT3 does not validate whether 2,400 kW is accurate -- it proves that 2,400 kW is what the system reported.

This distinction matters for assessors. The witness anchor is evidence of reporting, not evidence of accuracy. The assessor must separately verify that the reporting system is calibrated, maintained, and trustworthy. SWT3 provides the cryptographic chain that connects the reporting system's output to an immutable ledger entry.

For regulatory compliance, this separation is a feature, not a limitation. Regulations like the EU Battery Regulation require that manufacturers maintain traceable records. They do not require that the record-keeping system also be the measurement system. SWT3 handles the record-keeping layer with cryptographic integrity, while your existing instrumentation handles the measurement layer.

3. Two Namespaces, One Protocol

SWT3 organizes HBOM and DPP procedures into two namespaces within the Universal Control Taxonomy (UCT). The HBOM namespace covers infrastructure-level and component-level concerns -- inventories, lifecycles, environmental metrics, and supply chains. The DPP namespace covers product-level concerns -- battery health, charge cycles, degradation events, and end-of-life disposition.

ProcedureNamespaceTitleWhat It Witnesses
HBOM-INV.1 HBOM Hardware Inventory Component count, manifest hash, delta from baseline
HBOM-LIFE.1 HBOM Component Lifecycle Lifecycle event type, component identifier, component age
HBOM-THERM.1 HBOM Thermal Profile Ambient and component temperature, threshold status
HBOM-WATER.1 HBOM Water Consumption Liters consumed, WUE ratio, water source type
HBOM-PUE.1 HBOM Power Usage Facility power, IT load, PUE ratio
HBOM-SUPPLY.1 HBOM Supply Chain Provenance Supplier identifier, provenance verification status, country of origin
DPP-SOH.1 DPP Battery State of Health SoH percentage, cycle count, remaining capacity
DPP-CHRG.1 DPP Charge Cycle Charge/discharge event type, energy transferred, peak temperature
DPP-DEGRAD.1 DPP Degradation Event Degradation type, SoH change, ambient temperature
DPP-EOL.1 DPP End of Life Disposition type, handler identifier, final SoH
Same protocol, different domains. HBOM procedures use the same fingerprint formula, the same anchor format, and the same verification endpoint as every other SWT3 procedure. A data center operator witnessing PUE and a battery manufacturer witnessing SoH both produce anchors that are independently verifiable through the same mechanism. The protocol is domain-agnostic. The procedures are domain-specific.

4. Quick Start: Data Center HBOM (Python)

This example witnesses a hardware inventory, a thermal reading, and a PUE measurement for a data center. Ten lines of code produce three independently verifiable witness anchors.

from swt3_ai import Witness

witness = Witness(
    tenant_id="datacenter-eu",
    api_key="axm_...",
    endpoint="https://sovereign.tenova.io/api/v1/witness"
)

# Record the current hardware inventory
witness.witness_hardware_inventory(
    component_count=847,
    manifest_hash="a1b2c3d4e5f6...",
    delta_from_baseline=3
)

# Record a thermal reading from the GPU cluster
witness.witness_thermal_profile(
    ambient_temp_c=22.5,
    component_temp_c=68.3,
    threshold_exceeded=False
)

# Record the facility PUE from the BMS
witness.witness_power_usage(
    total_facility_kw=2400.0,
    it_load_kw=1800.0,
    pue_x1000=1333
)
What the assessor sees:

Three anchors appear on the compliance ledger: HBOM-INV.1 (inventory), HBOM-THERM.1 (thermal), and HBOM-PUE.1 (PUE). Each anchor carries a SHA-256 fingerprint that the assessor can independently recompute. The manifest hash in the inventory anchor lets the assessor verify that the reported component list matches a known baseline. The PUE value of 1.333 (encoded as 1333 to avoid floating-point ambiguity) is the value the BMS reported -- the assessor must separately verify the BMS calibration.

Integer encoding for ratios. PUE and WUE are encoded as integers multiplied by 1000 (e.g., PUE 1.333 becomes pue_x1000=1333). This eliminates floating-point rounding differences across languages and platforms. All SWT3 SDKs use this convention for ratio values. The assessor divides by 1000 to recover the original ratio.

5. Quick Start: Battery Passport (Python)

This example witnesses the three most common battery passport events: a state-of-health snapshot, a completed charge cycle, and a degradation event detected by the battery management system.

from swt3_ai import Witness

witness = Witness(
    tenant_id="battery-mfg-eu",
    api_key="axm_...",
    endpoint="https://sovereign.tenova.io/api/v1/witness"
)

# Record current battery state of health
witness.witness_battery_soh(
    soh_percent=92.3,
    cycle_count=1247,
    capacity_kwh=48.6
)

# Record a completed charge cycle
witness.witness_charge_cycle(
    event_type="charge_complete",
    energy_kwh=42.1,
    peak_temp_c=35.2
)

# Record a degradation event flagged by the BMS
witness.witness_degradation_event(
    degradation_type="thermal_stress",
    soh_delta_percent=0.8,
    ambient_temp_c=42.0
)
What the assessor sees:

Three anchors on the ledger: DPP-SOH.1 (SoH snapshot at 92.3%), DPP-CHRG.1 (charge cycle completed, 42.1 kWh transferred, peak temp 35.2C), and DPP-DEGRAD.1 (thermal stress degradation, 0.8% SoH loss). The timestamps on these anchors establish the chronological order of events. Over time, sequential DPP-SOH.1 anchors build a verifiable SoH history for the battery -- the foundation of the Digital Product Passport.

6. TypeScript Examples

Data Center HBOM

import { Witness } from "@tenova/swt3-ai";

const witness = new Witness({
  tenantId: "datacenter-eu",
  apiKey: "axm_...",
  endpoint: "https://sovereign.tenova.io/api/v1/witness"
});

// Hardware inventory with baseline comparison
witness.witnessHbomInventory({
  componentCount: 847,
  manifestHash: "a1b2c3d4e5f6...",
  deltaFromBaseline: 3
});

// Thermal profile from monitoring system
witness.witnessHbomThermal({
  ambientTempC: 22.5,
  componentTempC: 68.3,
  thresholdExceeded: false
});

// PUE from building management system
witness.witnessHbomPue({
  totalFacilityKw: 2400.0,
  itLoadKw: 1800.0,
  pueX1000: 1333
});

// Water consumption for WUE reporting
witness.witnessHbomWater({
  litersConsumed: 12500.0,
  wueRatioX1000: 1800,
  sourceType: "recycled"
});

// Supply chain provenance for a component supplier
witness.witnessHbomSupplyChain({
  supplierId: "Samsung-SDI-Korea",
  provenanceVerified: true,
  countryOfOrigin: "KR"
});

Battery Passport

import { Witness } from "@tenova/swt3-ai";

const witness = new Witness({
  tenantId: "battery-mfg-eu",
  apiKey: "axm_...",
  endpoint: "https://sovereign.tenova.io/api/v1/witness"
});

// State of health snapshot
witness.witnessDppSoh({
  sohPercent: 92.3,
  cycleCount: 1247,
  capacityKwh: 48.6
});

// Charge cycle event
witness.witnessDppChargeCycle({
  eventType: "charge_complete",
  energyKwh: 42.1,
  peakTempC: 35.2
});

// Degradation event
witness.witnessDppDegradation({
  degradationType: "thermal_stress",
  sohDeltaPercent: 0.8,
  ambientTempC: 42.0
});

// End-of-life handoff
witness.witnessDppEol({
  dispositionType: "recycling",
  handlerId: "Umicore-BE-0471",
  finalSohPercent: 72.1
});

7. Component Lifecycle Chain

The HBOM-LIFE.1 procedure witnesses component lifecycle events. A component moves through defined stages from installation to end-of-life. Each transition produces a witness anchor, creating a verifiable chain of custody for every tracked asset.

installed ──> commissioned ──> maintained ──> maintained ──> degraded ──> decommissioned ──> recycled │ │ │ │ │ │ │ HBOM.2 HBOM.2 HBOM.2 HBOM.2 HBOM.2 HBOM.2 HBOM.2 age: 0d age: 1d age: 180d age: 365d age: 730d age: 1095d age: 1096d │ │ │ │ │ │ │ └──────────────┴───────────────┴───────────────┴──────────────┴──────────────┴────────────────┘ All anchors share the same component_id Assessor reconstructs full history by querying that identifier
from swt3_ai import Witness

witness = Witness(
    tenant_id="datacenter-eu",
    api_key="axm_...",
    endpoint="https://sovereign.tenova.io/api/v1/witness"
)

# GPU installed in rack
witness.witness_component_lifecycle(
    event_type="installed",
    component_id="GPU-A100-SN-00421",
    age_days=0
)

# GPU commissioned after burn-in testing
witness.witness_component_lifecycle(
    event_type="commissioned",
    component_id="GPU-A100-SN-00421",
    age_days=1
)

# Scheduled maintenance at 6 months
witness.witness_component_lifecycle(
    event_type="maintained",
    component_id="GPU-A100-SN-00421",
    age_days=180
)

# Degradation detected after 2 years
witness.witness_component_lifecycle(
    event_type="degraded",
    component_id="GPU-A100-SN-00421",
    age_days=730
)

# Decommissioned for replacement
witness.witness_component_lifecycle(
    event_type="decommissioned",
    component_id="GPU-A100-SN-00421",
    age_days=1095
)

# Sent to recycling facility
witness.witness_component_lifecycle(
    event_type="recycled",
    component_id="GPU-A100-SN-00421",
    age_days=1096
)

The six supported lifecycle event types are: installed, commissioned, maintained, degraded, decommissioned, and recycled. Every anchor in the chain carries the same component_id, allowing an assessor to reconstruct the complete history of any individual component by filtering ledger entries on that identifier.

What the assessor sees:

A sequence of HBOM-LIFE.1 anchors tied to the same component identifier. The timestamps prove the chronological order of lifecycle transitions. Gaps in the chain (for example, a component jumping from "installed" directly to "recycled" without maintenance records) are visible and can prompt further investigation. The age_days value in each anchor provides an independent cross-check against the anchor timestamp.

8. Battery Health Tracking

The EU Battery Regulation requires manufacturers to provide state-of-health data throughout a battery's life. Three DPP procedures work together to build a complete health profile: DPP-SOH.1 captures periodic SoH snapshots, DPP-CHRG.1 records individual charge and discharge cycles, and DPP-DEGRAD.1 records degradation events flagged by the battery management system.

SoH Snapshots Over Time

Periodic SoH witnessing creates a verifiable degradation curve. Each snapshot records the current health percentage, the cumulative cycle count, and the remaining usable capacity.

# Factory commissioning -- SoH 100%
witness.witness_battery_soh(soh_percent=100.0, cycle_count=0, capacity_kwh=52.0)

# After 500 cycles -- normal degradation
witness.witness_battery_soh(soh_percent=96.1, cycle_count=500, capacity_kwh=49.9)

# After 1000 cycles -- approaching warranty threshold
witness.witness_battery_soh(soh_percent=92.3, cycle_count=1000, capacity_kwh=48.0)

# After 2000 cycles -- second-life candidate
witness.witness_battery_soh(soh_percent=81.5, cycle_count=2000, capacity_kwh=42.4)

# Below 80% -- end-of-first-life trigger
witness.witness_battery_soh(soh_percent=78.2, cycle_count=2200, capacity_kwh=40.7)

Charge Cycle Monitoring

Individual charge and discharge events can be witnessed to create a granular energy transfer history. The four supported event types are charge_start, charge_complete, discharge_start, and discharge_complete.

# Charge started
witness.witness_charge_cycle(
    event_type="charge_start",
    energy_kwh=0.0,
    peak_temp_c=24.0
)

# Charge completed -- record energy delivered and peak temperature
witness.witness_charge_cycle(
    event_type="charge_complete",
    energy_kwh=42.1,
    peak_temp_c=35.2
)

# Discharge completed -- record energy consumed
witness.witness_charge_cycle(
    event_type="discharge_complete",
    energy_kwh=38.7,
    peak_temp_c=31.8
)

Degradation Events

When the battery management system detects a degradation event, the DPP-DEGRAD.1 procedure records the type, the SoH impact, and the ambient conditions. Six degradation types are supported: calendar_aging, thermal_stress, overcharge, deep_discharge, mechanical, and unknown.

# Thermal stress during a heat wave
witness.witness_degradation_event(
    degradation_type="thermal_stress",
    soh_delta_percent=0.8,
    ambient_temp_c=42.0
)

# Deep discharge event during grid outage
witness.witness_degradation_event(
    degradation_type="deep_discharge",
    soh_delta_percent=1.2,
    ambient_temp_c=28.0
)

# Calendar aging after long storage period
witness.witness_degradation_event(
    degradation_type="calendar_aging",
    soh_delta_percent=0.3,
    ambient_temp_c=20.0
)
Degradation accountability. Each DPP-DEGRAD.1 anchor records the SoH loss attributed to a specific event. Over the life of a battery, the cumulative SoH delta from degradation events should approximate the total SoH decline observed in DPP-SOH.1 snapshots. Significant discrepancies between the two may indicate unreported degradation events or sensor calibration issues -- both of which are relevant to assessors reviewing the Digital Product Passport.

9. Supply Chain Provenance

The HBOM-SUPPLY.1 procedure witnesses supply chain provenance for hardware components. Each anchor records the supplier identifier, whether provenance verification was performed, and the country of origin. This supports EU due diligence requirements for conflict minerals, forced labor prohibitions, and supply chain transparency regulations.

from swt3_ai import Witness

witness = Witness(
    tenant_id="datacenter-eu",
    api_key="axm_...",
    endpoint="https://sovereign.tenova.io/api/v1/witness"
)

# Memory modules -- provenance verified
witness.witness_supply_chain_provenance(
    supplier_id="Samsung-SDI-Korea",
    provenance_verified=True,
    country_of_origin="KR"
)

# Power supplies -- provenance verified
witness.witness_supply_chain_provenance(
    supplier_id="Delta-Electronics-TW",
    provenance_verified=True,
    country_of_origin="TW"
)

# Network switches -- provenance pending
witness.witness_supply_chain_provenance(
    supplier_id="Supplier-X-Redacted",
    provenance_verified=False,
    country_of_origin="CN"
)
Provenance verification is a reported status, not an SWT3 determination. When provenance_verified=True, the witness anchor records that the reporting system indicated provenance was verified. SWT3 does not perform the verification. The assessor must examine the underlying due diligence documentation (certificates of origin, supplier audits, chain-of-custody records) to validate the claim. When provenance_verified=False, the anchor provides a traceable record that the organization was aware of unverified provenance at that point in time.

The supplier_id field accepts any string identifier. Organizations that need to protect supplier relationships at higher clearing levels can hash the supplier name before passing it to the witness method. The anchor still provides a verifiable record without exposing the supplier identity.

What the assessor sees:

HBOM-SUPPLY.1 anchors for each supplier relationship in the hardware inventory. Suppliers with provenance_verified=False are immediately visible as requiring attention. The country-of-origin field supports conflict minerals screening and sanctions compliance checks. The assessor can cross-reference the supplier count against the HBOM-INV.1 inventory anchor to verify that all significant suppliers have been documented.

10. End-of-Life and Recycling

The DPP-EOL.1 procedure witnesses the final disposition of a battery or product. This is the terminal event in the Digital Product Passport -- the anchor that closes the lifecycle chain. It records the disposition type, the identity of the handler (recycler, refurbisher, or disposal facility), and the final state of health at handoff.

from swt3_ai import Witness

witness = Witness(
    tenant_id="battery-mfg-eu",
    api_key="axm_...",
    endpoint="https://sovereign.tenova.io/api/v1/witness"
)

# Battery sent to certified recycler
witness.witness_end_of_life(
    disposition_type="recycling",
    handler_id="Umicore-BE-0471",
    final_soh_percent=72.1
)

# Battery repurposed for stationary storage
witness.witness_end_of_life(
    disposition_type="repurpose",
    handler_id="SecondLife-Energy-DE-0893",
    final_soh_percent=78.5
)

# Battery refurbished with new cells
witness.witness_end_of_life(
    disposition_type="refurbishment",
    handler_id="BattRefurb-NL-0214",
    final_soh_percent=65.0
)

The five supported disposition types are: recycling, repurpose, refurbishment, landfill, and hazmat_disposal. The handler identifier should be specific enough for the assessor to verify the handler's authorization -- facility license numbers, EU WEEE registration numbers, or equivalent identifiers.

EU WEEE and Battery Regulation compliance. The EU Battery Regulation requires producers to ensure that waste batteries are collected and recycled by authorized facilities. The DPP-EOL.1 anchor provides a cryptographic record that the handoff occurred, who received the battery, and its condition at the time of transfer. This does not replace the physical chain-of-custody documentation required by waste regulations. It creates an independent, tamper-evident record that complements those documents and makes gaps in the paper trail detectable.
What the assessor sees:

An DPP-EOL.1 anchor with the handler identifier and final SoH. The assessor can verify the handler's authorization status against national WEEE registries. The final SoH percentage, combined with earlier DPP-SOH.1 snapshots, provides a complete health trajectory from commissioning to disposition. Batteries sent to landfill or hazmat_disposal when their SoH exceeds 70% may warrant further investigation -- the assessor can flag these for review.

11. Environmental Reporting

Data centers face annual reporting obligations under the EU Energy Efficiency Directive and CSRD. Three HBOM procedures provide the witness infrastructure for environmental metrics: HBOM-WATER.1 (water consumption), HBOM-PUE.1 (power usage), and HBOM-THERM.1 (thermal monitoring).

Water Consumption and WUE

Water Usage Effectiveness (WUE) measures how many liters of water a data center consumes per kilowatt-hour of IT energy. The HBOM-WATER.1 procedure witnesses the reported values.

# Monthly water consumption report -- recycled water source
witness.witness_water_consumption(
    liters_consumed=12500.0,
    wue_ratio_x1000=1800,
    source_type="recycled"
)

# Facility using municipal water
witness.witness_water_consumption(
    liters_consumed=28000.0,
    wue_ratio_x1000=2400,
    source_type="municipal"
)

# Air-cooled facility -- zero water consumption
witness.witness_water_consumption(
    liters_consumed=0.0,
    wue_ratio_x1000=0,
    source_type="municipal"
)

The five supported water source types are: municipal, recycled, rainwater, groundwell, and mixed. The source type is relevant for CSRD reporting, which distinguishes between freshwater withdrawal and recycled water use.

Power Usage and PUE

Power Usage Effectiveness (PUE) is the primary energy efficiency metric for data centers under the EED. The HBOM-PUE.1 procedure witnesses the total facility power, the IT load, and the computed PUE ratio.

# Hourly PUE reading from BMS
witness.witness_power_usage(
    total_facility_kw=2400.0,
    it_load_kw=1800.0,
    pue_x1000=1333
)

# Summer peak -- cooling overhead increases PUE
witness.witness_power_usage(
    total_facility_kw=2800.0,
    it_load_kw=1800.0,
    pue_x1000=1556
)

# Winter baseline -- lowest PUE
witness.witness_power_usage(
    total_facility_kw=2100.0,
    it_load_kw=1800.0,
    pue_x1000=1167
)

Thermal Monitoring

Thermal data supports both operational safety and environmental reporting. The HBOM-THERM.1 procedure witnesses ambient and component temperatures along with a threshold exceedance flag.

# Normal operation
witness.witness_thermal_profile(
    ambient_temp_c=22.5,
    component_temp_c=68.3,
    threshold_exceeded=False
)

# Threshold exceeded -- triggers operational alert
witness.witness_thermal_profile(
    ambient_temp_c=28.0,
    component_temp_c=92.1,
    threshold_exceeded=True
)
Seasonal variance is evidence, not noise. EED and CSRD auditors expect to see PUE and WUE vary across seasons. A data center reporting identical PUE values year-round may trigger auditor scrutiny. Frequent witnessing of environmental metrics creates a credible record that naturally reflects seasonal and operational variation.

12. What the Assessor Sees

Every witness method produces an SWT3 Witness Anchor -- a structured, independently verifiable evidence record. Here is a representative anchor from an HBOM-PUE.1 power usage witness call:

SWT3-E-CLOUD-HBOM-PUE1-PASS-1788288000-7f3a92c1e405

The anchor encodes the deployment tier, provider, procedure identifier, verdict, epoch timestamp, and a 12-character SHA-256 fingerprint. The assessor can independently recompute the fingerprint from the recorded input values to verify that the anchor has not been tampered with.

Evidence Interpretation

FieldLabelInterpretation
Procedure Control reference Which governance procedure was witnessed (e.g., HBOM-PUE.1 for power usage)
Reported metric (primary) Primary observation The principal value reported by the measurement system (e.g., total facility kW)
Reported metric (secondary) Supporting observation A supporting measurement that contextualizes the primary value (e.g., IT load kW)
Reported metric (tertiary) Derived indicator A derived or threshold value (e.g., PUE ratio, threshold status, event type)
Timestamp Evidence time Unix epoch seconds when the anchor was minted
Fingerprint Integrity hash SHA-256 prefix that binds all fields -- any change invalidates the hash
The assessor's job does not change. SWT3 anchors prove that specific values were reported at specific times by specific systems. The assessor still evaluates whether those values are accurate (sensor calibration), complete (coverage of all assets), and meaningful (alignment with regulatory thresholds). The anchors make it harder to backdate, alter, or fabricate reports. They do not make it unnecessary to verify the underlying data.

13. Regulatory Mapping

Each SWT3 procedure maps to specific requirements across multiple regulatory frameworks. The following matrix shows which procedures provide evidence relevant to each regulation.

Procedure EU Battery Reg CRA CSRD EED NIST 800-53 ISO 14001
HBOM-INV.1 Art. 13 (SBOM) CM-8, SA-17
HBOM-LIFE.1 Art. 13 (lifecycle) ESRS E5 CM-3, SA-22 6.1.2
HBOM-THERM.1 ESRS E1 Art. 12 PE-14 8.1
HBOM-WATER.1 ESRS E3 Art. 12 8.1
HBOM-PUE.1 ESRS E1 Art. 12 8.1
HBOM-SUPPLY.1 Art. 39 (due diligence) Art. 13 ESRS S2 SA-12 8.1
DPP-SOH.1 Art. 77 (SoH) ESRS E5 9.1.1
DPP-CHRG.1 Art. 14 (performance) ESRS E1 8.1
DPP-DEGRAD.1 Art. 14 (safety) ESRS E5 9.1.1
DPP-EOL.1 Art. 59-61 (recycling) ESRS E5 8.1
Cross-framework evidence reuse. A single HBOM-PUE.1 anchor produced during an EED power report also provides evidence for CSRD energy disclosure (ESRS E1) and ISO 14001 operational controls (8.1). The anchor is minted once and referenced across frameworks. This eliminates duplicate data collection and ensures that all frameworks see the same underlying evidence.
What the assessor sees:

The regulatory mapping is informational. SWT3 anchors carry the UCT procedure identifier, not the regulatory article number. The assessor uses this mapping to determine which anchors satisfy which regulatory requirements. The mapping is published in the UCT Registry and updated as regulations evolve.

14. Getting Started

Install the SDK for your language:

# Python
pip install swt3-ai

# TypeScript / Node.js
npm install @tenova/swt3-ai

Both SDKs support demo mode -- omit the API key and endpoint to run locally. Witness anchors print to the console so you can verify the output before connecting to the ledger. When you are ready for persistent, independently verifiable evidence, create a free account and set the API key.

Resources