Transfer Settlement Network
Research edition · TrustLink Labs
TrustLink Labs · settlement infrastructure

The settlement layer for stablecoin payments.

TrustLink Labs is developing TSN, a Transfer Settlement Network designed around the Decentralized Settlement Protocol (DESP) category. TSN coordinates payment intent, authorization, routing, liquidity, privacy-aware settlement, and execution across the participants responsible for completing a payment obligation.

Architecture DESP-oriented

Decentralized settlement infrastructure, distinct from DeFi applications.

Implementation TSN

TrustLink Labs’ Transfer Settlement Network for intent-based coordination.

Source domain Solana

Source-chain accounting, commitments, policy, and settlement liability.

EVM expansion Creditcoin

Leader settlement boundary for authenticated messages to supported EVM routes.

Current build

Research, implementation, and evidence.

TSN is being validated in stages. Architecture and contracts are documented separately from confirmed Devnet/Testnet evidence, and deployment status is never represented by a placeholder transaction.

Research journal

Latest posts

Browse all updates →

Loading latest posts…

What Is a Privacy-First Decentralized Settlement Network?

Diagram showing how blockchain settlement, stablecoins, identity, authorization, private routing, confidential state, and settlement coordination form a privacy-first decentralized settlement network.

Stablecoins made digital value easy to move. Public blockchains made ownership changes verifiable. The next infrastructure question is how to make global payments private, identity-aware, and legally settled without giving up cryptographic settlement.

A privacy-first decentralized settlement network is payment infrastructure designed to coordinate identity, authorization, private routing, confidential state, and verifiable settlement — so that digital value can be moved and finally settled like money, without exposing more financial information than each participant, its counterparties, and its regulators actually need.

This is an emerging infrastructure category, not a synonym for a privacy coin, a private blockchain, a confidential wallet, or a zero-knowledge Layer 2. Those systems may provide useful capabilities. A settlement network describes the broader coordination required to turn digital value movement into a complete payment workflow.

Key ideas

  • Blockchains verify ownership changes; they do not, by themselves, make payments private, identity-aware, or legally settled.
  • A settlement network is the coordination layer between programmable value (stablecoins, tokenized deposits) and a usable payment workflow.
  • The institutional shift is real and dated: BlackRock BUIDL (2024), JPMorgan Kinexys (2024), the SIFMA Regulated Settlement Network (2024), BIS Project Agorá (2024–), and the U.S. GENIUS Act (signed 2025).
  • “Privacy-first” means data minimization plus scoped disclosure — not anonymity, and not hiding everything from everyone.
  • TSN is a research design from TrustLink Labs. Every cryptographic claim should trace to a named, tested mechanism — not an assertion.

The settlement problem the industry is trying to solve

For decades, banks moved value by moving messages and settling positions separately. A payment instruction traveled through messaging rails such as SWIFT or an automated clearing house, while the actual transfer of value happened later, through netting, a real-time gross settlement (RTGS) system, or a delivery-versus-payment (DvP) arrangement. Before that, settlement was even more literal: armored cars physically moving cash and securities.

Tokenization changes the proposition. When a tokenized asset is both the message and the value — a dollar-denominated token that is itself tradable, transferable, and redeemable — the distinction between “sending an instruction” and “moving value” collapses. A receiving institution no longer accepts a promise to settle later; it accepts a value it can hold, sell, or convert as it chooses.

This is no longer hypothetical. BlackRock launched BUIDL, a tokenized institutional money-market fund, in March 2024 on Ethereum, and it surpassed $1 billion in assets under management by March 2025. JPMorgan rebranded its Onyx unit as Kinexys in November 2024 and reported more than $3 trillion in cumulative transaction volume on its JPM Coin rails. A SIFMA-coordinated Regulated Settlement Network proof of concept, with Citi, JPMorgan, Mastercard, Visa, and DTCC, demonstrated in December 2024 that a shared ledger could settle tokenized commercial bank money, wholesale central bank money, and U.S. Treasury securities together. The Bank for International Settlements (BIS) Project Agorá is testing a “unified ledger” — tokenized central bank reserves and commercial bank deposits on one programmable, multi-currency platform — with seven central banks and more than forty private institutions.

The legal scaffolding is arriving too. The GENIUS Act (Guiding and Establishing National Innovation for U.S. Stablecoins Act) was signed into law on July 18, 2025 as Public Law 119-27, creating the first U.S. federal regime for payment stablecoins.

What a decentralized settlement network does

A blockchain settlement layer records and verifies state transitions. A decentralized settlement network coordinates the work around those transitions: accepting a payment intent, checking authorization, selecting an eligible route, advancing settlement, recording evidence, and handling retries or recovery.

The network may use several participants with separated responsibilities. A user device can authorize an exact intent. Coordination nodes can verify and queue work. Independent execution operators can submit transactions. Smart contracts can enforce the final state transition. Separating these duties reduces the need for one intermediary to control identity, funds, keys, and execution at the same time.

Blockchain settlement vs. payment settlement finality

One of the most important distinctions in this category is the difference between two meanings of “settlement.”

Blockchain finality is a technical, consensus property. In a proof-of-work chain it is probabilistic — a block is “final enough” once enough work has accumulated on top of it; in BFT or zero-knowledge-verified designs it can be deterministic — a state is accepted and cannot be reversed by protocol rules. In all cases it describes what the ledger guarantees.

Settlement finality in traditional finance is a legal construct. The BIS Committee on Payments and Market Infrastructures (CPMI) defines it as the moment a transfer becomes irrevocable and unconditional — unable to be unwound even in insolvency proceedings. Final settlement in central bank money is treated as the strongest form of settlement because claims on the central bank carry no commercial-bank credit or liquidity risk.

The gap matters. A tokenized deposit can be “settled” on-chain in the consensus sense while its legal finality still depends on the underlying framework and the settlement asset used. This is precisely why the institutional projects pair tokenized commercial bank deposits with wholesale central bank money, and why the Regulated Settlement Network tested settlement across asset classes rather than treating any single token as a complete answer.

Why public blockchain settlement is not private by default

Public ledgers are powerful because anyone can inspect shared state and verify transactions. That same visibility can expose wallet balances, counterparties, payment timing, supplier relationships, payroll patterns, and treasury activity.

Wallet pseudonyms do not provide financial privacy. An address is pseudonymous, not anonymous. Analysts cluster addresses using heuristics such as common-input-ownership (multiple inputs to one transaction are presumed to share an owner) and change-address detection (identifying which output returns change to the sender). Combined with graph analysis and off-chain data such as exchange know-your-customer records, these techniques frequently re-identify the entities behind pseudonyms. Confidential settlement therefore has to protect relationships and state, not merely replace one name with another.

The privacy mechanics toolkit

The privacy techniques available today are well documented. Each one hides something specific — and, just as importantly, fails to hide something else:

  • Zero-knowledge succinct arguments (zk-SNARKs). A prover proves a statement about hidden data without revealing it, producing a short proof verified by a fixed-size check. Most pairing-based SNARKs require a trusted setup (a one-time parameter generation whose randomness must be destroyed).
  • Zero-knowledge scalable transparent arguments (zk-STARKs). Similar in spirit but with no trusted setup and stronger scalability; they trade proof size for transparency.
  • Confidential transactions. Amounts are hidden by replacing them with Pedersen commitments (a binding, hiding commitment to a value) plus range proofs (such as Bulletproofs) that prove an amount is non-negative without revealing it.
  • Stealth addresses. A one-time address generated per payment, so the public ledger does not reveal the recipient’s real address.
  • Ring signatures. A signer proves membership among a set of possible signers, hiding which one authorized — the technique behind Monero’s sender privacy.

A responsible technical description names the implemented verification path and states which values are public, committed, encrypted, locally held, or selectively disclosed. A commitment is not automatically a proof: an encrypted or committed value binds data to an operation, but does not by itself prove that a balance is conserved or that a route is authorized.

Privacy, compliance, and the Tornado Cash lesson

