Table of Contents >> Show >> Hide
- What the ICO is consulting on (and why it matters)
- DLT in plain English: what’s different from a normal database?
- When blockchain data becomes “personal data” under UK rules
- The hardest question: who is the controller in a blockchain?
- Individual rights vs. “immutable”: the part where engineers sigh
- Data protection principles: where blockchain projects can trip
- “Data protection by design” in DLT: start with the uncomfortable question
- What this means for US-based companies (yes, even if your HQ is in California)
- A practical checklist you can actually use
- Where the draft guidance is likely headed
- Conclusion
- Experience Notes: What teams typically run into when privacy meets the ledger (about )
Blockchain people love to say “code is law.” Privacy regulators love to say “the law is… well… the law.”
And then everyone meets in the middleusually in a long video callwhen someone realizes the ledger is immutable
but the right to erase data is very, very real.
That tension is exactly why the UK’s Information Commissioner’s Office (ICO) opened a public consultation on draft
guidance for distributed ledger technologies (DLT), including blockchains. The goal: help organizations figure out
how UK data protection rules apply when data is copied across a network, recorded in blocks, and designed to resist
changes. The consultation may be closed, but the questions it raised are not going anywhere.
In this article, we’ll break down what the draft guidance is trying to do, what it means for teams building with DLT,
and how to avoid turning your “trustless” system into a “please-trust-us-we’re-sorry” apology tour.
(Spoiler: “We only stored a hash” is not a magic spell.)
What the ICO is consulting on (and why it matters)
In late 2025, the ICO consulted on draft guidance focused on DLTstechnologies that store, synchronize, and maintain
records across a networkcovering how to use personal information responsibly in blockchain-style architectures.
The consultation itself was structured as a short survey that asked how the guidance would affect organizations
and what changes or clarifications were needed.
The big reason this matters is simple: DLT is moving beyond cryptocurrency headlines and into everyday business
plumbingdigital identity, credentials, supply chain traceability, loyalty systems, tokenized assets, and
“shared truth” record-keeping between organizations that don’t want a single party holding the pen.
The ICO’s guidance is also presented as practical “must/should/could” advice for developers, privacy teams,
managers, and counselbecause, in the real world, software ships whether or not governance is ready.
DLT in plain English: what’s different from a normal database?
A traditional database is like a library: one place, with rules, and a librarian who can fix typos and remove old records.
A blockchain is more like a group chat where everyone has admin access to “view,” nobody can fully delete the message,
and new messages get copied to everyone’s phone forever.
Permissioned vs. permissionless: the compliance “plot twist”
Not all blockchains are created equal. From a data protection perspective, one of the most important distinctions is:
- Permissioned (private/consortium) networks: Participants are known, governance can be defined, and access can be controlled.
- Permissionless (public) networks: Participants can be unknown, nodes can be anywhere, and replication is the whole pointwhich can complicate accountability and cross-border transfer compliance.
If you’re thinking, “So… permissioned is easier?” Congratulationsyou just discovered why so many enterprise blockchain projects
quietly become “a fancy shared database with extra steps.” Sometimes that’s the correct engineering outcome.
When blockchain data becomes “personal data” under UK rules
Many teams assume they’re safe because they aren’t storing names or emails on-chain. But data protection doesn’t only care about
obvious identifiers. It also cares about information that can identify a person directly or indirectly, including “online identifiers.”
Wallet addresses, transaction IDs, and smart contract addresses can be personal data
The draft guidance highlights that “on-chain” data may include personal information, and that online identifiers in blockchain contexts
can include unique transaction identifiers, wallet addresses, and smart contract addresses. In other words: if an address effectively
singles someone out (especially when combined with off-chain data like KYC records or IP logs), you may be in personal-data territory.
Practical example: a wallet address used by an individual might look anonymous, but if your platform can link it to a verified account
or a login session, it’s suddenly not a mysterious stringit’s a breadcrumb trail.
Does UK data protection law apply if you’re not in the UK?
“We’re not in the UK” is not a force field. The guidance explains that UK GDPR can still apply when a controller or processor is in the UK,
or when an organization offers goods/services to people in the UK or monitors their behavior. For many Web3 and fintech products, “monitoring”
can happen faster than anyone expectsespecially when analytics, fraud detection, and transaction profiling are involved.
The hardest question: who is the controller in a blockchain?
Data protection law expects you to know who decides the “purposes and means” of processing. In centralized systems, that’s usually the company
running the database. In decentralized systems, it can be… awkward.
The guidance emphasizes a factual, role-based assessment: who actually determines why and how personal data is processed? In a consortium chain,
multiple organizations may jointly determine those purposes and means, making them joint controllers. Meanwhile, a service provider running the
infrastructure purely on instructions might be a processor.
A concrete scenario: digital credentials
Consider a university issuing digital diplomas via a blockchain-based credential system. The university decides why the credential exists, what
personal data is included, and how it’s issued. That’s classic controller behavior. If a third-party platform operates the chain or writes blocks
on the university’s instructions, that platform may be acting as a processor for those activities (depending on the exact setup and governance).
The key takeaway: “decentralized tech” doesn’t automatically decentralize legal responsibility. Regulators will still ask who’s accountable
and they will not accept “the vibes” as documentation.
Individual rights vs. “immutable”: the part where engineers sigh
People have rights to be informed, access their data, correct inaccuracies, andunder certain conditionsrequest erasure. Blockchain’s design
can make some of these hard if personal data is written directly to an append-only ledger.
Design tip: keep personal data off-chain (and use pointers carefully)
One of the most practical ideas in the guidance is to avoid putting personal data on-chain when you don’t need to. If personal data is stored off-chain,
you can often respond to rectification or erasure requests by updating or deleting the off-chain recordwithout changing the blockchain itself.
But the “pointer” or reference on-chain must be designed so it can’t be easily linked back to an individual.
Think of it like labeling a storage box. “Box 12” is fine. “Box 12: Jenna’s medical records” is… not fine.
Data protection principles: where blockchain projects can trip
Even if you can identify controllers and support individual rights, you still have to comply with core principles. In blockchain deployments, the biggest
friction points tend to be:
- Data minimization: Don’t store more personal data than necessary, especially not permanently and publicly.
- Storage limitation: “Forever” is a long retention period. If you can’t justify it, redesign it.
- Accuracy: If something is wrong on-chain, how will you correct the practical effect of that record?
- Integrity and confidentiality: Public readability can clash with confidentiality obligations unless you use strong cryptography and careful architecture.
- Accountability: You must be able to demonstrate compliancegovernance must exist outside the smart contract.
There’s also the international angle. Public/permissionless networks can replicate data across nodes in unknown locations, which can make it difficult
to verify where personal data is going and what transfer rules apply. Permissioned networks can still involve cross-border nodes, but at least you can
identify participants, vet them, and put agreements and transfer mechanisms in place.
“Data protection by design” in DLT: start with the uncomfortable question
The guidance encourages a very unglamorous first step: ask whether you need a blockchain at all. If a traditional database or well-governed shared service
can achieve the goal with fewer privacy risks, choosing the simpler tool may be the most privacy-preserving decision you make all year.
If you do need blockchain, build like a privacy adult
If blockchain is genuinely the right tool, privacy-by-design becomes a set of engineering and governance choices, such as:
- Pick the right network model: permissioned vs. permissionless based on risk and compliance needs.
- Separate identity from transactions: avoid linking on-chain identifiers to real-world identities unless necessary.
- Use off-chain storage for personal data: store sensitive attributes off-chain; keep on-chain records minimal.
- Encrypt and compartmentalize: encryption helps, but remember: encrypted personal data is still personal data if you (or someone) can decrypt it.
- Document roles and responsibilities: controller/processor mappings, joint controller arrangements, and decision rights.
- Run a DPIA early: don’t wait until the sprint demo to discover you’ve built a permanent privacy problem.
- Plan for rights requests: access, correction, and deletion workflows must exist in the operating modelnot just in the README.
What this means for US-based companies (yes, even if your HQ is in California)
Many US companies build global products by defaultespecially in fintech, crypto, gaming, and digital identity. If UK users can access your service, if your
platform monitors UK behavior, or if you have UK partners in a consortium, UK GDPR issues can land on your desk quickly.
The draft guidance is a reminder that “global by design” also means “global compliance by design.” That can sound expensive, but it can also be a competitive advantage.
A well-architected DLT system that minimizes personal data, uses modern privacy-enhancing techniques, and has clear governance is easier to sell to enterprise customers,
easier to audit, and less likely to become tomorrow’s cautionary tale.
A practical checklist you can actually use
If you’re building or joining a blockchain/DLT ecosystem, here’s a no-drama checklist to reduce risk:
- Define the purpose: what problem are you solving, and why does it need a ledger?
- Decide what data is truly necessary: list every data element and justify it.
- Keep personal data off-chain where possible: design pointers so they don’t identify individuals.
- Classify the network: permissioned or permissionless; document the rationale.
- Map roles: controller, joint controller, processorbased on real decision-making power.
- Write governance rules: onboarding/offboarding participants, change control, incident response.
- Assess international transfers: where are nodes and participants located, and what mechanisms apply?
- Design rights workflows: access and correction processes; deletion strategies (often off-chain); transparency notices.
- Secure the system end-to-end: keys, wallets, APIs, off-chain storage, identity layers, logging, and monitoring.
- Run a DPIA and update it: especially when introducing new data types or new participants.
- Test re-identification risk: assume attackers can combine on-chain data with off-chain sources.
- Document everything: accountability is a deliverable, not a feeling.
Where the draft guidance is likely headed
Consultations are often less about changing the core message and more about making it usable: clearer examples, more practical architecture patterns,
and sharper guidance on roles and accountability in different DLT models. The through-line is consistent: if your design makes rights impossible to honor,
regulators will expect you to redesignnot to shrug and say “but blockchain.”
Conclusion
The ICO’s draft blockchain and DLT data protection guidance is a reality check in the best sense of the phrase: it takes a powerful technology and asks
the grown-up questions. Who is responsible? What counts as personal data? How do rights work? What should you build off-chain? Andmost importantly
do you need a blockchain at all?
If you’re building with DLT, the safest path is rarely “ignore privacy and hope cryptography saves you.” The safer path is deliberate architecture:
minimize personal data, design for rights, define accountability, and choose the right network model. Then you can ship something that’s both innovative
and defensiblewithout turning every privacy request into a philosophical debate about immutability.
Note: This article is for informational purposes only and does not constitute legal advice.
Experience Notes: What teams typically run into when privacy meets the ledger (about )
If you’ve ever sat in a product meeting where someone says, “Don’t worry, it’s decentralized,” you already know the vibe.
The conversation usually starts with excitement: a shared ledger will reduce reconciliation, remove intermediaries, and create a single source of truth.
Then the privacy lead asks a very small question that somehow makes the room very quiet: “Okaywhat personal data goes on-chain?”
In many teams, the first “experience” is discovering that personal data sneaks in through side doors. The engineers swear no names will be recorded.
But the transaction layer stores wallet addresses, smart contract addresses, timestamps, and unique identifiers. Marketing wants analytics. Fraud wants IP logs.
Support wants to link a user account to a transaction so they can help with disputes. Suddenly the project has built a bridge between a real person and an
on-chain identifierexactly the kind of linkage regulators care about.
The next common experience is the “it’s just a hash” phase. Someone proposes hashing email addresses or user IDs and storing those hashes on-chain.
It sounds safe, because hashes look random. In practice, teams learn (sometimes the hard way) that hashing isn’t a deletion strategy and isn’t always anonymization.
If the input space is guessable, if the same hash is reused, or if other metadata makes re-identification easier, the “random-looking” string can still be personal data.
That realization tends to trigger the architectural pivot that privacy folks secretly hoped for all along: keep personal data off-chain and store only
minimal references on-chaindesigned so they can’t be easily tied back to a person.
Then comes the rights-request rehearsal. A thoughtful team will run a tabletop exercise: “Imagine a UK user asks us to correct their information”
or “Imagine they ask us to erase it.” If your design requires rewriting a blockchain record, you’ll watch faces fall in real time.
The teams that handle this best build a layered system: the blockchain stores proof that a record existed (or that an event occurred),
while the personal data lives in an off-chain system with normal access controls, retention rules, and deletion capability.
The blockchain becomes a verification layer, not a forever-home for personal details.
Another recurring experience is governance reality. Early prototypes gloss over who makes decisions in a consortium chain: Who approves new participants?
Who sets validation rules? Who can deploy contract updates? Who responds to incidents? When the privacy team maps controller and processor roles,
they often find “joint controller” responsibilities hiding under informal collaboration. The best projects treat governance as part of the product:
written roles, decision logs, change control, and contracts that match how the system actually runs.
Finally, there’s the moment of unexpected maturity: someone asks, “Do we need a blockchain?” It can feel like betrayaluntil you compare options.
A traditional database with strong audit trails might meet the business goal with fewer privacy headaches. Or a permissioned ledger might work where a public chain won’t.
The teams that succeed aren’t the ones who pick blockchain because it’s cool. They’re the ones who pick an architecture because it’s necessary
and then design it so privacy isn’t an afterthought glued on with duct tape and a sprint deadline.