← Blog · Compliance
The FATF Travel Rule: Passing Originator Data Without Leaks

Recommendation 16 — the FATF Travel Rule — requires that identifying data about the originator and beneficiary of a transfer travel alongside the transaction. Written for wire transfers, it was extended to virtual asset service providers (VASPs) in 2019. The mechanics are harder in a decentralized setting: there is no SWIFT network, counterparties may be unknown, and the payload contains exactly the personal data your privacy program works to minimize. This is general information, not legal advice, but the engineering trade-offs are worth mapping.
What Data Must Travel
The baseline dataset for a transfer above the applicable threshold (FATF suggests USD/EUR 1,000, though jurisdictions vary) typically includes:
- Originator: name, account or wallet reference, and either physical address, national identity number, customer ID, or date and place of birth.
- Beneficiary: name and account or wallet reference.
Below the threshold, some regimes accept name and wallet reference only, with verification triggered on suspicion. The rule creates two obligations that pull in opposite directions: transmit enough to satisfy the receiving institution, and avoid broadcasting personal data to a counterparty you have not vetted.
The Counterparty Problem
Before sending anything, the originating VASP has to answer three questions: is the destination a hosted wallet or self-hosted, is the receiving VASP regulated, and can it actually receive the data securely. Sending an identity payload to an unknown endpoint is worse than sending nothing. Practical controls include:
- VASP discovery: resolving a destination address to a registered institution before transmitting, rather than after.
- Counterparty due diligence: checking that the receiver appears in a recognized directory and is not in a sanctioned jurisdiction.
- Self-hosted wallet handling: applying separate rules — often name collection and risk-based verification — since there is no institution on the other side.
Protocols such as IVMS 101 standardize the data format so that a name field means the same thing to both parties. Messaging layers (TRP, OpenVASP-style approaches, and vendor networks) handle the transport. The common thread in defensible designs is that the identity payload is exchanged over an authenticated, encrypted channel that is separate from the on-chain transaction itself.
Minimizing the Privacy Footprint
The Travel Rule multiplies the number of places a customer's identity data lives. Each transfer potentially copies name, address, and identifiers to another firm's systems. Sound engineering treats every outbound payload as a data-sharing event, not a routine message. Techniques that reduce exposure:
- Confirm before disclose: establish that the counterparty is a legitimate, capable VASP before releasing personal fields, ideally through a handshake that proves capability without leaking data.
- Field-level scoping: send only the dataset the receiving jurisdiction requires, not a full profile.
- Configurable retention: define how long inbound Travel Rule data is kept once the transaction clears, and delete on schedule unless a legal hold applies.
- Encryption in transit and at rest, with keys held so that intermediaries cannot read the payload.
The same data-minimization discipline that governs chat-based onboarding applies here: collect the minimum, verify what you must, and control retention deliberately rather than by default.
Operationalizing Without Blocking Settlement
A frequent failure mode is the sunrise problem — one jurisdiction enforces the rule while a counterparty's does not, leaving transfers stuck. Rather than freezing funds indefinitely, mature programs define fallback logic: hold pending manual review, apply enhanced monitoring, or reject with a clear reason code. Match inbound payloads against your own KYC records so a mismatched beneficiary name raises an alert instead of silently settling. Log every send, receive, and decision with enough detail to reconstruct the exchange later.
The Travel Rule is not solved once; VASP directories change, thresholds differ, and self-hosted wallet rules keep tightening. Treat it as a living control — with routing logic, counterparty checks, and retention rules you can adjust as regimes converge — and it stops being a leak waiting to happen.
General information, not legal advice. Talk to your compliance counsel for guidance on your specific obligations.