Privacy that hides everything from everyone has collided with regulation. The U.S. Treasury sanctioned the Tornado Cash mixer in 2022; a U.S. appeals court held in November 2024 that the sanctions overstepped OFAC’s authority, and Treasury formally delisted Tornado Cash in March 2025. The episode clarified a durable design principle: privacy from bystanders is valuable; privacy from authorized parties is a liability.

The forward-looking pattern is therefore privacy with auditability. Techniques such as zero-knowledge identity proofs (sometimes called “zkKYC”), selective disclosure, and data minimization let a system reveal a specific fact to an authorized party — “this user passed compliance,” “this transfer is within policy” — without exposing the full transaction graph. The BIS Project Tourbillon explores this balance for central bank digital currencies: payer and recipient privacy combined with transparency to the central bank and auditors.

The architecture of the category

A practical model can be understood as six connected layers:

  1. Blockchain settlement: shared state, consensus, smart-contract execution, and technical finality.
  2. Stablecoin or tokenized money: the digital value being transferred.
  3. Confidential state: protected balances, commitments, notes, and transaction relationships.
  4. Identity: human- or institution-readable payment identifiers bound to controlled destinations.
  5. Authorization: payment intents, policies, approvals, expiry, replay protection, and scoped permissions.
  6. Settlement coordination: routing, liquidity, execution workers, receipts, and recovery.

The layers are complementary. Stablecoins provide value, but not necessarily identity. Privacy tools protect data, but not necessarily payment intent. Blockchain provides finality, but not necessarily a complete receipt or business workflow. The settlement network is the coordination layer that makes these capabilities work together.

Identity and authorization

Most people want to pay a person, business, or institution rather than copy a long wallet address. An identity layer can provide a human-facing payment reference while keeping the underlying cryptographic route controlled by the protocol and the authorized owner.

Identity alone is not enough. A payment should bind the recipient, asset, amount, source, fee policy, expiry, network, and authorization scope into one exact intent. That lets the system distinguish a requested payment from a technically valid but incorrectly redirected transaction.

Private routing and confidential state

Private routing separates the identity a user sees from the public destination or state used during settlement. Confidential state protects balances, ownership transitions, and relationships from observers who are not authorized to inspect them.

These mechanisms must not be described as stronger than the evidence supports. A research design should identify which values are public, committed, encrypted, locally held, or selectively disclosed — and name the proof system, verifier, and state model that make each claim checkable.

Cryptographic proofs and verifiable settlement

Cryptography can prove control, authorization, integrity, and state transitions. Depending on the design, proofs may show that a balance is conserved, a nullifier has not been reused, a route is authorized, or a settlement output follows the accepted intent.

A credible claim does not assert “SNARK” or “STARK” support in the abstract. It names the implemented verification path: the proof system, the verifier, the state model, and the tests that are operating together.

How TSN approaches the architecture

Transfer Settlement Network (TSN) is an emerging privacy-first decentralized settlement network designed as identity-based stablecoin payment infrastructure. This positioning describes the protocol architecture and category ambition of TrustLink Labs — a research design, not an industry-standard capability.

In the TrustLink Labs research model, TIN supplies a human-facing payment identity, GPRU represents protected routing coordination, TCap defines policy-bound confidential asset state, the TSN Node coordinates verified work, Crankers submit authorized transactions, and the TSN Program enforces settlement rules on Solana.

The architecture separates responsibilities deliberately. The authorized device resolves a recipient and constructs an exact payment intent. Coordination services verify bounded fields and prevent replay. Execution operators receive only the capability required for their work. The on-chain program enforces the state transition and produces settlement evidence.

Individual components should still be evaluated against their implementation and test evidence. TSN should not be presented as universally adopted, as regulatory infrastructure, or as a complete replacement for existing payment rails without independent evidence supporting those claims.

Use cases and tradeoffs

Identity-based private settlement could support remittances, merchant payments, payroll, treasury operations, and recurring payment workflows. Each use case still requires appropriate liquidity, compliance policy, availability, recovery, and user-protection controls.

Decentralization also has tradeoffs. More independent operators can reduce dependence on one service, but they introduce coordination, incentive, monitoring, and liveness requirements. Privacy can reduce public observability, so systems need carefully scoped receipts and disclosure paths. Stronger proofs can improve assurance while increasing cost or latency.

Conclusion

A privacy-first decentralized settlement network is the infrastructure between programmable value and usable global payments. It combines stablecoin assets and blockchain finality with identity, authorization, private routing, confidential state, execution coordination, and evidence.

Transfer Settlement Network (TSN) is one research approach to this category: a privacy-first decentralized settlement network designed for identity-based stablecoin payments. The category will become credible through precise definitions, independently verifiable implementations, transparent limitations, and research behind every published claim.

Research and further reading

Institutional tokenization and settlement

Settlement and finality

Privacy and cryptography

TSN protocol

Blockchain Payment Infrastructure: Why Stablecoins Need Identity, Privacy and Settlement Layers

Blockchain payment infrastructure stack showing stablecoins, identity, privacy, authorization, and settlement layers

Blockchain created programmable money. Stablecoins created programmable value. The next evolution is programmable payment infrastructure — the missing layers that turn stablecoins into a complete global payment system usable by billions of people.


The Industry Mistake: Confusing Settlement Assets With Payment Systems

The financial industry is correctly recognizing stablecoins as a powerful settlement asset. Visa is settling on-chain with USDC. JPMorgan built Kinexys. Stripe accepts stablecoin payments. Circle is expanding USDC across institutional networks. The Bank for International Settlements is running Project mBridge across multiple central banks simultaneously.

All of this is real and significant progress. But there is a category error running through most of the conversation about what it means.

A settlement asset is not the same as a payment system.

A payment system must answer human questions that a settlement asset cannot answer on its own:

  • Who am I paying — and how do I know the destination is correct?
  • Why am I paying — and is this payment authorized under the relevant policies?
  • Can the recipient safely receive it without exposing their financial identity?
  • Can the transaction remain private from parties not authorized to see it?
  • Can billions of people use this without understanding blockchain infrastructure?

Stablecoins answer one question: what digital asset represents the value being transferred? They answer it exceptionally well. But they do not answer how global payments should operate at human scale.

The industry is currently proving the settlement layer. The next competition — the more important and less answered competition — is who builds the payment infrastructure layer above settlement.

That is where the next generation of blockchain financial infrastructure will be built. And that is the conversation this article is about.


The Conversation Stopping Too Early

The conversation most people are having right now:

"Stablecoins are faster settlement rails."

That is true. But it stops one layer too early.

The conversation the industry needs to have:

"Settlement is one component of a complete payment system. Blockchain now allows us to rebuild the entire payment infrastructure stack — stablecoins need an operating system for payments."

Traditional finance solved this problem by assembling payment infrastructure over decades: bank identity systems, authorization networks, clearing infrastructure, settlement rails, privacy regulations, and consumer-facing applications. The result is a complete — if slow and expensive — payment system.

Blockchain gave us a better settlement foundation. Stablecoins gave us programmable money. But the infrastructure layers above settlement still need to be built for blockchain payments to work at global scale for everyone — not only developers and crypto-native users who understand wallet addresses.


The Blockchain Payment Infrastructure Stack

A complete blockchain payment infrastructure requires six distinct layers, each building on the one beneath it. The stack reads from blockchain foundation at the bottom to human payment experience at the top.

Layer 6 — Human Payment Experience
Layer 5 — Identity Infrastructure
Layer 4 — Intent and Authorization Infrastructure
Layer 3 — Privacy and Confidential State
Layer 2 — Stablecoin and Tokenized Money
Layer 1 — Blockchain Settlement

This hierarchy matters. It mirrors the actual evolution of financial infrastructure — from the settlement foundation upward through the layers that make settlement usable by real people at global scale.

Layer 1 — Blockchain Settlement: The Foundation

Blockchain introduced something traditional payment systems never had: a shared state where authorized ownership changes can be verified directly by the network.

Traditional finance relies on multiple institutions to reconcile ownership records after a transfer request. Bank A updates its database. Bank B updates its database. Clearinghouses reconcile the differences. Settlement happens later — T+1 to T+2 days — after the administrative reconciliation is complete. Each step introduces delay, cost, and a point where error or fraud can occur.

