The EU Data Act does not just regulate who can access data — it also governs the technical infrastructure used to enforce data-sharing arrangements. Article 36 of the Data Act introduces specific requirements for smart contracts deployed in data-sharing contexts, establishing a legal framework for an area that has historically operated outside formal regulatory oversight. For US companies building or using blockchain-based platforms that facilitate data sharing involving EU parties, these requirements carry real compliance weight and should inform architectural decisions made long before a product reaches market.
This page explains what smart contracts are in the Data Act context, what Article 36 specifically requires, how those requirements map onto practical technical choices, and what US businesses need to do to ensure their smart contract infrastructure meets EU standards.
What the EU Data Act Means by Smart Contracts
In everyday usage, the term “smart contract” can refer to a wide range of automated software programs. The EU Data Act takes a focused view. For purposes of Article 36, a smart contract is an automated program — typically deployed on a distributed ledger or blockchain — that executes and enforces the terms of a data access or data-sharing agreement without requiring continuous human intervention. When the specified conditions are met, the program runs automatically: granting or revoking access, triggering payments, logging a transaction, or relaying data to an authorized recipient.
This definition is narrower than the general blockchain concept of a smart contract as any self-executing piece of code. The Data Act is focused specifically on smart contracts that are used to implement rights and obligations arising from data-sharing agreements — the kind of arrangements governed elsewhere in the Act, such as B2B data access deals, user data portability, and cloud service interoperability commitments. If a smart contract is used to automate payroll or manage a supply chain inventory system, Article 36 may not apply. If it is used to execute or enforce the terms under which one party shares machine-generated or IoT data with another party under a Data Act arrangement, it almost certainly does.
The use of distributed ledger technology is expressly contemplated by Article 36, though the requirement is not limited to blockchains. Any automated mechanism executing data-sharing obligations in a way that removes or reduces the role of a trusted human intermediary is in scope. As smart contract technology matures and finds its way into more commercial data-sharing architectures, the scope of Article 36 is likely to be interpreted broadly by regulators.
The Four Core Requirements of Article 36
Article 36 establishes four distinct requirements for smart contracts used in data-sharing arrangements. Each requirement reflects a different category of risk: the risk that execution cannot be stopped, the risk of unauthorized tampering, the risk of scope creep in data processing, and the risk that parties cannot verify what actually happened. Understanding each requirement individually is essential for translating them into engineering and compliance choices.
Requirement One: Termination and Interruption Mechanisms
The first requirement is that smart contracts used for data sharing must incorporate a mechanism that allows authorized parties to terminate or suspend execution. This is sometimes called a “kill switch” in engineering parlance, though the Data Act uses more formal language. The underlying concern is straightforward: one of the defining features of smart contracts — their automatic, irreversible execution — can become a liability if something goes wrong. A bug in the contract logic, a change in law, a dispute between the parties, or the discovery of an unauthorized data flow can all create situations where the ability to halt execution is critical.
Article 36 requires that this termination capability exist and be available to authorized parties. It does not specify exactly which parties must have this authority, leaving room for contractual definition — but it must be someone with a legitimate stake in the data-sharing arrangement, not a third party with no oversight role. In practice, this means smart contracts deployed for EU data-sharing should be designed with either an admin key, a multisig governance mechanism, or a formal upgrade/pause function that can be invoked by defined principals.
For US developers accustomed to deploying immutable smart contracts on public blockchains, this requirement may feel counterintuitive. Immutability is often promoted as a security feature. The Data Act’s position is that in a regulatory context — where data rights, legal obligations, and third-party interests are at stake — the ability to intervene is more important than architectural purity. Developers will need to design pausability and termination logic directly into their contracts, and document clearly which addresses or multisig thresholds control those functions.
Requirement Two: Access Controls Against Unauthorized Modification
The second requirement is that smart contracts must implement technical measures to prevent unauthorized modification of their logic or parameters. This protects the integrity of the data-sharing arrangement: once parties agree on what the smart contract will do, no single party — and certainly no third party — should be able to alter its behavior without consent.
In blockchain terms, this maps to a combination of controls. The contract code itself should be deployed as final as possible, with any upgrade pathway governed by multi-party authorization or time-locked governance. Administrative functions that could change contract behavior — such as whitelisting new data recipients, modifying transfer conditions, or altering fee structures — should require verified signatures from all relevant parties or a defined quorum. Private key management must be robust, since the access control framework is only as strong as the security of the keys that control it.
For off-chain smart contract systems (automated programs executing data-sharing agreements through APIs or centralized infrastructure rather than a public blockchain), access control maps to conventional application security: role-based permissions, audit logging of configuration changes, strong authentication for administrative access, and separation of duties between the teams that write the code and the teams that operate it in production.
Requirement Three: Scope Limitation on Data Processing
The third requirement is perhaps the most conceptually challenging. Article 36 requires that smart contracts process only the data necessary for the specific purpose agreed between the parties and must not exceed that scope. In other words, a smart contract that automates a data-sharing arrangement must be constrained to the data flows and processing steps that the parties actually agreed to — it cannot reach further into a data set, share data with additional recipients, or trigger downstream processes that were not part of the original agreement.
This principle of scope limitation reflects both a data minimization ethic — familiar from GDPR — and a consent-based access control logic. The smart contract is not a blank check to process whatever data it can reach. It is a narrowly scoped execution of defined obligations. For engineers, this means that the data inputs available to the contract should be technically limited to what is needed: the contract should not have access credentials or decryption keys for data stores beyond the agreed scope, and its logic should not contain pathways that process ancillary data even if such processing would be incidental.
Enforcing this in practice requires thoughtful system design. If a smart contract sits at the interface between two data systems, its access permissions should be designed by the principle of least privilege. Cryptographic compartmentalization — ensuring the contract can decrypt only the specific data fields it needs — is a stronger technical control than relying on programmatic logic to simply not use data it has access to. The EU’s technical standard development bodies are expected to provide more specific guidance in this area as implementation matures.
Requirement Four: Audit Trail and Transparency
The fourth requirement is that smart contracts must provide an audit trail sufficient to allow parties to verify what the contract executed, when, and with what data. Transparency is not just an abstract principle here — it is a practical guarantee that parties can hold each other accountable for the data-sharing arrangement they agreed to.
For blockchain-based smart contracts, this requirement aligns naturally with the inherent properties of distributed ledgers: every transaction is recorded immutably on-chain, timestamped, and attributable to specific addresses. The challenge is ensuring that the on-chain record is actually interpretable by parties who are not blockchain engineers — that transaction logs are presented in human-readable form, that the mapping between on-chain events and real-world data sharing actions is clearly documented, and that this documentation is accessible to authorized parties including potential regulators.
For off-chain automated systems, the audit trail requirement means that every execution of the data-sharing agreement — every data transfer, every access grant, every termination event — must be logged in a durable, tamper-evident record. Log integrity mechanisms such as cryptographic hash chaining, write-once storage, or third-party log management services can satisfy this requirement technically. What matters is that the record exists, is complete, is not alterable by any single party, and is accessible to those with a legitimate need to review it.
How These Requirements Apply to Blockchain-Based Data-Sharing Platforms
For companies building blockchain-based platforms specifically designed to facilitate data sharing — a category that includes industrial data marketplaces, IoT data brokers, tokenized data access systems, and cross-company analytics platforms — Article 36 creates a direct engineering mandate. The requirements are not just contractual obligations to be addressed in terms of service; they must be implemented in the technical architecture of the platform itself.
Consider a practical example: a manufacturing consortium builds a blockchain platform where each member company can share machine sensor data with other members or approved third parties. The smart contracts on this platform govern which data, from which machines, can be accessed by which parties, under what conditions, and for what duration. Under Article 36, those smart contracts must: (1) have a defined mechanism allowing the data-sharing arrangement to be paused or terminated by authorized parties; (2) be protected from unauthorized modification; (3) process only the sensor data fields agreed in the underlying data-sharing agreement; and (4) maintain a verifiable record of every data access event.
Each of these requirements influences architectural choices. Pausability may require an upgradeable contract proxy pattern or an explicit pause function governed by a multisig wallet representing the consortium’s governing body. Scope limitation may require that individual smart contracts are scoped to specific data categories and cannot be repurposed for different data types without a new deployment. Audit trail requirements may require building a data access logging layer on top of native blockchain event logs to produce human-readable compliance records.
Platform operators should also consider their role as data intermediaries. If a US company operates the platform rather than simply participating in it, they take on more direct responsibility for ensuring the Article 36 requirements are satisfied across the platform’s smart contract infrastructure — not just in their own contracts, but in all contracts deployed through the platform by participating parties.
The Current State of EU Technical Standards
Article 36 explicitly calls for the development of technical standards to support its implementation. The European Committee for Standardization (CEN) and the European Committee for Electrotechnical Standardization (CENELEC) are the bodies most likely to develop these standards, potentially in conjunction with the European Union Agency for Cybersecurity (ENISA) and the European Blockchain Services Infrastructure (EBSI) initiative.
As of the Act’s application dates, detailed technical standards specifically for Data Act smart contracts have not yet been finalized. This is common in EU digital regulation: the law sets the obligations, and the standards bodies develop the technical specifications for how to meet them over a period of years following enactment. The situation creates both uncertainty and flexibility for early movers. Companies that implement the Article 36 requirements in good faith — based on the text of the regulation and reasonable technical interpretations — should be in a defensible position even before formal standards are published.
Notably, the EU has existing work in the distributed ledger and blockchain space through EBSI and through research programs under Horizon Europe. Standards emerging from this work are likely to inform the Article 36 technical standards. US companies with EU data-sharing operations would be well served by monitoring the EU standards development pipeline, participating in public consultations where possible, and engaging with industry groups that are active in this space.
In the interim, well-established industry practices for smart contract security and integrity provide a reasonable proxy for Article 36 compliance. These include formal verification of smart contract logic, third-party security audits, use of audited and battle-tested libraries for access control and governance, and documented upgrade paths subject to multi-party governance. These practices satisfy the spirit of Article 36 even in the absence of formal EU standards.
Practical Guidance for US Companies
US companies deploying smart contract infrastructure in connection with EU data-sharing arrangements face a compliance challenge that is partly technical, partly contractual, and partly organizational. The following guidance addresses each dimension.
Assess Whether Article 36 Applies
The first step is determining whether Article 36 applies to the smart contract infrastructure in question. The trigger is use of a smart contract (or analogous automated mechanism) to execute the terms of a data-sharing agreement within the scope of the EU Data Act. This typically means: the data sharing involves data generated by connected products or related services, at least one party is in the EU, and the smart contract is directly implementing the access, transfer, or sharing of that data. If all three conditions apply, Article 36 is likely in scope.
Build Compliance Into the Architecture
Article 36 compliance cannot be retrofitted easily into deployed smart contracts — especially those on public blockchains where immutability is a design feature. Compliance must be designed in from the start. This means: including pause/terminate functions with defined governance; scoping contract access to only the necessary data; building audit logging into the system architecture; and documenting the access control model clearly enough that a regulator could understand it.
For organizations using third-party smart contract platforms or blockchain-as-a-service providers, the contract review process must include an assessment of whether the underlying platform provides the technical capabilities that Article 36 requires. If the platform does not support kill switches or audit trails natively, the deploying organization must implement these controls in their own smart contract layer.
Address Article 36 in Data-Sharing Agreements
The underlying data-sharing agreement between the parties should explicitly address the smart contract architecture. This includes identifying which parties have authority over the kill switch, defining the conditions under which termination is permitted, specifying the data scope that the smart contract is authorized to process, and agreeing on how audit trail records will be maintained and accessed. These contractual provisions do not replace the technical requirements but they establish the governance framework within which the technical controls operate.
Document and Maintain Compliance Evidence
Because Article 36 requires verifiability, organizations should maintain documentation of their smart contract compliance posture. This includes the smart contract audit reports, architecture documentation showing how each of the four requirements is satisfied, records of any upgrades or governance actions taken, and the audit log archives. This documentation should be maintained for the duration of the data-sharing arrangement and for a reasonable period afterward, consistent with EU record-keeping principles. In the event of a regulatory inquiry, this documentation forms the basis of a compliance defense.
Monitor Standards Development
Given that the formal technical standards are still being developed, US companies should establish a process for monitoring their publication and assessing the implications for existing infrastructure. This means tracking publications from CEN/CENELEC, monitoring guidance from the European Data Innovation Board (EDIB), and reviewing enforcement actions and regulatory guidance from national competent authorities as they emerge. Building this monitoring into your ongoing compliance program — rather than treating it as a one-time assessment — ensures that you can adapt your smart contract architecture as the standards landscape solidifies.
Conclusion
Article 36 of the EU Data Act represents a regulatory first: a formal legal framework specifically addressing smart contracts in a data governance context. Its four requirements — termination mechanisms, access controls, scope limitation, and audit trails — are technically grounded and operationally meaningful. For US companies building or deploying smart contract infrastructure for EU data-sharing purposes, these requirements are not aspirational guidelines but binding obligations that carry real enforcement risk. The companies best positioned to comply are those that treat Article 36 as an engineering requirement from the earliest design stages, integrate compliance into their contract governance frameworks, and remain engaged with the evolving EU technical standards landscape.
