Blog

Industry Insights

DTCC + Stellar: Why Tokenized Securities Could Become Stellar's Biggest Institutional Catalyst

On May 27, 2026, DTCC announced that DTC-tokenized assets are expected to become available on Stellar in the first half of 2027. The potential asset classes include Russell 1000 constituents, ETFs, and U.S. Treasuries. This is not a proof of concept or a pilot program. This is the largest post-trade infrastructure provider in the world choosing Stellar as a settlement layer for tokenized securities.

What DTCC Is

If you are not from traditional finance, here is why this matters: DTCC (Depository Trust & Clearing Corporation) processes virtually all U.S. securities transactions. In 2025, DTCC settled over $2.5 quadrillion in securities. Its subsidiary DTC (Depository Trust Company) holds custody of nearly all U.S. stocks and bonds.

When DTCC decides to tokenize assets and put them on a blockchain, the scale is not comparable to a DeFi protocol launching a new token. This is the backbone of U.S. capital markets exploring on-chain settlement.

What Was Announced

DetailDescription
**Who**DTCC / DTC (Depository Trust Company)
**What**DTC-tokenized assets available on Stellar
**When**Expected 1H 2027
**Asset classes**Russell 1000 stocks, ETFs, U.S. Treasuries
**Mechanism**DTC-issued tokens representing custody positions
**Settlement**On-chain settlement on Stellar

Why Stellar

DTCC did not choose Stellar randomly. Several properties make it suitable for institutional securities:

1. Deterministic Finality

Stellar transactions are final within 5 seconds. There are no chain reorganizations, no probabilistic finality, no waiting for block confirmations. For securities settlement, this matters: T+0 is only possible if the settlement layer guarantees finality.

2. Compliance-Native Architecture

Stellar has built-in features that regulated assets require:

AUTH_REQUIRED     - Accounts must be approved before holding the asset
AUTH_REVOCABLE    - Issuer can freeze accounts (regulatory freeze)
AUTH_CLAWBACK     - Issuer can recover tokens (court orders, errors)

These are not smart contract add-ons. They are protocol-level features that every Stellar node enforces. DTCC does not need to trust a smart contract — the network itself enforces compliance.

3. Low and Predictable Fees

Securities settlement involves millions of transactions. Stellar's base fee is 100 stroops (0.00001 XLM), making high-volume settlement economically viable. At current XLM prices, settling a million transactions costs roughly $1.60.

4. Regulatory Track Record

Stellar is one of the few blockchain networks where the native token (XLM) has been classified as a commodity by regulators, not a security. This matters for institutional adoption — using a network whose token might be classified as a security creates legal risk.

5. Existing Institutional Adoption

Stellar already hosts significant institutional activity:

  • Franklin Templeton BENJI: First U.S.-registered money market fund on a public blockchain (5 years on Stellar)
  • USDC: 2.1M+ holders, primary settlement asset for MoneyGram remittances
  • Tokenized RWAs: $2B+ in on-chain real-world assets as of Q1 2026
  • MiCAR-compliant EURAU: Euro stablecoin for European institutional settlement
  • What Tokenized Securities on Stellar Look Like

    When DTCC brings tokenized securities to Stellar, they will likely function as Stellar assets with the following properties:

    // Conceptual representation of a DTC-tokenized security
    const tokenizedSecurity = {
      assetCode: 'AAPL',           // Or a proprietary code
      issuer: 'GDTCC...',          // DTC's Stellar issuing account
      authRequired: true,          // Only approved accounts can hold
      authRevocable: true,         // Can freeze for regulatory compliance
      clawbackEnabled: true,       // Can recover tokens if needed
      homeDomain: 'dtcc.com',      // Verifiable issuer identity
    };

    Trading and Settlement

    The Stellar DEX (decentralized exchange) could facilitate trading of tokenized securities:

    // Query available offers for a tokenized security
    const HORIZON = 'https://horizon.stellar.org';
    
    async function getOrderBook(assetCode, assetIssuer) {
      const res = await fetch(
        `${HORIZON}/order_book?selling_asset_type=credit_alphanum4&selling_asset_code=${assetCode}&selling_asset_issuer=${assetIssuer}&buying_asset_type=native`
      );
      return res.json();
    }

    Corporate Actions

    Dividends, stock splits, and other corporate actions can be executed as Stellar operations:

  • Dividends: Payment operations to all token holders
  • Stock splits: Issuer mints additional tokens proportionally
  • Voting: Could use Stellar's data operations or Soroban contracts
  • Impact on Developers

    New API Use Cases

    If you are building on the Horizon API or Soroban RPC, tokenized securities create new data to query:

    EndpointUse Case
    `/assets`List tokenized securities and their properties
    `/accounts/{id}/offers`View open orders for securities
    `/order_book`Real-time bid/ask for tokenized stocks
    `/trades`Historical trade data for securities
    `/payments`Track dividend distributions
    `/operations`Monitor corporate actions

    Compliance Requirements

    Applications that interact with tokenized securities will need:

  • KYC/AML integration: Only verified accounts can hold securities
  • Accredited investor checks: Some securities may have investor requirements
  • Transaction reporting: Trade reporting obligations (SEC, FINRA)
  • Audit trails: Complete transaction history for regulatory examination
  • LumenQuery's Transaction Intelligence and Portfolio Intelligence features are designed for exactly these use cases.

    Market Size

    To understand the scale of what DTCC could bring to Stellar:

    Asset ClassApproximate Market Size
    Russell 1000 stocks~$45 trillion market cap
    U.S. ETFs~$10 trillion AUM
    U.S. Treasuries~$27 trillion outstanding
    Total addressable~$82 trillion

    Even if a fraction of a percent of these assets moves on-chain, it would dwarf all current blockchain activity combined.

    Timeline and What to Watch

    TimeframeExpected Development
    Q3-Q4 2026DTCC testnet integration, developer previews
    Q1 2027Pilot program with select asset classes
    1H 2027General availability of DTC-tokenized assets on Stellar
    2H 2027+Expansion to additional asset classes

    Signals to Watch

  • DTCC developer documentation for Stellar integration
  • New asset issuance from DTC-affiliated Stellar accounts
  • Regulatory guidance on blockchain-based securities settlement
  • Stellar protocol upgrades to support institutional requirements
  • What This Means for XLM

    Every tokenized security transaction on Stellar requires XLM for fees and reserves. If even a small fraction of U.S. securities settlement moves to Stellar:

  • Transaction fees: Millions of settlement transactions per day
  • Base reserves: Each account holding securities needs XLM reserves
  • Trustline reserves: Each security held requires a trustline (0.5 XLM reserve)
  • Network usage: Dramatically increased demand for Stellar throughput
  • This is why SDF's roadmap to 5,000 TPS is not aspirational — it may be necessary to handle institutional settlement volumes.

    Building for This Future

    Developers who want to be ready when tokenized securities arrive on Stellar should:

  • Build with compliance in mind: See our guide on building compliance-friendly Stellar apps
  • Understand Stellar's asset model: Assets with authorization flags, clawback, and controlled access
  • Monitor the API: Use LumenQuery's Analytics Dashboard to track new asset issuance
  • Build portfolio tools: Institutions will need portfolio tracking, P&L, and risk analysis

  • *Position your application for institutional-grade Stellar. LumenQuery provides the API infrastructure, analytics, and monitoring tools that regulated asset platforms need. Start free.*