Instead of relying on multiple institutions to reconcile ownership records after a transfer request, blockchain networks maintain a shared state where authorized ownership changes are verified directly by the network — cryptographically, in real time, without requiring a trusted intermediary to confirm the result.

Traditional settlement model:

Bank A database → Correspondent banks → Bank B database → Reconciliation → Settlement (T+1 to T+2 days)

Blockchain settlement model:

Authorized ownership change → Network verification → Shared state update → Cryptographic finality (seconds)

Key properties the blockchain layer provides:

  • Immutable shared ledger — once recorded, no entity can alter or delete what happened
  • Cryptographic finality — ownership changes are mathematically proven, not administratively asserted by a trusted party
  • Programmable settlement rules — smart contracts enforce conditions automatically without human intermediaries
  • 24/7 global availability — no banking hours, no weekends, no public holidays
  • Decentralized consensus — no single point of failure or control

External reference: Solana — How transactions and settlement work on high-performance blockchain networks

External reference: Ethereum — Accounts and ownership on blockchain networks

Layer 2 — Stablecoin and Tokenized Money: Programmable Value

Blockchain provided the settlement foundation. Stablecoins provided the money.

A stablecoin is not only a representation of value. It is money that exists as software — money that can move globally, interact with smart contracts, settle instantly, and integrate directly with applications without conversion through traditional banking infrastructure at every step. Unlike volatile cryptocurrencies, stablecoins maintain stable value through reserve mechanisms backed by fiat assets, government bonds, or onchain collateral — making them suitable for commercial and institutional use where price volatility cannot be absorbed into the transaction.

What stablecoins enable that traditional money cannot:

  • Programmable payment conditions — funds release automatically when a smart contract confirms a condition is met
  • Real-time global transfers without correspondent bank routing delays
  • Instant settlement finality instead of multi-day clearing cycles
  • Integration with decentralized applications and financial protocols
  • 24/7 availability with no banking hour restrictions anywhere in the world

The same evolution is extending to tokenized real-world assets — tokenized government bonds, tokenized funds, tokenized deposits — all of which can be transferred with the same programmability and settlement speed as stablecoins.

But stablecoins and tokenized assets alone do not answer the questions a complete payment system must answer. They provide the value layer. The infrastructure layers above them are what make that value usable as a global payment system.

External reference: Circle — USDC stablecoin infrastructure for global payments

External reference: Chainlink — Stablecoin Settlement: mechanics, types, and real-world examples

Internal reference: What Is a Stablecoin Settlement Network? — TSN Protocol Research

Layer 3 — Privacy and Confidential State: Settlement Without Exposure

Public blockchains have a fundamental tension at their core. The same transparency that makes them trustworthy — every transaction visible, every balance checkable, every movement traceable in real time — makes them incompatible with institutional financial privacy requirements and unacceptable for the financial privacy expectations most individuals hold.

A public wallet address exposes transaction history, financial relationships, counterparty identities, balance levels, and payment patterns to anyone who queries the blockchain. For individual users this is a loss of financial privacy that has no equivalent in traditional banking. For institutions it is a compliance and competitive risk — exposing counterparty information, trade sizes, and treasury positions publicly — that makes unrestricted public blockchain settlement operationally unacceptable for sensitive financial activity.

The privacy layer must solve a technically demanding problem: allow settlement to be verified and final on the blockchain while keeping the sensitive details of that settlement — who paid, how much, to whom, under what relationship — confidential from parties who are not authorized to see them.

What a privacy layer for blockchain payments must provide:

  • Confidential balances — account balances not publicly visible on the open ledger
  • Private transfers — transaction amounts and counterparty identities shielded from unauthorized parties
  • Protected transaction relationships — the financial graph of who pays whom kept private
  • Selective disclosure — the ability to reveal specific transaction details to authorized parties such as regulators or auditors when legally required
  • Onchain verifiability — privacy-preserving settlement that remains cryptographically provable without full public disclosure

Internal reference: How TSN Approaches Privacy on Solana

Layer 4 — Intent and Authorization: From Instructions to Outcomes

This is the layer where blockchain payment infrastructure is currently furthest behind — and where the market is beginning to move fastest.

Traditional blockchain payment model:

Wallet → Private key signature → Transaction instructions → Settlement

The problem with this model is that it requires users to translate their desired outcome — pay this supplier, settle this invoice — into precise technical instructions with no margin for error. Any mistake in that translation is irreversible. Any malicious substitution in the chain — replacing a correct address with an attacker's address — results in permanent loss with no recourse.

Intent-based payment infrastructure inverts this model:

User → Desired outcome → Routing and solver infrastructure → Settlement execution

The user expresses what they want to happen. The infrastructure translates intent into correct execution — efficiently, privately, and in compliance with all relevant policies. The user does not need to understand the technical execution. They need to trust that their intent will be honored.

The authorization dimension of this layer answers questions that a cryptographic signature alone cannot:

  • Is this payment authorized under the organizational policy governing this account?
  • Has the correct approval hierarchy confirmed this transaction?
  • Are all compliance rules satisfied before settlement executes?
  • Is the destination identity verified as the intended recipient?
  • Does this payment conform to applicable jurisdictional regulatory requirements?

Without a robust intent and authorization layer, blockchain payments inherit the same risks that exist in any system where human intent and technical execution are not fully aligned. A transaction can succeed technically while completely failing the human intent behind it.

Layer 5 — Identity Infrastructure: Human Payment Abstraction

The wallet address model was designed for cryptographic ownership management, not human financial identity. A wallet address is simultaneously your identity, your payment destination, your account number, and your fully public transaction history — collapsed into a 44-character cryptographic string that most people cannot read, remember, or verify correctly at a glance.

Global payments do not work this way. People do not think "send funds to 0x321c...689A." They think "pay this supplier" or "send money to this business." The abstraction layer between human payment intent and technical wallet execution is what makes payments usable at mass scale.

The internet solved the equivalent problem through the Domain Name System — a layer that maps human-readable names to technical IP addresses automatically. Nobody types IP addresses. Payments need equivalent infrastructure: a system that maps human-readable payment identities to correct cryptographic destinations behind the scenes, without requiring users to understand or interact with the underlying wallet complexity.

What an identity layer for blockchain payments must provide:

  • Human-readable payment identities that map to wallet destinations without exposing raw addresses
  • Verified identity binding connecting payment identities to real-world entities for institutional compliance
  • KYC and AML compatibility enabling institutions to meet regulatory requirements without abandoning blockchain rails
  • Error prevention through identity-based routing that eliminates irreversible misdirected payment risk
  • Portability so a payment identity works consistently across applications and blockchain networks

Internal reference: Identity and TIN — Transfer Identity Number explained

Layer 6 — Human Payment Experience: Making Complexity Invisible

The history of technology adoption is a history of complexity becoming invisible. The internet did not become global infrastructure because billions of people learned TCP/IP routing, DNS resolution, and packet switching. It became global because browsers, search engines, and applications made the complexity disappear entirely from the user experience.

Payments will follow the same path. The blockchain infrastructure underneath can remain technically sophisticated. The experience of using it cannot. Today, blockchain payments require users to understand wallet addresses, private key management, network selection, gas fees, and transaction confirmation timing. This is appropriate for developers. It is not appropriate for the billions of people who currently use mobile payment applications without thinking about the infrastructure underneath their transactions.

The user experience layer must translate the full complexity of the six-layer blockchain payment infrastructure stack into interactions that feel as simple and trustworthy as sending a text message — regardless of what is happening underneath.


Why Wallet Addresses Are Not Enough

Wallets were designed for crypto-native users managing digital assets directly on blockchain networks. They are powerful tools for that specific use case. But global payments require a different level of abstraction.

Expecting every future payment user to manage wallet addresses and private keys is the equivalent of expecting every internet user to type IP addresses instead of domain names. It is technically possible. It is not how mass adoption works. The search for a human-readable blockchain payment identity system is not a niche technical problem. It is the central adoption challenge for the entire industry — and it requires an identity infrastructure solution, not a user education solution.

