필사 모드: DeFi and RWA Tokenization 2026 — Ondo, BUIDL, Franklin Templeton, JP Morgan Kinexys, Securitize Deep Dive
EnglishPrologue — 2026, Tokenization Hits the Mainstream
When DeFi Summer started in 2020, Wall Street called it "a new format for the casino." When BlackRock launched BUIDL in 2024, the same people said "tokenization is the future of asset management." What changed in between? The answer is simple — **the infrastructure to move real assets on-chain matured**.
As of May 2026, the tokenized US Treasuries market has crossed `$10B`. BlackRock BUIDL holds `$2B+`, Ondo Finance USDY is at `$5B`, Franklin Templeton BENJI is at `$700M+`, WisdomTree Prime sits at `$300M`, Hashnote USYC at `$1B+`, and Superstate USTB at `$500M+`. Tokenized real estate via RealT (centered on Detroit) has accumulated `$200M`, and tokenized equities like Backed Finance's wbTSLA and wbCOIN see daily volume of `$50M`.
The real momentum, though, is on the infrastructure side. JP Morgan Onyx rebranded as **Kinexys** in November 2024 and reported daily tokenized settlement volume of `$2B`. Citi launched Citi Token Services for cross-border payments; Goldman Sachs began bond issuance via DAP (Digital Asset Platform); Société Générale's FORGE issues the EUR-stablecoin EURCV.
In Korea, after the 2023-2024 Security Token Offering (STO) guidelines were published, amendments to the Capital Markets Act and the Electronic Securities Act passed the National Assembly in 2025-2026. **Kakao KASOM** (Korea Asset & Securities Open Marketplace) leads an infrastructure consortium, the **SK Securities-SKT** alliance is preparing telecom-securities data products, and **Mirae Asset Securities** has launched its own STO issuance platform.
Japan moved earlier. The 2020 amendment to the Financial Instruments and Exchange Act (令和元年改正) created **電子記録移転権利** (Electronic Record Transfer Rights, i.e., Security Tokens) as a statutory category. SBI Digital Asset Holdings co-founded osakadigitalexchange (ODX), Nomura Komainu runs institutional custody, and MUFG-backed **Progmat** has become Japan's standard ST issuance platform. Nomura's own ST issuance has crossed `$300M` cumulatively.
This essay maps that landscape. What is an RWA? Which token standards are used? How are issuance and compliance wired up? And how far have the legal frameworks of Korea, Japan, Singapore, and Hong Kong come?
1. What is an RWA — Definition and Taxonomy
An RWA (Real-World Asset) is **a token representation of an asset whose legal and economic substance exists off-chain**. The difference from simple digitization is that the token itself represents — or maps one-to-one onto — a **legal claim**.
| Category | Examples | Token Standard | Issuer |
| --- | --- | --- | --- |
| Tokenized Treasuries | BlackRock BUIDL, Ondo USDY | ERC-1400/3643 | BlackRock, Ondo |
| Tokenized MMF | Franklin Templeton BENJI | Stellar Asset | Franklin Templeton |
| Tokenized Corporate Bond | Société Générale EIB Bond | ERC-20 variant | SG-FORGE |
| Tokenized Real Estate | RealT, Lofty AI | ERC-20/1400 | RealT, Lofty |
| Tokenized Private Credit | Maple, Centrifuge, Goldfinch | ERC-20 | Maple, Centrifuge |
| Tokenized Equity | Backed wbTSLA, INX | ERC-1400 | Backed, INX |
| Tokenized Commodities | PAX Gold, Tether Gold | ERC-20 | Paxos, Tether |
| Tokenized Carbon | Toucan, Flowcarbon | ERC-1155 | Toucan, Flowcarbon |
| Tokenized Fund Share | Hamilton Lane, Apollo | ERC-3643 | Securitize-issued |
The key is the **legal nexus**. If you receive the token, you must be able to walk into court and enforce the claim it represents. Creating that nexus is the essence of issuance infrastructure.
2. BlackRock BUIDL — What `$2B` AUM Means
BUIDL (BlackRock USD Institutional Digital Liquidity Fund) launched in March 2024. Asset manager: BlackRock. Tokenization partner: Securitize. Custodian: BNY Mellon. Network: Ethereum. The fund holds a near-risk-free portfolio of short-term US Treasuries and reverse repos, and issues tokens that represent its shares.
Scale gave it meaning. It crossed `$500M` within six months and `$2B` by mid-2025. In the same period, Ondo USDY (which later partly used BUIDL as its backing asset) grew to `$3B`. In other words, BUIDL itself became a **building block** for other tokenized products.
// BUIDL-style primary subscription flow (conceptual)
interface SubscriptionParams {
investor: string // Whitelisted KYC-completed wallet
amountUSDC: bigint // USDC subscription amount ($5M minimum)
fundShareReceiver: string // Address that will receive BUIDL tokens
}
async function subscribeBUIDL(
contract: ethers.Contract,
params: SubscriptionParams,
signer: ethers.Signer
): Promise<{ txHash: string; sharesIssued: bigint }> {
// 1. KYC verification (Securitize transfer agent)
const isWhitelisted = await contract.isWhitelisted(params.investor)
if (!isWhitelisted) throw new Error('investor not on whitelist')
// 2. USDC approve
const usdc = new ethers.Contract(USDC_ADDR, ERC20_ABI, signer)
const approveTx = await usdc.approve(contract.target, params.amountUSDC)
await approveTx.wait()
// 3. Primary subscription
const tx = await contract.subscribe(
params.amountUSDC,
params.fundShareReceiver
)
const receipt = await tx.wait()
// 4. Extract shares issued from the event
const log = receipt.logs.find(
(l: ethers.Log) => l.topics[0] === ethers.id('SharesIssued(address,uint256)')
)
const sharesIssued = ethers.toBigInt(log!.topics[2])
return { txHash: receipt.hash, sharesIssued }
}
BUIDL's real innovation is distribution. NAV-based yield is automatically paid to token holders once a week. Traditional money market funds distribute monthly; BUIDL distributes far more frequently, and the cadence is enforced by code.
3. Ondo Finance USDY — `$5B` and the RWA Template
Ondo Finance was founded in 2021 by Nathan Allman, a Goldman Sachs alum. The flagship product is USDY (US Dollar Yield), a yield-bearing stablecoin backed by short-term US Treasuries and bank deposits. As of May 2026 the outstanding supply is over `$5B`.
USDY differs from ordinary stablecoins in two ways. First, it is issued **only to non-US investors** (a structure considered safe under US securities law). Second, **yield accrues into the token price** — it does not rebase; the price slowly rises instead.
// USDY-style: price update mechanism for a yield-bearing token (conceptual)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
interface IOracle {
function getNAVPerToken() external view returns (uint256);
}
contract USDYToken {
address public oracle;
address public transferAgent;
uint256 public lastNAVUpdate;
uint256 public navPerToken; // 1e18 = $1.0000
mapping(address => bool) public whitelisted;
mapping(address => uint256) public balances;
event NAVUpdated(uint256 oldNAV, uint256 newNAV, uint256 timestamp);
event TransferRestricted(address from, address to, string reason);
modifier onlyTransferAgent() {
require(msg.sender == transferAgent, "not transfer agent");
_;
}
function updateNAV(uint256 newNAV) external onlyTransferAgent {
require(newNAV >= navPerToken, "NAV cannot decrease in normal ops");
uint256 old = navPerToken;
navPerToken = newNAV;
lastNAVUpdate = block.timestamp;
emit NAVUpdated(old, newNAV, block.timestamp);
}
function transfer(address to, uint256 amount) external returns (bool) {
require(whitelisted[msg.sender], "sender not whitelisted");
require(whitelisted[to], "receiver not whitelisted");
require(balances[msg.sender] >= amount, "insufficient balance");
balances[msg.sender] -= amount;
balances[to] += amount;
return true;
}
function getUSDValue(address holder) external view returns (uint256) {
return (balances[holder] * navPerToken) / 1e18;
}
}
USDY's backing portfolio is disclosed weekly. As of May 2026: 65% short-term US Treasuries (under one year), 30% money market funds, 5% bank deposits. The yield tracks SOFR (Secured Overnight Financing Rate) plus roughly 0.5%.
4. Franklin Templeton OnChain — BENJI on Stellar
Franklin Templeton was the first asset manager to register a tokenized fund with the SEC. In April 2021 it launched the OnChain US Government Money Fund — initially on Stellar, later expanded to Polygon and Avalanche. The token representing fund shares is BENJI.
The difference from a traditional fund is that the share registry lives on the blockchain. The source of truth for the share count reported to the SEC is the Stellar ledger. Fund operations remain traditional, but **the record of ownership has moved on-chain**.
| Item | BUIDL (BlackRock) | USDY (Ondo) | BENJI (Franklin Templeton) | USYC (Hashnote) |
| --- | --- | --- | --- | --- |
| Launch | 2024-03 | 2023-08 | 2021-04 | 2022-11 |
| Underlying | ST Treasuries + repo | ST Treasuries + deposits | ST Treasuries + repo | Treasuries + repo |
| Network | Ethereum | Ethereum, Solana, Sui | Stellar, Polygon, Avalanche | Ethereum |
| Token Standard | ERC-1400 + Securitize | ERC-20 + transfer agent | Stellar Asset | ERC-20 + permission |
| Issuer | BlackRock | Ondo Finance | Franklin Templeton | Hashnote |
| Minimum | `$5M` | None after whitelist | `$20` | `$100K` |
| AUM (2026-05) | `$2B+` | `$5B+` | `$700M+` | `$1B+` |
| Yield Distribution | Weekly | Price appreciation (NAV) | Daily reinvest | Daily reinvest |
| US Investors | Yes (qualified) | No | Yes (retail allowed) | Yes (qualified) |
The most telling differences are in minimum subscription and network choice. BUIDL is institutional-only with a `$5M` minimum. BENJI is retail-friendly, accessible to ordinary investors.
5. JP Morgan Onyx → Kinexys — `$2B` Daily Settlement
JP Morgan launched Onyx Digital Assets in 2020. It started with intraday repo (using JPM Coin) and gradually expanded into trade settlement, FX, and tokenized treasury management. In November 2024 it rebranded as **Kinexys** and officially reported daily transaction volume of `$2B`.
The core of Kinexys is a **permissioned blockchain**. Not anyone can run a node — only KYC'd institutions can participate. This is the decisive difference from general public chains, and it enables atomic settlement on the order of a second.
Kinexys-style tokenized settlement transaction (conceptual YAML)
transaction:
type: tokenized_repo
parties:
- role: lender
institution: JPMorgan-Chase-NA
account_id: KINEXYS-BANK-001
- role: borrower
institution: BlackRock
account_id: KINEXYS-AM-042
collateral:
asset_type: tokenized_us_treasury
cusip: 912828YK0
isin: US912828YK02
quantity: 50000000
haircut_pct: 2.0
cash:
currency: USD
amount: 49000000
settlement_token: JPM-COIN
terms:
start: 2026-05-25T09:00:00Z
maturity: 2026-05-26T09:00:00Z
rate_bps: 530
rate_basis: actual/360
settlement:
mode: atomic_dvp # delivery-versus-payment, executed simultaneously
finality: t_zero
legal_framework: NY-Article-9-UCC
The magic of a Kinexys transaction is **legal finality**. A general blockchain has probabilistic finality, but on Kinexys the operator (JPMorgan) guarantees finality. That guarantee being recognized under NY UCC Article 8/9 is the load-bearing legal point.
6. Securitize — The Default Issuance Stack
Securitize was spun out of incubation by SPiCE VC in 2017. Its business is token issuance infrastructure plus a SEC-registered transfer agent license. It is the issuance partner of BUIDL and the largest ST issuance platform in the US.
What Securitize handles is three things. First, KYC/AML onboarding. Second, whitelist management. Third, a transfer restriction rule engine. These are bundled, so when an asset manager like BlackRock wants to "launch a tokenized fund," Securitize handles everything from issuance to settlement.
// Securitize-style KYC + transfer restriction verification flow (conceptual)
interface InvestorProfile {
walletAddress: string
kycStatus: 'pending' | 'approved' | 'rejected'
accreditation: 'retail' | 'accredited' | 'qualified-purchaser' | 'institutional'
jurisdiction: string // ISO 3166-1 alpha-2
riskRating: 1 | 2 | 3 | 4 | 5
expiresAt: number
}
interface TokenRestriction {
tokenId: string
allowedJurisdictions: string[]
requiredAccreditation: InvestorProfile['accreditation']
holdingPeriodDays: number // Reg D Rule 144, etc.
maxHolders: number // Reg D 506(b) limit
}
async function canTransfer(
from: InvestorProfile,
to: InvestorProfile,
restriction: TokenRestriction,
acquisitionDate: number
): Promise<{ allowed: boolean; reason?: string }> {
// 1. KYC expiration
const now = Date.now() / 1000
if (from.expiresAt < now) return { allowed: false, reason: 'sender KYC expired' }
if (to.expiresAt < now) return { allowed: false, reason: 'receiver KYC expired' }
// 2. Jurisdiction
if (!restriction.allowedJurisdictions.includes(to.jurisdiction)) {
return { allowed: false, reason: 'receiver jurisdiction not allowed' }
}
// 3. Accreditation tier
const tiers = ['retail', 'accredited', 'qualified-purchaser', 'institutional']
const fromTier = tiers.indexOf(from.accreditation)
const reqTier = tiers.indexOf(restriction.requiredAccreditation)
if (fromTier < reqTier) {
return { allowed: false, reason: 'sender below required accreditation' }
}
// 4. Holding period (Rule 144)
const heldDays = (now - acquisitionDate) / 86400
if (heldDays < restriction.holdingPeriodDays) {
return { allowed: false, reason: 'holding period not satisfied' }
}
return { allowed: true }
}
Securitize's license stack is uniquely broad: SEC-registered transfer agent + ATS broker-dealer (acquired 2020) + California fund advisor. Bundling these three makes them a single point of contact for issuers.
7. ERC-3643 — A Compliance Token Standard
ERC-3643 is a permissioned token standard proposed by Tokeny in 2021 (originally named T-REX). Its core idea is the separation of **on-chain identity registry + compliance module + token contract**.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
// ERC-3643 core interface (conceptual)
interface IIdentityRegistry {
function isVerified(address user) external view returns (bool);
function investorCountry(address user) external view returns (uint16);
function identity(address user) external view returns (address);
}
interface ICompliance {
function canTransfer(
address from,
address to,
uint256 amount
) external view returns (bool);
function transferred(address from, address to, uint256 amount) external;
}
contract ERC3643Token {
IIdentityRegistry public identityRegistry;
ICompliance public compliance;
mapping(address => uint256) private _balances;
bool public paused;
event TransferBlocked(address from, address to, string reason);
function transfer(address to, uint256 amount) external returns (bool) {
require(!paused, "token paused");
require(identityRegistry.isVerified(msg.sender), "sender not verified");
require(identityRegistry.isVerified(to), "receiver not verified");
require(
compliance.canTransfer(msg.sender, to, amount),
"compliance check failed"
);
_balances[msg.sender] -= amount;
_balances[to] += amount;
compliance.transferred(msg.sender, to, amount);
return true;
}
// Forced transfer (court order, fraud, etc.)
function forcedTransfer(
address from,
address to,
uint256 amount
) external returns (bool) {
// onlyAgent modifier (omitted)
_balances[from] -= amount;
_balances[to] += amount;
return true;
}
}
The advantage of ERC-3643 is modularity. Compliance rules can be set per fund, per issuance — e.g., "EU residents only," "Reg D 506(c) accredited investors only," "max 5% per holder." These rules live separate from the token contract.
8. Polymath / Polymesh — A Full-Stack ST Chain
Polymath started in Toronto in 2017. It began as an ERC-1400 (ST-20) issuance infrastructure and in 2020 launched its own chain, **Polymesh**. Polymesh is a permissioned chain dedicated to security tokens, with KYC built in at the protocol level.
A distinctive feature is that node operators are restricted to licensed financial institutions. As of May 2026, eight institutions run nodes, including Genesis Block Capital, Saxo Bank, Tokenise, and DTZ. When STs are issued, KYC, AML, and jurisdiction rules are enforced at the protocol layer.
9. Backed Finance — Tokenized Equities
Backed Finance started in Geneva in 2021. Its flagship product line is **tokenized ETFs and equities**. wbTSLA (Tesla), wbCOIN (Coinbase), wbNVDA (NVIDIA), and wbIB01 (iShares Treasury ETF) are examples. The issuance model is 1:1 backed — Backed buys the actual shares, custodies them at SEBA Bank or InCore Bank, and mints tokens against them.
The legal structure relies on the Swiss DLT Act (2021), which recognizes ledger-based securities so that blockchain registration itself represents ownership. The EU equivalent is Liechtenstein's TVTG Act.
Backed Finance-style wbTSLA issuance flow (conceptual YAML)
issuer: Backed Finance AG (Switzerland)
underlying:
ticker: TSLA
isin: US88160R1014
exchange: NASDAQ
custodian: SEBA Bank AG
token:
name: wbTSLA
network: Ethereum, Polygon, Gnosis
standard: ERC-20 + transfer restrictions
decimals: 18
backing_ratio: 1:1
issuance_flow:
- step: 1
actor: market_maker
action: deposit_USDC
amount: 100000
- step: 2
actor: backed_finance
action: purchase_underlying
venue: NASDAQ
quantity: 380 # TSLA shares at $263 per share
- step: 3
actor: backed_finance
action: custody_shares
custodian: SEBA Bank
account: backed_finance_AG_seba_001
- step: 4
actor: backed_finance
action: mint_wbTSLA
network: Ethereum
recipient: market_maker_wallet
amount: 380
- step: 5
actor: smart_contract
action: emit_event
event: Minted(380, "ISIN:CH...")
A wbTSLA holder gets no voting rights. Dividends accrue automatically into NAV. US residents are restricted from holding it — Backed has not registered with the SEC.
10. Maple Finance — On-Chain Private Credit
Maple Finance started in Australia in 2020. The core idea is running **under-collateralized institutional lending** on-chain. Where ordinary DeFi loans (Aave, Compound) are over-collateralized, Maple makes credit-based loans to KYC'd institutional borrowers.
Pools are run by pool delegates (professional credit analysts). The delegate screens borrowers, sets loan terms, and absorbs losses in the first-loss tranche if defaults occur.
| Item | Maple | Centrifuge | Goldfinch |
| --- | --- | --- | --- |
| Founded | 2020 | 2017 | 2020 |
| Loan Type | Institutional credit | SME, invoice, real estate | Emerging-market fintech |
| Collateral | Partial, mainly credit | Invoices, real estate | Partial, mainly credit |
| Borrowers | Hedge funds, traders | SMEs, real estate | LatAm and Africa fintechs |
| Cumulative Issuance | `$3B+` | `$700M+` | `$200M+` |
| Loss Events | 2022 Orthogonal bankruptcy | Some defaults | Some defaults |
| Pool Management | Pool delegate | Issuer | Senior/junior pool |
| Token | MPL → SYRUP | CFG | GFI |
Maple suffered `$36M` in losses from the November 2022 Orthogonal Trading bankruptcy. It then redesigned its pool structure and tightened KYC and credit analysis. It normalized from 2024 onward and as of May 2026 manages `$1B+` in active loans.
11. Centrifuge — On-Chain Securitization of Invoices and Real Estate
Centrifuge started in Berlin in 2017. The core mechanic is **tokenizing off-chain assets as NFTs and using those NFTs as collateral to borrow stablecoins**. Categories include invoices, real estate, and music royalties.
A Centrifuge pool (Tinlake) has two tranches. Senior (DROP) earns stable yield; junior (TIN) sits in the first-loss position and earns variable yield. This is the same structure as a traditional ABS (Asset-Backed Security).
In 2022 Centrifuge partnered with MakerDAO to create RWA Vaults. A portion of DAI's backing assets became invoices and real estate from Centrifuge pools. This was the first major bridge between DeFi and TradFi.
12. RealT, Lofty — Tokenized Real Estate
RealT (2019, Detroit) was the first to tokenize US single-family homes. Each home, valued `$50K-$200K`, is held by an LLC, and the LLC's membership interest is issued as an ERC-20 token. The minimum investment is just `$50`.
Returns come in two streams. First, 90% of monthly rent is distributed to token holders in USDC. Second, NAV rises if home prices rise (though gains are unrealized until sale).
Lofty (2022) uses a similar model but accepts investors from a wider list of nations. Both use the Reg D 506(c) exemption.
// RealT / Lofty-style automated rent distribution (conceptual)
interface PropertyDistribution {
propertyId: string
totalRentalIncomeUSD: bigint // Monthly rent
expensesUSD: bigint // Management, taxes, insurance
distributableUSD: bigint // Distributable amount
totalTokensOutstanding: bigint
}
async function distributeRent(
contract: ethers.Contract,
dist: PropertyDistribution,
holders: string[]
): Promise<{ totalDistributed: bigint; perTokenUSD: bigint }> {
const perTokenUSD = dist.distributableUSD * BigInt(1e18) / dist.totalTokensOutstanding
let totalDistributed = 0n
for (const holder of holders) {
const balance = await contract.balanceOf(holder)
const payout = (balance * perTokenUSD) / BigInt(1e18)
// USDC distribution transaction
const tx = await contract.distributeUSDC(holder, payout)
await tx.wait()
totalDistributed += payout
}
return { totalDistributed, perTokenUSD }
}
The biggest risk in real-estate tokenization is **liquidity**. When you want to sell the token, there may be no buyer. RealT operates its own secondary market, but trading frequency is low. This is the hardest problem in RWA.
13. Goldfinch — Emerging-Market Fintech Lending
Goldfinch (2020) makes credit-based loans to fintech companies in Latin America, Africa, and Southeast Asia. Borrowers include Tugende (Uganda mobility fintech), Cauris (next-generation African bank), and Addem (Colombia auto fintech).
The structure splits into a senior pool and a backer pool. Backers absorb first losses in exchange for higher yields. The senior pool diversifies automatically across all funded pools. Goldfinch's challenge has been managing default rates — multiple pools experienced defaults in 2022-2023, and those lessons fed back into the risk model.
14. Korea Security Token Offering — Capital Markets Act Amendments and KASOM
Korea's Security Token Offering guidelines were published in February 2023. The core mechanism is **extension of the Electronic Securities Act** — distributed-ledger-based issuance is recognized, but issuance must go through an account-keeping institution designated by the issuer.
In 2024-2025 amendments to the Capital Markets Act and the Electronic Securities Act were tabled and passed. As a result, the following infrastructure has gone into full operation.
| Consortium | Lead | Infrastructure | Asset Focus |
| --- | --- | --- | --- |
| KASOM | KakaoBank, Kakao Entertainment, KSD | Kakao Klip-based | Music royalties, content |
| SK Securities Alliance | SK Securities, SKT, Hana Securities | SKT data fusion | Real estate, infra funds |
| Mirae Asset STO | Mirae Asset Securities | Proprietary platform | Corporate bonds, real estate |
| Shinhan Consortium | Shinhan Financial Group, Shinhan Investment | Proprietary ledger | Art, content |
| KB Consortium | KB Securities, KB Kookmin Bank | Proprietary ledger | ABS, MMF |
KASOM in particular is driving the tokenization of K-pop music royalties. The goal is to tokenize a portion of the K-pop royalty market — estimated at around `$700M` — and sell pieces to global fans. Initial issuances are scheduled for the second half of 2026.
A regulatory peculiarity in Korea is its **Regulatory Sandbox (Innovative Financial Services)** track. Before the full law took effect, services like Kasa and Sejong Telecom ran real-estate fractional investments, and that operational learning has flowed into the new STO infrastructure.
15. Japan's Amended Financial Instruments and Exchange Act — STs, Progmat, SBI DAH
In May 2020 Japan put the amended Financial Instruments and Exchange Act (令和元年改正) into effect, creating **電子記録移転権利** (Security Tokens, STs). The law recognizes digital representations of existing 第一項有価証券 (equity, bonds) and subjects them to the same regulation as their underlying securities.
The platform infrastructure has three pillars.
- **Progmat** (MUFG-led): Spun out by MUFG in 2023 as a dedicated ST issuance platform. NTT Data, Mitsubishi Corporation, and Nomura participate. Cumulative issuance over `$3B+` as of May 2026. Real estate and corporate bonds are the focus.
- **BOOSTRY** (NRI, Nomura, SBI): Built on R3 Corda. Nomura issued the first corporate bond ST on it.
- **SBI DAH**: SBI Digital Asset Holdings. Joint venture with the Japanese exchange osakadigitalexchange (ODX).
Progmat-style ST issuance flow (conceptual YAML)
issuance:
issuer: Mitsubishi-UFJ-Trust-Bank
trustee: MUFG-Trust-Bank
asset:
type: real_estate
location: Tokyo, Shibuya
appraisal_jpy: 5000000000
appraiser: Japan-Real-Estate-Institute
structure: 受益証券発行信託
token:
network: Progmat
standard: ERC-1400-derived
total_supply: 50000
par_value_jpy: 100000
offering:
type: 私募 # private placement
eligible_investors:
- 特定投資家
- 適格機関投資家
minimum_jpy: 1000000
custody: MUFG-Trust-Bank
trading_venue: SBI-PTS
regulator:
agency: Financial-Services-Agency-Japan
registration: Type-II-Financial-Instruments-Business
disclosure: 有価証券届出書 # securities registration statement
Assets issued on Progmat trade secondarily on SBI PTS (proprietary trading system) or ODX. Unlike the US or EU, Japan allows PTSs to operate flexibly, so ST secondary markets have grown quickly there.
16. Singapore, Hong Kong, UAE — Competing Asia Hubs
- **Singapore MAS**: Project Guardian (2022-) is central. DBS, Standard Chartered, and HSBC participate, experimenting with tokenized bonds, FX, and funds. As of May 2026, real production usage is underway. Both the Payment Services Act and the Securities and Futures Act apply.
- **Hong Kong SFC**: Virtual Asset Trading Platform (VATP) licenses have been issued, with HashKey and OSL receiving the first ones. Tokenized bonds (issued by HKMA) were released in a series during 2024-2025.
- **UAE VARA (Dubai) + FSRA (Abu Dhabi)**: Explicit ST licensing regimes exist. Securrency and Tokenise are authorized in ADGM. Global issuers use the Middle East as a base.
| Country | Regulator | Key Statutes | Authorized STO Issuers |
| --- | --- | --- | --- |
| Korea | FSC, FSS | Capital Markets Act, Electronic Securities Act | Mirae Asset, SK, KB, Kakao |
| Japan | FSA | Financial Instruments and Exchange Act | MUFG Progmat, SBI, Nomura |
| Singapore | MAS | Securities and Futures Act | DBS, SC, UBS |
| Hong Kong | SFC, HKMA | SFO | HashKey, OSL |
| US | SEC, FINRA | Securities Act, Exchange Act | Securitize, tZERO, INX |
| EU | ESMA, national | MiCA, DLT Pilot | Tokeny, SG-FORGE, Cashlink |
| UK | FCA | FSMA | Archax, montis |
| UAE | VARA, FSRA | Virtual Asset Law | Securrency, Tokenise |
| Switzerland | FINMA | DLT Act | SDX, Backed, Sygnum |
17. Atomic Settlement — T+0 vs T+2
Settlement in traditional finance takes time. US equities went from T+2 to T+1 in May 2024; Korean equities settle T+2, Japanese equities T+2. Bonds settle T+1 or T+2. Counterparty risk lives in those time gaps.
The core value proposition of tokenization is **atomic settlement** — token delivery and cash payment happen in a single transaction (DvP, Delivery versus Payment). When that is possible, settlement risk essentially disappears.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
// Atomic DvP settlement (conceptual)
interface IToken {
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
contract AtomicDvP {
struct Trade {
address securitySeller;
address securityBuyer;
IToken securityToken;
uint256 securityAmount;
IToken cashToken;
uint256 cashAmount;
uint256 expiresAt;
bool executed;
}
mapping(bytes32 => Trade) public trades;
event TradeExecuted(bytes32 tradeId);
event TradeFailed(bytes32 tradeId, string reason);
function executeTrade(bytes32 tradeId) external {
Trade storage t = trades[tradeId];
require(!t.executed, "already executed");
require(block.timestamp <= t.expiresAt, "trade expired");
// Both tokens must be transferable for the trade to proceed
bool secOk = t.securityToken.transferFrom(
t.securitySeller,
t.securityBuyer,
t.securityAmount
);
require(secOk, "security transfer failed");
bool cashOk = t.cashToken.transferFrom(
t.securityBuyer,
t.securitySeller,
t.cashAmount
);
require(cashOk, "cash transfer failed");
t.executed = true;
emit TradeExecuted(tradeId);
}
}
The problem is the cash leg. The tokenized security is on-chain, but if the settlement cash is fiat, the trade is not atomic. So you need a stablecoin or a CBDC. Kinexys's JPM Coin and Citi Token Services' deposit tokens play this role.
18. CBDCs and Tokenization — The Rise of Wholesale CBDC
Retail CBDC (China's e-CNY and so on) made a big impact on the payments market. But from the perspective of tokenized capital markets, **wholesale CBDC** — central bank digital money for institutional settlement — matters more.
| Project | Sponsor | Stage | Use Case |
| --- | --- | --- | --- |
| Project Agorá | BIS + 7 central banks | 2024- (experiment) | Tokenized cross-border |
| Project Mariana | BIS, BdF, MAS, SNB | 2023 completed | Tokenized FX |
| Project Helvetia | SNB, SIX | 2020- | Tokenized bond settlement |
| Project Jasper | Bank of Canada | 2017- | Wholesale payment |
| Project Ubin | MAS | 2016-2022 | Tokenized settlement |
| Project Guardian | MAS | 2022- | Tokenized asset settlement |
| Project mBridge | BIS, CN, HK, TH, UAE | 2024- | Cross-border CBDC |
| BoK CBDC | Bank of Korea | 2024- (simulation) | Wholesale + retail |
| BOJ CBDC | Bank of Japan | 2023- (Phase 2) | Payment infrastructure |
The Bank of Korea began CBDC simulations in 2024, with 14 commercial banks in a Phase 2 experiment. The Bank of Japan is validating payment infrastructure in its 2023 Phase 2.
19. MiCA and EU DLT Pilot Regime
The EU enacted MiCA (Markets in Crypto-Assets) in June 2023 and phased it in during 2024-2025. MiCA is a unified regulatory framework for stablecoins and general crypto-assets. Crucially, **securities-like assets (STs) are excluded from MiCA** — they fall under existing MiFID II and the new DLT Pilot Regime (in force March 2023).
The DLT Pilot is a six-year sunset experiment. It exempts portions of existing financial law to let DLT-based securities be issued, traded, and settled. Limits are around EUR 500M per security and EUR 6B for the overall market.
The takeaway: the EU is not building a separate ST regime but rather **extending existing securities law to DLT**. The philosophy is similar to Korea and Japan.
20. Macro Impact — BCG's `$16T` Projection
BCG (Boston Consulting Group) projected in 2022 that tokenized assets will reach `$16T` by 2030. There are roughly two reactions to this number.
Optimists see it this way. Global GDP in 2030 will be `$120T`, global financial assets `$500T`, and real estate `$330T`. If 3-5% of that gets tokenized, `$16T` is conservative. With BlackRock, Franklin Templeton, and BNY Mellon all participating, the infrastructure is firming up fast.
Skeptics see it differently. Tokenization's real value is in cross-border use, but jurisdictional regulations are fragmented and global distribution is hard. Secondary market liquidity is also thin after issuance, so issuers cannot fully capture the benefits.
As of May 2026 the actual tokenized asset stock (treasuries + private credit + real estate) is around `$15B` — less than 1% of BCG's projection. But the growth rate is steep — 2.5x compared to 2024.
| Category | 2024 AUM | 2026-05 AUM | 2030 Projection |
| --- | --- | --- | --- |
| Tokenized Treasuries / MMF | `$1B` | `$10B+` | `$1T` |
| Tokenized Real Estate | `$0.3B` | `$1B` | `$3T` |
| Tokenized Private Credit | `$2B` | `$5B` | `$2T` |
| Tokenized Corporate Bonds | `$0.5B` | `$2B` | `$2T` |
| Tokenized Fund Shares | `$0.2B` | `$1B` | `$5T` |
| Tokenized Commodities | `$1.5B` | `$2B` | `$1T` |
| Tokenized Equities | `$0.1B` | `$0.5B` | `$2T` |
21. Risks — Problems Tokenization Has Not Solved
Despite the rosy projections, several problems remain unresolved.
1. **Legal finality**: Blockchain finality is probabilistic. Will a court recognize that transaction? Amendments to NY UCC Article 8 partly clarified it, but other jurisdictions remain ambiguous.
2. **Bridge and cross-chain risk**: When tokenized assets live across chains, a bridge hack can wipe out assets.
3. **Smart contract risk**: Code bugs and oracle manipulation can drain assets. 2022 Mango Markets, 2023 Euler Finance.
4. **Liquidity**: Issuance got easier, but secondary markets are weak. You can't find a buyer when you want to sell your real-estate token.
5. **Regulatory arbitrage**: Issuers register in the most permissive jurisdiction (JP, SG, UAE) and sell globally. Is that sustainable?
6. **Custody**: Institutional-grade custody is scarce. BNY Mellon, State Street, and SC Ventures have entered, but pricing is high.
7. **Identity**: How does on-chain identity get represented? Bespoke KYC versus zk proof versus DID.
8. **Conflicts of law**: Issuer in Switzerland, holder in Korea, exchange in Singapore. Whose law applies in a dispute?
The pace at which these problems are solved will determine the pace at which tokenization grows.
22. Operating Checklist — Evaluating an RWA Issuance
A checklist for asset managers, corporates, and legal teams considering an RWA issuance.
1. **Legal structure**: Which SPV holds the asset? Choose among Cayman SPV, Swiss AG, Japanese SPC, Korean SPC.
2. **Jurisdiction selection**: When issuer, investor, and custodian sit in different jurisdictions, which law applies in a dispute?
3. **Token standard**: ERC-3643 vs ERC-1400 vs bespoke. Review compliance module options.
4. **Transfer agent**: Use a SEC-registered transfer agent (Securitize, DigiShares) or self-operate?
5. **KYC/AML**: Cadence of KYC at issuance plus re-verification at trade.
6. **Custody**: Choose among BNY Mellon, State Street, SEBA, Sygnum, Komainu.
7. **Secondary market**: Choose among ATS (US), MTF (EU), PTS (Japan).
8. **Settlement cash leg**: Choose among stablecoin (USDC, EURC), tokenized deposit (JPM Coin), CBDC.
9. **Oracle**: How will you operate NAV, interest rate, and FX oracles?
10. **Emergency stop**: Token recovery and freezing procedures for fraud, hack, or court order.
11. **Tax reporting**: Tax obligations of both issuer and holder.
12. **Consumer protection**: If retail investors are targeted, design cooling-off, disclosure, and dispute procedures.
13. **Reporting and audit**: Regular reporting and external audit of AUM, NAV, holder count, default rate.
14. **Migration**: A migration path for moving to better infrastructure later.
Answering these 14 reasonably is what makes a tokenized issuance meaningful. RWA is not just technology — it is **multi-layer integration of legal and operational infrastructure**.
23. The Future — What Comes After 2026
A final outlook for the next two to three years.
First, **deposit tokens vs stablecoins** will compete in earnest. Bank-issued deposit tokens like JPM Coin, Citi Token Services, and Standard Chartered's offerings could capture the cash leg of tokenized capital markets. Non-bank stablecoins (USDC, USDT) may concentrate on retail payment and remittance.
Second, **CBDCs and wholesale tokenization will couple**. As the Bank of Korea, the Bank of Japan, and the ECB experiment with wholesale CBDCs, the cash leg of tokenized capital markets could shift to CBDC. How this affects the stablecoin market is uncertain.
Third, **AI will meet RWA**. Credit analysis, default prediction, real-estate valuation, and fraud detection are all areas where AI is moving in. Maple, Centrifuge, and Goldfinch already run partial AI-based risk models.
Fourth, **the identity layer will standardize**. Today everyone runs their own KYC, but zk-KYC, DIDs, and soulbound tokens may emerge as standards. Get KYC'd once, reuse with many issuers.
Fifth, **Korea-Japan cross-border cooperation**. KOFIA and the Japanese JSDA have begun discussing mutual recognition of STs. A future in which Korean and Japanese STs trade on each other's exchanges is plausible.
Tokenization is no longer a possibility but a fact in progress. Capital markets in 2026 are already partly tokenized, and that share will grow quickly over the next five years.
24. Closing — Tokenization Is an Infrastructure Game
This essay was long, but the conclusion is simple. **RWA tokenization is an infrastructure issue, not a marketing issue**. The winner is not whoever issues tokens fastest, but whoever wires KYC, custody, settlement, and legal structure together best.
So the winners of 2026 will be of two types. First, **traditional asset managers and banks** like BlackRock, Franklin Templeton, and BNY Mellon that have absorbed tokenization infrastructure. Second, **infrastructure builders** like Securitize, Ondo, and Centrifuge that have absorbed issuers. Fintech and crypto-native issuers in between are likely to be absorbed by one side or the other.
In Korea, KASOM, SK, and Mirae Asset are pursuing the first model in consortium form. In Japan, Progmat and SBI DAH lean closer to the second. The US runs both lively in parallel. The EU, UK, UAE, Singapore, and Hong Kong compete in between.
Whether BCG's `$16T` projection for 2030 is right, I do not know. But it is clear that by then some non-trivial portion of capital markets will have moved on-chain. Whoever builds that infrastructure draws the power map of capital markets for the next five years.
References
- BlackRock BUIDL — [https://www.blackrock.com/us/individual/products/333806/blackrock-usd-institutional-digital-liquidity-fund](https://www.blackrock.com/us/individual/products/333806/blackrock-usd-institutional-digital-liquidity-fund)
- Ondo Finance — [https://ondo.finance/](https://ondo.finance/)
- Franklin Templeton OnChain — [https://www.franklintempleton.com/investments/options/money-market-funds](https://www.franklintempleton.com/investments/options/money-market-funds)
- JP Morgan Kinexys (formerly Onyx) — [https://www.jpmorgan.com/kinexys](https://www.jpmorgan.com/kinexys)
- Citi Token Services — [https://www.citigroup.com/global/services/transactional-services](https://www.citigroup.com/global/services/transactional-services)
- Securitize — [https://securitize.io/](https://securitize.io/)
- Polymath / Polymesh — [https://polymesh.network/](https://polymesh.network/)
- tZERO — [https://www.tzero.com/](https://www.tzero.com/)
- Backed Finance — [https://backed.fi/](https://backed.fi/)
- Maple Finance — [https://maple.finance/](https://maple.finance/)
- Centrifuge — [https://centrifuge.io/](https://centrifuge.io/)
- Goldfinch — [https://goldfinch.finance/](https://goldfinch.finance/)
- RealT — [https://realt.co/](https://realt.co/)
- Lofty — [https://www.lofty.ai/](https://www.lofty.ai/)
- ERC-3643 — [https://erc3643.org/](https://erc3643.org/)
- Tokeny — [https://tokeny.com/](https://tokeny.com/)
- Hashnote USYC — [https://hashnote.com/](https://hashnote.com/)
- Superstate USTB — [https://superstate.co/](https://superstate.co/)
- WisdomTree Prime — [https://www.wisdomtree.com/prime](https://www.wisdomtree.com/prime)
- BCG Tokenization Report 2030 — [https://www.bcg.com/publications/2022/relevance-of-on-chain-asset-tokenization](https://www.bcg.com/publications/2022/relevance-of-on-chain-asset-tokenization)
- Progmat (MUFG) — [https://progmat.co.jp/](https://progmat.co.jp/)
- BOOSTRY — [https://boostry.co.jp/](https://boostry.co.jp/)
- SBI Digital Asset Holdings — [https://sbidah.co.jp/](https://sbidah.co.jp/)
- Osaka Digital Exchange — [https://www.odx.co.jp/](https://www.odx.co.jp/)
- Nomura Komainu — [https://www.komainu.com/](https://www.komainu.com/)
- Japan FSA — [https://www.fsa.go.jp/](https://www.fsa.go.jp/)
- MAS Project Guardian — [https://www.mas.gov.sg/schemes-and-initiatives/project-guardian](https://www.mas.gov.sg/schemes-and-initiatives/project-guardian)
- BIS Project Agorá — [https://www.bis.org/about/bisih/topics/fmis/agora.htm](https://www.bis.org/about/bisih/topics/fmis/agora.htm)
- BIS Project mBridge — [https://www.bis.org/about/bisih/topics/cbdc/mcbdc_bridge.htm](https://www.bis.org/about/bisih/topics/cbdc/mcbdc_bridge.htm)
- EU MiCA — [https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32023R1114](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32023R1114)
- EU DLT Pilot Regime — [https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32022R0858](https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32022R0858)
- HK SFC VATP — [https://www.sfc.hk/en/Regulatory-functions/Intermediaries/Licensing/Virtual-asset-trading-platforms-operators](https://www.sfc.hk/en/Regulatory-functions/Intermediaries/Licensing/Virtual-asset-trading-platforms-operators)
- Dubai VARA — [https://www.vara.ae/](https://www.vara.ae/)
- Korea FSC STO Guidelines — [https://www.fsc.go.kr/](https://www.fsc.go.kr/)
- Korea Securities Depository — [https://www.ksd.or.kr/](https://www.ksd.or.kr/)
- KakaoBank — [https://www.kakaobank.com/](https://www.kakaobank.com/)
- Mirae Asset Securities — [https://securities.miraeasset.com/](https://securities.miraeasset.com/)
- BNY Mellon Digital Assets — [https://www.bny.com/](https://www.bny.com/)
- SEBA Bank (now AMINA Bank) — [https://www.aminagroup.com/](https://www.aminagroup.com/)
현재 단락 (1/530)
When DeFi Summer started in 2020, Wall Street called it "a new format for the casino." When BlackRoc...