External reference: BIS — Regulatory challenges in digital asset payment systems


The TSN Model: Identity-First Blockchain Payment Infrastructure

Transfer Settlement Network (TSN) is designed around the thesis that blockchain payments need more than asset transfer infrastructure. A complete payment system requires identity, intent, authorization, privacy, and settlement coordination working together as a unified protocol.

The TSN payment flow from human intent to final blockchain settlement:

Human intent → TIN identity → Authorization rules → GPRU routing identity → TCap confidential settlement state → Final settlement finality on Solana

Most industry infrastructure stops at:

Stablecoin → Blockchain → Settlement

TSN introduces the missing middle:

Human identity → Payment intent → Authorization → Private routing identity → Confidential balance state → Settlement finality

Transfer Identity Number (TIN) — The Identity Layer

TIN is the identity infrastructure of TSN. Instead of interacting with raw wallet addresses, participants use human-readable Transfer Identity Numbers as their payment identities. TIN maps human-oriented payment identity to the correct cryptographic destination without exposing wallet addresses in the payment flow. A TIN can be bound to a verified real-world entity for KYC and AML compliance purposes — making identity-based blockchain payments compatible with institutional regulatory requirements at scale.

GPRU — Guard Privacy Routing Unit

A GPRU is a temporary guarded settlement routing identity used by TSN to separate payment identity, transaction routing, and public blockchain visibility. Unlike a traditional receiving wallet, a GPRU does not represent a user's public account. It acts as an authorization-controlled routing layer connected to confidential settlement state managed by TCap.

This architectural distinction is important. Traditional blockchain payment models create receiving wallets for every participant — each wallet holding funds, exposing a public address, and accumulating a public transaction history visible to anyone on the network. TSN's GPRU model separates routing from custody entirely. Blockchain payments do not need millions of private receiving wallets. They need secure settlement routing identities capable of directing ownership updates while keeping balance state confidential.

TCap — Transfer Capital Layer

TCap is the TSN settlement state engine responsible for confidential balance accounting, asset representation, authorization validation, and settlement transitions. Rather than recording balances and ownership in publicly visible wallet states on the blockchain, TCap maintains a confidential settlement accounting layer where balance ownership is updated privately while remaining cryptographically verifiable.

What the blockchain network observes:

TCap settlement event → final settlement output

What observers outside the authorized settlement relationship do not see:

TIN owner identity + private balance history + internal settlement relationships + counterparty information

That is the privacy architecture. Settlement can be proven. The details of who, how much, and to whom remain confidential to unauthorized parties.

Intent-Based Settlement Coordination

TSN introduces intent-based settlement coordination where participants express desired payment outcomes and the protocol infrastructure handles the technical execution. Settlement operators called crankers process settlement queues and coordinate the final execution of ownership updates across the network — translating human payment intent into cryptographically correct settlement results.

Controlled Settlement Flow

Rather than moving large institutional values in single exposed blockchain transactions, TSN routes value through controlled settlement queues of verified settlement units. A large institutional settlement becomes a sequence of verified units processed in order — reducing transaction exposure, improving liquidity management, and enabling settlement operators to participate in processing at institutional scale.

Non-Custodial Architecture

TSN coordinates settlement without ever holding user funds. Users maintain full control of their assets throughout the process. The security model is: user authorization plus cryptographic verification equals completed transfer. The network coordinates without becoming the custodian — eliminating custodial risk at the protocol level.

TSN is built on Solana — chosen for sub-second transaction finality, high throughput capacity, and low network fees that make the controlled settlement queue model operationally viable at the scale institutional payments require.

External reference: Solana — high-performance blockchain for institutional-scale settlement

Internal reference: TSN Protocol Flow — how a transfer executes end to end

Internal reference: About the Transfer Settlement Network — TSN Protocol

Internal reference: TrustLink Pay — consumer application built on TSN infrastructure


What the Stack Looks Like End to End

Putting all six layers together, a complete blockchain payment infrastructure from foundation to human experience:

Layer 6 — Human Payment Experience
Apps, wallets, and payment interfaces that make all complexity invisible. Goal: interactions as simple as sending a text message regardless of what executes underneath.

Layer 5 — Identity Infrastructure
Human-readable payment identities, verified binding to real-world entities, KYC and AML compatibility. Goal: payments addressed to identities, not cryptographic strings.

Layer 4 — Intent and Authorization
Desired outcome expression, routing infrastructure, permission policies, multi-signature approval, compliance rule enforcement before settlement executes. Goal: users express what they want to happen — the infrastructure handles how.

Layer 3 — Privacy and Confidential State
Confidential balances, private transfers, protected transaction relationships, selective disclosure for authorized parties. Goal: financial privacy without sacrificing onchain verifiability.

Layer 2 — Stablecoin and Tokenized Money
Stable digital value — USDC, USDT, USDG, PYUSD — that moves globally, interacts with smart contracts, and settles instantly without volatility risk. Goal: programmable money.

Layer 1 — Blockchain Settlement
Consensus mechanism, smart contracts, cryptographic finality, immutable shared state. Goal: authorized ownership changes verified directly by the network without trusted intermediaries.

Each layer depends on the one beneath it. Stablecoins without identity produce a system too complex for mass adoption. Settlement without privacy produces a system too exposed for institutional use. Identity without authorization produces a system that cannot enforce organizational policy at scale. Authorization without intent infrastructure produces a system where users must translate human goals into technical instructions manually — with irreversible consequences for error.

The infrastructure challenge is not building any one of these layers in isolation. It is building them so they work together as a unified system — programmable from the blockchain foundation to the human experience at the top.


Why This Matters Now

The financial world is already moving. The settlement layer is increasingly validated by production deployments at institutional scale. The infrastructure layers above it are where the next generation of financial infrastructure will be built and where the most significant opportunities remain.

Visa, JPMorgan, Stripe, and Circle have demonstrated that stablecoins can move value. The question now is what infrastructure makes that value usable as a complete global payment system — trusted, private, identity-compatible, and accessible to billions of people who will never think about the blockchain infrastructure underneath their payments.

Blockchain gave us programmable money. Stablecoins gave us programmable value. The next evolution is programmable payment infrastructure — and that is the category worth building.

External reference: J.P. Morgan Kinexys — institutional blockchain payment infrastructure

External reference: BIS Project mBridge — multi-central bank digital currency settlement platform


Frequently Asked Questions

What is blockchain payment infrastructure?

Blockchain payment infrastructure is the complete six-layer stack required to make blockchain-based payments work at global scale: blockchain settlement foundation, stablecoin money layer, privacy and confidential state layer, intent and authorization layer, identity infrastructure, and human payment experience. Each layer solves a distinct problem. A complete payment system requires all six working together.

Why do stablecoins need identity and privacy layers?

Stablecoins solve the money layer — moving stable value quickly and globally on blockchain rails. But a complete payment system also requires identity infrastructure so people can pay each other without managing wallet addresses, privacy technology to keep financial details confidential on public ledgers, and authorization infrastructure to enforce permissions and compliance before settlement executes. Without these layers, stablecoins are a powerful settlement asset with an incomplete payment system built around them.

What is intent-based payment infrastructure on blockchain?

Intent-based payment infrastructure allows users to express desired payment outcomes — pay this person, settle this invoice — rather than manually constructing technical transaction instructions. The infrastructure translates intent into correct, authorized, private settlement execution. This eliminates the error and fraud risk that comes from requiring users to interact directly with wallet addresses and raw transaction parameters.

What is a blockchain payment identity system?

A blockchain payment identity system maps human-readable payment identities to cryptographic wallet destinations automatically — similar to how the Domain Name System maps domain names to IP addresses on the internet. Instead of copying 44-character wallet addresses, users interact with verified identities. TSN implements this through Transfer Identity Numbers (TIN), which serve as the identity layer of the TSN payment infrastructure stack.

What is GPRU in TSN?

GPRU stands for Guard Privacy Routing Unit. It is a temporary guarded settlement routing identity used by TSN to separate payment identity, transaction routing, and public blockchain visibility. Unlike a traditional receiving wallet, a GPRU does not represent a user's public account or hold funds. It acts as an authorization-controlled routing layer connected to confidential settlement state managed by the TCap Transfer Capital Layer.

What is TCap in TSN?

TCap stands for Transfer Capital Layer. It is the TSN settlement state engine responsible for confidential balance accounting, asset representation, authorization validation, and settlement transitions. TCap maintains a confidential settlement accounting layer where balance ownership is updated privately while remaining cryptographically verifiable — allowing settlement to be proven without exposing the private financial details of the participants to unauthorized parties.

What is the difference between a stablecoin settlement network and blockchain payment infrastructure?

A stablecoin settlement network handles one specific function: the final transfer of ownership of stable digital value between participants. Blockchain payment infrastructure refers to the complete stack — blockchain settlement foundation, programmable money layer, privacy layer, intent and authorization layer, identity infrastructure, and user experience layer — all working together as a unified payment system capable of serving billions of people globally.


Continue Reading

Global Settlement Networks: The Future of Blockchain Payments

Global Stablecoin Settlement Networks diagram showing identity (TIN), authorization, privacy (GPRU), and receipts & reconciliation layers from stablecoin assets through blockchain payment system and TSN to the blockchain ledger

Traditional finance has always relied on multi-step clearing and settlement systems to move value globally. Blockchain and stablecoins change the mechanics: value can transfer 24/7 on a shared ledger. But moving value is not the same as running a payment system.

That distinction has given rise to a new category of infrastructure: global stablecoin settlement networks. These specialized blockchain layers handle cross-border transfers of digital money while preserving the hidden machinery of payments, including identity, compliance, privacy, receipts, and reconciliation.

Why Traditional and Crypto Rails Differ

Legacy Settlement Through Banks

The Bank for International Settlements defines settlement as the discharge of an obligation and a payment system as the rules and instruments used to transfer funds. In practice, banks use layered processes such as authorization, clearing, and netting across trusted ledgers. Final settlement often depends on centralized systems such as Fedwire and established regulatory frameworks.

Blockchain Transfers

Public blockchains such as Bitcoin, Solana, and Ethereum allow programmed token transfers to settle in seconds or minutes. A wallet-to-wallet transfer can be final onchain, eliminating traditional settlement windows. Stablecoin payment systems use decentralized networks to move and settle digital dollars while banks and issuers hold the underlying reserves.

The Missing Context

A pure blockchain transfer does not carry every part of payment context. It exposes addresses instead of human identities, usually provides no application-level settlement receipt, and depends on users managing private keys correctly. A complete payment requires identity, authorization, funding, receipt, and reconciliation across the full lifecycle.

Stablecoins: Digital Dollars and More

Stablecoins are digital tokens designed to maintain a stable value, commonly through a 1:1 relationship with a fiat currency. They have become a central settlement asset because they combine blockchain speed and programmability with the stability required for commerce.

Market Growth

The stablecoin ecosystem has grown into a market measured in hundreds of billions of dollars. Tether's USDT and Circle's USDC represent two of the largest stablecoin supplies, while payment networks and financial institutions continue to explore stablecoin settlement rails.

Figure: Major stablecoins by supply. Non-bank issuers USDC and USDT represent a large share of the stablecoin market.

24/7 Global Reach

Unlike bank dollars, stablecoins can move across networks such as Ethereum, Solana, and Tron at any time of day. The promise of instant, continuous settlement is one reason banks and central banks are exploring tokenized money. Visa's USDC settlement work and J.P. Morgan's Kinexys illustrate this broader movement.

Regulatory Trust

Some stablecoins are backed by reserves and supported by regulated issuers. This gives institutions a clearer basis for using digital money in business operations. Issuers and banks are also building onramps and offramps so businesses can send stablecoins onchain and receive fiat through traditional financial rails.

The Missing Infrastructure Layers

Issuing stablecoins onchain does not by itself complete a payment system. True payment completion requires additional infrastructure layers.

Identity and Routing

Banks and users expect to send money to people or accounts, not anonymous addresses. TrustLink's Transfer Settlement Network introduces 10-digit TINs, or Transfer Identity Numbers, instead of requiring raw keys to serve as user-facing identity. Routing identities such as GPRUs can separate payment routing from a user's underlying identity.

Authorization and Policy

Enterprises require approval workflows and transaction policies. Institutional networks can identify counterparties by name and enforce multisignature rules before settlement. TSN similarly requires an authorized payment intent, signed by the user's device, before settlement work can be created.

Privacy and Compliance

Public chains reveal transaction details by default, while institutions often need sensitive amounts and relationships to remain private. Zero-knowledge proofs, trusted execution environments, and multiparty computation are examples of techniques used to pursue privacy-preserving settlement. TSN uses encrypted commitment data and limits private balance access to authorized parties.

Liquidity and Settlement

Fast transfers still require reliable liquidity. Settlement networks may embed liquidity hubs, treasuries, or vaults. The TSN architecture uses epoch treasury coordination and TCap private balance state so settlement operators can work against pooled, policy-bound liquidity rather than relying only on peer liquidity.

Receipts and Reconciliation

Businesses need durable evidence that a payment was authorized and executed as intended. A settlement record should connect the payment intent, funding transaction, final settlement, status, timestamps, and correlation identifier. TSN records commitments, funding transactions, and receipts as part of its settlement lifecycle.

A global stablecoin settlement network therefore combines stablecoin assets, blockchain rails, identity discovery, privacy, compliance, liquidity, and final accounting. It is a payment rail for digital money, not merely a token transfer.

Transfer Settlement Network and Identity-First Payments

TrustLink Labs' Transfer Settlement Network (TSN) is designed as a blockchain-native infrastructure layer that coordinates identity, authorization, settlement execution, confidentiality, and final ownership updates for digital value transfers.

TINs and GPRUs

Users interact through a short Transfer Identity Number rather than a raw wallet address. During settlement, TSN can use temporary GPRUs, or Guard Privacy Routing Units, as one-time routing identities. These units hold encrypted commitment data without exposing a user's public payment history as the user-facing destination.

Payment Intents

A sender's device composes a signed intent containing fields such as amount, recipient TIN, and expiry. The intent is sent to TSN coordination nodes. Only a valid intent can create settlement work, ensuring that each transfer is explicitly authorized.

Epoch Treasury and TCap

TSN operates in epochs, or defined time intervals. Each epoch coordinates incoming funds and settlement obligations. TCap supplies the private balance and asset-accounting layer, allowing balance transitions to be represented through encrypted state and commitments rather than exposing a readable balance at a routing unit.

Crankers and Validation

Crankers lease verified settlement work and submit the corresponding onchain transactions. The TSN program checks that the submitted transaction matches the pre-authorized intent and can enforce one-time execution, replay protection, and settlement state transitions.

This architecture treats settlement infrastructure as a lifecycle: identity, authorization, funding, final delivery, replay protection, receipts, and recovery all need defined responsibilities.

Stablecoins changed how value can move. The next infrastructure layer must change how business payments are authorized, coordinated, and settled.

The Big Picture

Major financial firms and blockchain platforms are converging on tokenized currency rails and privacy features for cross-border settlement. Yet the infrastructure will realize its promise only when it combines user-friendly identity, robust compliance, dependable liquidity, and trustworthy ledger records.

Global settlement networks are emerging as new payment rails. They marry the speed of stablecoins with the layers banks built over decades. The Transfer Settlement Network is one approach: a privacy-aware, identity-first layer intended to make blockchain payments feel more natural and reliable while preserving cryptographic settlement.

Sources and Further Reading

GPRU + TCAP: How TSN Separates Auth and Balance

Research · Private payment infrastructure

The Authorization and Private Balance Architecture of TSN

TrustLink Labs research cover illustrating GPRU authorization and TCAP private balance architecture for TSN


Modern payment networks need two protections at once: a verifiable authorization path and a private balance path. TrustLink Labs separates those responsibilities across GPRU, TSN, and TCAP.

Abstract

GPRU provides authorization and routing without custody. TCAP provides policy-bound private balance state through commitment-linked encrypted snapshots. The TSN Program coordinates epoch treasury obligations and consumes Mother-rooted Settlement DNA exactly once. Together, these layers create a payment system in which the operator can submit an authorized transaction without receiving the sender’s keys, private commitment, or payment-specific account history.

1. The authorization problem

A payment authorization is stronger than a destination address. It must bind the amount, mint, recipient, fees, route, expiry, nonce, and settlement commitment. GPRU canonicalizes those fields and lets the Node reject any mutation before a Cranker receives work.

2. Mother-rooted Settlement DNA

Mother creates a one-time DNA voucher for a specific authorized CrankerVault and lease. The permit carries the opaque commitment, public settlement coordinates, nullifier, and expiry. On success the TSN Program consumes the DNA permanently. A second Cranker cannot reuse or redirect it.

3. The private balance path

TCAP stores a public tip commitment and sequence, not a plaintext balance. After a valid credit, the owner stores an encrypted snapshot keyed by the new commitment. A private read fetches the tip, loads the matching ciphertext, verifies its hash and sequence, and decrypts locally. The protocol never needs to publish the balance to coordinate the transition.

4. Epoch treasury coordination

Funding enters an epoch treasury rather than a payment-specific escrow object. The epoch ledger tracks aggregate obligations and opaque claim state. Settlement and refund are mutually exclusive: the first valid operation writes the claim outcome, and finalization requires that pending liability reaches zero.

5. Operator and privacy boundaries

Crankers pay fees and submit transactions, but they do not receive sender keys, TIN master material, private commitment plaintext, escrow accounts, or PrivateEscrowRecord PDAs. The Node and Mother retain encrypted private context; the chain enforces the one-time authorization capability.

Conclusion

GPRU makes authorization portable, TCAP makes private balance state usable, and TSN makes settlement accountable. The result is a protocol architecture for identity-aware, privacy-preserving payment infrastructure rather than a thin transfer wrapper.

TIN identity · GPRU documentation · TCAP documentation · TSN settlement flow

Blockchain Payment Systems (BPS): The Future of Digital Money Movement

Blockchain Payment System BPS connected with Blockchain Settlement Network infrastructure for digital money movement using stablecoins and tokenized assets

Discover how Blockchain Payment Systems (BPS) and Blockchain Settlement Networks are transforming digital money movement through stablecoins, tokenized assets, and blockchain-native settlement infrastructure

Introduction: The Beginning of the Blockchain Money Movement Era

For decades, global payments have been built around a message-based financial architecture.

When a customer sends money, the payment system usually does not physically move the value immediately. Instead, it coordinates a series of instructions between financial institutions:

  • payment initiation;
  • authorization;
  • clearing;
  • reconciliation;
  • final settlement.

The payment message moves first. The actual settlement of value happens through underlying financial infrastructure.

This model powered the modern economy, but it was designed for a world where money existed primarily inside centralized institutional databases.

Blockchain introduces a different possibility.

Instead of only sending instructions about money, blockchain networks allow digital representations of value to move directly through programmable infrastructure.

The financial industry is now entering a new era:

The Blockchain Money Movement Era.

This era is defined by:

  • stablecoins;
  • tokenized deposits;
  • programmable assets;
  • blockchain-native settlement;
  • 24/7 digital value transfer.

Tokenization is increasingly changing how financial assets and money can be represented, transferred, and settled through programmable digital systems.

But this transformation creates a new challenge:

If money becomes digital and programmable, what infrastructure coordinates how that money moves safely at global scale?

The answer requires a new category of infrastructure:

Blockchain Payment Systems and Blockchain Settlement Networks.

What Is a Blockchain Payment System (BPS)?

A Blockchain Payment System (BPS) is a digital payment infrastructure built on blockchain networks that enables users, businesses, and institutions to transfer value through cryptographic authorization, programmable transactions, and blockchain settlement mechanisms.

A BPS is not simply a wallet.

A wallet is only an interface for controlling assets.

A complete Blockchain Payment System requires multiple components:

User
 |
 |
Blockchain Payment System (BPS)
 |
 ├── Identity
 ├── Payment authorization
 ├── Transaction routing
 ├── Privacy controls
 ├── Asset management
 └── Settlement coordination
 |
 ▼
Blockchain Settlement Network

A BPS answers:

How do people and businesses use digital money?

Examples of BPS functions:

  • sending payments;
  • receiving payments;
  • merchant transactions;
  • recurring payments;
  • business payouts;
  • identity-based payments;
  • programmable financial interactions.

Why Blockchain Payments Are Different

Traditional payment systems were built around institutional communication.

The basic model:

Sender
 |
Payment instruction
 |
Bank
 |
Payment network
 |
Clearing
 |
Settlement
 |
Receiver

Blockchain changes this model:

Sender
 |
Digital value authorization
 |
Blockchain network
 |
Settlement verification
 |
Receiver

The difference is important.

Traditional systems mainly communicate ownership changes.

Blockchain systems can directly execute ownership transitions.

The asset itself becomes programmable.

The Missing Layer: Blockchain Settlement Networks

A common misunderstanding is:

"If blockchain already confirms transactions, why do we need settlement networks?"

Because transaction confirmation is only one part of financial infrastructure.

Large-scale payment systems require:

  • identity coordination;
  • authorization;
  • routing;
  • liquidity management;
  • compliance controls;
  • privacy protection;
  • reconciliation;
  • operational reliability.

A blockchain confirms:

"This transaction happened."

A settlement network coordinates:

"How does this transaction fit into a larger financial system?"

What Is a Blockchain Settlement Network?

A Blockchain Settlement Network is infrastructure designed to coordinate, verify, and finalize digital value movement between participants using blockchain technology.

It operates as the settlement layer connecting payment applications, financial institutions, and digital assets.

A settlement network manages:

Payment Intent
      |
      ▼
Identity Verification
      |
      ▼
Authorization
      |
      ▼
Settlement Routing
      |
      ▼
Blockchain State Transition
      |
      ▼
Final Value Ownership

The purpose is not only moving tokens.

The purpose is coordinating trusted financial state changes.

Blockchain Payment System vs Blockchain Settlement Network

These two concepts are related but different.

Layer Purpose
Blockchain Payment System (BPS) User-facing payment experience
Blockchain Settlement Network Infrastructure coordinating final settlement

Example:

TrustLink Pay
      |
      |
      ▼
Transfer Settlement Network (TSN)
      |
      |
      ▼
Blockchain Infrastructure

TrustLink Pay answers:

How does a person or business send money?

TSN answers:

How does the network coordinate the settlement of that money?

The Role of Stablecoins in Blockchain Money Movement

Stablecoins are becoming an important bridge between traditional finance and blockchain infrastructure.

They provide:

  • digital dollar representation;
  • programmable transfers;
  • global accessibility;
  • blockchain-native settlement.

Networks such as Circle Payments Network are also exploring stablecoin-powered payment infrastructure for global money movement.

However, stablecoins alone do not solve every payment challenge.

A stablecoin is the asset.

A payment system moves the asset.

A settlement network coordinates the movement.

The relationship:

Stablecoin
     |
     ▼
Blockchain Payment System
     |
     ▼
Settlement Network
     |
     ▼
Global Digital Money Infrastructure

Introducing TrustLink Pay: A Blockchain Payment System Built on TSN

TrustLink Pay is designed as a Blockchain Payment System (BPS) built on top of the Transfer Settlement Network.

Its purpose is to make blockchain payments usable through identity-based payment experiences.

Instead of requiring users to understand complex wallet addresses, TrustLink Pay introduces human-friendly payment identity infrastructure.

TrustLink Pay focuses on:

  • payment experience;
  • identity-based transfers;
  • user interactions;
  • merchant payments.

Introducing Transfer Settlement Network (TSN)

The Transfer Settlement Network (TSN) is the settlement infrastructure layer powering Blockchain Payment Systems.

TSN focuses on:

  • settlement coordination;
  • authorization verification;
  • privacy-aware routing;
  • blockchain state transitions;
  • network coordination.

Architecture:

                  TrustLink Pay
              Blockchain Payment System
                         |
                         |
                         ▼

             Transfer Settlement Network
              Blockchain Settlement Layer

              ┌────────┼────────┐
              ▼        ▼        ▼

             TIN      GPRU     TCap

          Identity Authorization Privacy

Why the Future Needs Both BPS and Settlement Networks

The future financial system will not be built from a single component.

It will require multiple layers.

Similar to the internet:

Applications
      |
Protocols
      |
Network Infrastructure

Financial infrastructure will evolve similarly:

Payment Applications
        |
        ▼
Blockchain Payment Systems
        |
        ▼
Settlement Networks
        |
        ▼
Blockchain Infrastructure

The Next Generation of Financial Infrastructure

The future of money is not only about creating digital assets.

The harder problem is:

How do digital assets move securely, privately, and reliably between people, businesses, and institutions?

Blockchain Payment Systems provide the payment experience.

Blockchain Settlement Networks provide the coordination infrastructure.

Together, they create the foundation for the next generation of digital money movement.

The Blockchain Money Movement Era will not be defined only by token creation.

It will be defined by the infrastructure that allows digital value to move.

Settlement Networks Explained: Global, Blockchain, Stablecoin & TSN

Settlement networks explained showing global settlement networks, blockchain settlement networks, stablecoin settlement networks, and Transfer Settlement Network TSN architecture

What is a settlement network? This page compares every major type — Global Settlement Network, Blockchain Settlement Network, Stablecoin Settlement Network, and Transfer Settlement Network (TSN) — and explains where each fits in the future of digital money.

What Is a Settlement Network?

A settlement network is the infrastructure that enables the final transfer of ownership of money or digital assets between participants — making sure value actually moves, not just a promise of value.

Traditional financial systems relied on banks, clearinghouses, and international payment rails to coordinate this process. It worked — but it was slow, expensive, and only available during business hours.

Blockchain introduced programmable settlement networks where digital assets can move, verify, and settle through decentralized infrastructure, 24 hours a day, 7 days a week, anywhere in the world.

Today, four distinct types of settlement networks exist. They share the same goal — moving value securely — but each solves a different problem at a different layer of the financial stack.

  • Global Settlement Network — the traditional institutional infrastructure
  • Blockchain Settlement Network — the technology layer enabling programmable settlement
  • Stablecoin Settlement Network — stable digital value moving on blockchain rails
  • Transfer Settlement Network (TSN) — identity-first, privacy-aware settlement coordination

Although they share the same goal — moving value securely — they solve different problems. This page explains each one and shows exactly how they compare.


Type 1 — Global Settlement Network

A Global Settlement Network is the worldwide infrastructure that allows financial institutions to transfer value across borders. It includes correspondent banking networks, central bank settlement systems, and international payment rails such as SWIFT and Fedwire.

For decades, this was the only option for cross-border settlement. When a bank in New York needed to pay a bank in Tokyo, the payment traveled through a chain of correspondent banks — each holding accounts with the next — until it reached its destination. Each step added time and cost.

How value moves in a Global Settlement Network:

Bank A (Sender) → SWIFT / Payment Network → Correspondent Bank 1 → Correspondent Bank 2 → Clearing Institution → Bank B (Receiver)

What global settlement networks do well:

  • Trusted institutional infrastructure recognized by governments and regulators worldwide
  • Built-in compliance frameworks for KYC and AML requirements
  • Decades of established correspondent banking relationships
  • Settlement finality backed by central bank authority

Where global settlement networks fall short:

  • Cross-border transfers take T+1 to T+5 business days to settle
  • FX markups and correspondent bank fees add 2 to 4 percent to international transfers
  • Settlement only available during banking hours on business days
  • Multiple intermediaries each represent a point of failure or delay
  • No programmability — every process requires manual or administrative steps
  • Fragmented reconciliation databases across institutions require costly post-trade reconciliation

Examples of Global Settlement Networks include the SWIFT network connecting over 11,000 financial institutions in more than 200 countries, the Fedwire Funds Service operated by the US Federal Reserve, and TARGET2 operated by the European Central Bank.

External references:


Type 2 — Blockchain Settlement Network

Important distinction: Blockchain is not a Global Settlement Network. Blockchain is a technology — a distributed ledger — that can power a new generation of settlement networks. Just as the internet is a technology that powers banking applications, blockchain is the infrastructure layer that powers blockchain-based settlement networks. Calling blockchain a global settlement network is like calling the internet a bank.

A Blockchain Settlement Network is settlement infrastructure built on top of blockchain technology, where transactions are verified and recorded on a shared distributed ledger instead of separate, siloed databases that must be reconciled after the fact.

Traditional finance separates two processes: clearing — the calculation and reconciliation of obligations — and settlement — the actual movement of funds. This separation can take T+1 to T+2 business days. Blockchain collapses both steps into a single atomic operation.

How a transaction settles on a blockchain network, step by step:

  1. Initiation — A sender creates a transaction from a digital wallet, specifying the recipient address and the exact amount.
  2. Broadcast — The transaction is broadcast to the network, where decentralized node operators validate it using cryptographic signatures.
  3. Execution — Smart contracts verify conditions and automatically execute the transfer. If conditions are not met, the transaction does not proceed.
  4. Block inclusion — The validated transaction is grouped into a block and permanently recorded on the ledger.
  5. Finality — Once confirmed by the network consensus mechanism, settlement is complete. The recipient has full custody.

On high-performance networks like Solana, this entire process takes under a second. On Ethereum, finality typically arrives within seconds to minutes. Clearing and settlement — which traditional finance separates into a multi-day process — collapse into a single atomic operation.

What blockchain settlement networks provide:

  • Cryptographic verification — every transaction is mathematically proven, not just administratively confirmed
  • Programmable transfers — smart contracts enforce conditions automatically without human intermediaries
  • Immutable ledger — once recorded, no entity can alter or delete what happened
  • 24/7 global availability — no banking hours, no weekends, no public holidays
  • Transparent settlement rules — every participant can verify the same rules apply equally
  • Digital asset ownership tracking in real time without reconciliation delays

Challenges blockchain settlement still faces:

  • Wallet address complexity — users must manage long cryptographic addresses with no room for error
  • Public transaction visibility — all movements visible on public blockchains, creating privacy conflicts for institutions
  • No native identity layer — a valid transaction only proves a cryptographic signature was used, not who authorized it
  • Smart contract vulnerability — poorly audited contracts have resulted in significant losses across the industry
  • Liquidity fragmentation — assets on one blockchain cannot natively interact with another without bridging infrastructure

External references:


Type 3 — Stablecoin Settlement Network

A Stablecoin Settlement Network uses blockchain-based stable digital currencies as the settlement asset — enabling fast, global, programmable money movement without exposing participants to the price volatility of traditional cryptocurrencies.

Stablecoins became the settlement asset of choice because they bridge two worlds: the speed and programmability of blockchain, and the stable value of traditional currencies. Unlike Bitcoin or Ethereum, stablecoins are designed to maintain a 1:1 parity with underlying assets such as the US dollar.

How value moves in a stablecoin settlement network:

Sender → USD Stablecoin (USDC / USDT / PYUSD) → Blockchain Network (Solana / Ethereum) → Receiver

The three main categories of stablecoins used in settlement:

Fiat-Collateralized Stablecoins

Backed by reserves of physical fiat currency and short-term government bonds held in regulated financial institutions. These are the dominant choice for institutional and B2B settlement because they represent a direct, auditable claim on underlying fiat assets. Examples include USDC issued by Circle, USDT issued by Tether, and PYUSD issued by PayPal. Fiat-collateralized stablecoins offer the high liquidity and price stability required for enterprise-grade financial operations.

Crypto-Collateralized Stablecoins

Backed by a surplus of digital assets locked in onchain smart contracts. They use overcollateralization and algorithmic adjustments to maintain their peg against market volatility. If the value of the underlying collateral falls below a specific threshold, the protocol automatically liquidates assets to ensure the stablecoin remains fully backed. The most prominent example is DAI, issued by MakerDAO and backed by a diversified pool of crypto assets.

Decentralized Stablecoins

Remove centralized issuers entirely from reserve management and governance. Primarily used within decentralized finance (DeFi) applications. Governance is distributed across token holders rather than a central organization.

Key advantages stablecoin settlement provides:

  • 24/7 settlement availability — no banking hours, no delays for weekends or public holidays
  • Cross-border transfers settle in seconds rather than days
  • Network fees are a fraction of traditional wire transfer costs
  • Programmable money — smart contracts enable automated payroll, escrow, and supply chain financing
  • Unified onchain ledger eliminates reconciliation across siloed databases
  • Price stability makes stablecoins suitable for institutional treasury operations

Major institutions already live on stablecoin settlement rails:

  • Visa settled cross-border payments on-chain using USDC on public blockchain networks
  • Stripe accepts stablecoin payments from customers globally and settles merchants in fiat currency
  • J.P. Morgan's Kinexys (formerly Onyx) processes institutional payments using tokenized deposits on blockchain
  • PayPal issued PYUSD to enable programmable payments across its platform and external blockchain networks
  • BIS Project mBridge — a multi-central bank digital currency platform built for cross-border settlement between central banks

Challenges stablecoin settlement still faces:

  • Regulatory uncertainty — legal frameworks vary significantly by jurisdiction, requiring compliance embedded into infrastructure rather than layered on afterward
  • Liquidity fragmentation — stablecoins issued on one blockchain cannot natively interact with smart contracts on another without cross-chain infrastructure
  • Privacy exposure — public blockchains reveal transaction amounts, counterparties, and full balance history
  • De-pegging risk — the collapse of UST/Luna in 2022 demonstrated how quickly confidence can evaporate when reserve mechanisms are insufficient
  • Identity gap — wallet addresses are not human payment identities, creating friction and irreversible error risk at scale

External references:


Type 4 — Transfer Settlement Network (TSN)

Transfer Settlement Network (TSN) is a blockchain settlement protocol designed for identity-based, privacy-aware stablecoin payments — where users transfer value through human-readable payment identities instead of exposing raw wallet addresses.

Every previous generation of settlement network solved a real problem. Global networks connected institutions across borders. Blockchain networks made settlement programmable and continuous. Stablecoin networks introduced stable digital value as the settlement asset. TSN addresses what all three still lack: trust, identity, and privacy as protocol-level features — not afterthoughts.

Why the Wallet Address Model Is Broken

The current blockchain payment model combines too many responsibilities into a single object — the wallet address. A single wallet address is simultaneously your identity, your payment destination, your account number, and your fully public transaction history. This was never designed for human-scale financial interaction.

People do not think "send money to 0x321c...689A." They think "pay J.P. Morgan" or "send to this business." The wallet address was designed for cryptographic ownership, not human financial identity.

Current blockchain payment model:

Wallet Address = Identity + Payment Destination + Account + Public Transaction History

TSN separates these responsibilities into a clean settlement flow:

Human Identity (TIN) → Payment Intent → Authorization Layer → Private Settlement Routing → Blockchain Final Settlement

This separation allows blockchain payments to become easier for normal users while maintaining full cryptographic security underneath.

The Four Core Differentiators of TSN

1. Identity Instead of Wallet Addresses

TSN uses Transfer Identity Numbers (TIN) — human-readable payment identities that route to the correct destination without exposing raw wallet addresses. Users interact with identities, not cryptographic strings. This makes payments safer, simpler, and compatible with institutional KYC and AML compliance requirements at scale. The network knows who is sending and who should receive before settlement executes.

2. Privacy-Aware Settlement

Public blockchains expose sender, receiver, amount, and full transaction history to anyone who looks. TSN introduces a TIN identity layer and TCap confidential asset layer, allowing funds to remain confidential inside the settlement environment while still being cryptographically verifiable on-chain. Businesses and individuals get privacy without losing the benefits of blockchain verification.

3. Controlled Settlement Flow for Large Transactions

Rather than moving one billion dollars in a single exposed blockchain transaction, TSN routes large value through a settlement queue of verified units. A one billion dollar settlement becomes a sequence of ten thousand dollar settlement units, each verified in order. This reduces transaction exposure, improves liquidity management, allows settlement operators called crankers to participate in processing, and creates scalable throughput for institutional-scale value movement.

4. Non-Custodial Architecture

TSN coordinates settlement without ever holding user funds. Users maintain full control of their assets throughout the process. The security model is: user authorization plus cryptographic verification equals completed transfer. The network coordinates without becoming the custodian — eliminating custodial risk entirely.

TSN is built on Solana — chosen for its sub-second transaction finality, high throughput capacity, and low network fees, which make the controlled settlement queue model operationally viable at institutional scale.

Internal resources:


How Every Settlement Network Compares

Each generation of settlement infrastructure solved a different layer of the problem. The table below shows how they compare across the dimensions that matter most for global adoption.

Feature Global Settlement Blockchain Settlement Stablecoin Settlement TSN
Main Users Banks and central banks Blockchain applications Digital asset users Individuals and institutions
Settlement Asset Fiat (bank deposits) Crypto and digital assets Stablecoins Stablecoins
Settlement Speed T+1 to T+5 days Seconds to minutes Seconds to minutes Near-instant
Identity Layer Institutional accounts Wallet addresses Wallet addresses TIN — human identity
Privacy Institutional only Limited Limited Privacy-aware
Programmability None High High High
24/7 Availability No Yes Yes Yes
Human Friendly Medium Low Medium High
Non-Custodial No Yes Yes Yes
Cross-Border Cost 2 to 4 percent FX markup Low network fees Low network fees Minimal

The Bigger Picture

The future of settlement is not banks versus blockchain. Each layer solves a different problem, and the most advanced payment infrastructure will stack them together.

  • Global Settlement Networks — provide institutional trust, regulatory recognition, and central bank finality
  • Blockchain Settlement Networks — provide the programmable, continuous, decentralized ledger layer
  • Stablecoin Settlement Networks — provide stable digital value that institutions and individuals can use without volatility risk
  • Transfer Settlement Network (TSN) — provides the identity, privacy, and trust coordination layer that makes all of it usable for the next billion people

TSN is not a replacement for what came before. It is the trust layer that connects identity-based human payment intent to blockchain-native final settlement — privately, securely, and at global scale.

The money is already moving on-chain. The infrastructure to make it trusted, private, and human-friendly is what gets built next.

Learn more about the Transfer Settlement Network →


Frequently Asked Questions

Is blockchain a global settlement network?

No. Blockchain is a technology — a distributed ledger. A global settlement network is a category of financial infrastructure. Blockchain can power a new generation of settlement networks, but it is not itself a global settlement network. The distinction matters: SWIFT and Fedwire are global settlement networks. Solana and Ethereum are blockchain networks that settlement infrastructure can be built on top of.

What is the difference between clearing and settlement?

Clearing is the process of calculating and reconciling obligations between parties. Settlement is the actual movement of funds to discharge those obligations. Traditional finance separates these into a multi-day process. Blockchain collapses both into a single atomic operation that completes in seconds.

What stablecoins are used for institutional settlement?

Fiat-collateralized stablecoins dominate institutional settlement. USDC issued by Circle and USDT issued by Tether are the most widely used. PYUSD issued by PayPal and USDG are newer regulated instruments. These are backed by auditable fiat reserves and offer the price stability institutions require.

What makes TSN different from other blockchain settlement networks?

TSN introduces identity-based settlement using Transfer Identity Numbers (TIN) instead of wallet addresses, a privacy layer through TCap confidential assets, controlled settlement flow for large transactions, and a fully non-custodial architecture. These are protocol-level features, not optional add-ons.

Why is TSN built on Solana?

Solana provides sub-second transaction finality, high throughput capacity, and low network fees. These properties make the controlled settlement queue model — where large transactions are processed as sequences of verified settlement units — operationally viable at institutional scale.


Continue Reading