📄 Chapter 4: Phase 1 Data Format

WIA-FIN-005: Central Bank Digital Currency Standard | Reading Time: 32 minutes

Foundation of Interoperability

Phase 1 of the WIA-FIN-005 standard establishes the foundational data formats that enable CBDC interoperability. Just as HTML provides a universal format for web pages regardless of the browser or operating system, Phase 1 provides universal data structures for CBDC transactions, wallets, and cryptographic operations.

Why Data Format Comes First

Before CBDCs can communicate through APIs or execute cross-border protocols, they must speak a common language. Phase 1 defines this language through standardized JSON schemas, data encoding rules, and cryptographic primitives that any CBDC implementation can adopt.

Universal Transaction Schema

The core of Phase 1 is the Universal Transaction Format, which can represent any CBDC transaction while accommodating different architectural models.

Basic Transaction Structure

{
  "version": "1.0.0",
  "standard": "WIA-FIN-005",
  "transactionId": "tx_2025123100001234",
  "timestamp": "2025-12-25T10:30:00.000Z",
  "currency": {
    "code": "CNY",
    "cbdcId": "digital-yuan",
    "issuer": "PBOC"
  },
  "type": "transfer",
  "sender": {
    "walletId": "CN-1234567890",
    "publicKey": "02a1b2c3d4e5f6...",
    "signature": "3045022100..."
  },
  "recipient": {
    "walletId": "SG-9876543210",
    "cbdcId": "digital-sgd"
  },
  "amount": {
    "value": "1000.00",
    "precision": 2
  },
  "fee": {
    "value": "0.10",
    "payer": "sender"
  },
  "privacy": {
    "level": "standard",
    "technique": "zksnark",
    "proof": "..."
  },
  "metadata": {
    "purpose": "payment_for_goods",
    "reference": "INV-2025-001",
    "memo": "Coffee beans shipment"
  },
  "compliance": {
    "aml": true,
    "sanctions": "checked",
    "taxReporting": "required"
  }
}

Transaction Types

Type Description Use Cases Required Fields
transfer Simple payment from one wallet to another P2P payments, purchases, remittances sender, recipient, amount
mint Central bank creates new CBDC Monetary policy, currency issuance issuer, recipient, amount
burn CBDC removal from circulation Monetary contraction, currency withdrawal holder, amount, authority
exchange Cross-currency CBDC swap Cross-border payments, FX operations sender, recipient, amounts (both currencies)
contract Smart contract execution Programmable payments, DeFi contract_address, function, parameters
stake Lock CBDC for consensus participation PoS consensus, governance staker, amount, duration

Wallet Format

WIA-FIN-005 defines a standard wallet format that supports both custodial and non-custodial models:

{
  "walletId": "CN-1234567890",
  "version": "1.0.0",
  "standard": "WIA-FIN-005",
  "cbdcId": "digital-yuan",
  "type": "non_custodial",
  "created": "2025-01-15T00:00:00Z",
  "owner": {
    "type": "individual",
    "verificationLevel": "tier2",
    "publicKey": "02a1b2c3d4e5f6...",
    "did": "did:wia:CN-1234567890"
  },
  "balance": {
    "available": "5000.00",
    "pending": "100.00",
    "locked": "500.00"
  },
  "limits": {
    "dailyTransaction": "10000.00",
    "singleTransaction": "5000.00",
    "monthlyVolume": "100000.00"
  },
  "features": {
    "offlinePayments": true,
    "smartContracts": true,
    "multiSignature": false,
    "crossBorder": true
  },
  "privacy": {
    "defaultLevel": "standard",
    "supportedTechniques": ["zksnark", "ring_signature"]
  }
}

Wallet Types

Cryptographic Standards

Phase 1 specifies quantum-resistant cryptography as the default, with backward compatibility for current systems.

Signature Schemes

Scheme Quantum Safe Key Size Signature Size Use Case
CRYSTALS-Dilithium ✅ Yes 2.5 KB 3.3 KB Primary (recommended)
FALCON ✅ Yes 1.8 KB 1.3 KB Compact signatures
SPHINCS+ ✅ Yes 64 B 29 KB Hash-based fallback
ECDSA secp256k1 ❌ No 32 B 71 B Legacy compatibility
Ed25519 ❌ No 32 B 64 B Legacy compatibility

Hash Functions

Encryption

Privacy Mechanisms

Phase 1 defines multiple privacy preservation techniques that jurisdictions can choose based on their regulatory requirements:

1. Zero-Knowledge Proofs

Allow transaction validation without revealing transaction details:

{
  "privacy": {
    "technique": "zksnark",
    "level": "high",
    "proof": {
      "type": "groth16",
      "publicInputs": ["commitment_root", "nullifier"],
      "proof": "0x1a2b3c4d...",
      "verificationKey": "0x5e6f7g8h..."
    },
    "reveals": {
      "amount": false,
      "sender": false,
      "recipient": true,
      "timestamp": true
    }
  }
}

2. Confidential Transactions

Hide transaction amounts using Pedersen commitments:

{
  "amount": {
    "commitment": "0x9a8b7c6d...",
    "rangeProof": "0x1f2e3d4c...",
    "blindingFactor": "hidden"
  }
}

3. Tiered Anonymity

Different privacy levels based on transaction characteristics:

Tier Transaction Size Identity Verification Transaction Privacy
Tier 1 < $100 None required Full privacy (like cash)
Tier 2 $100 - $1,000 Basic verification Pseudonymous
Tier 3 $1,000 - $10,000 Full KYC Amounts hidden, parties revealed
Tier 4 > $10,000 Enhanced due diligence Full transparency to authorities

Encoding and Serialization

WIA-FIN-005 specifies standard encoding formats for all data:

Transaction Encoding

Identifiers

{
  "walletId": "CN-1234567890",           // Format: {COUNTRY}-{NUMBER}
  "transactionId": "tx_2025123100001234", // Format: tx_{YYYYMMDD}{SEQUENCE}
  "cbdcId": "digital-yuan",               // Lowercase, hyphen-separated
  "did": "did:wia:CN-1234567890"          // Decentralized Identifier
}

Amount Representation

Timestamp Format

Validation Rules

Phase 1 defines comprehensive validation rules that all compliant CBDCs must enforce:

Transaction Validation

  1. Signature Verification: Valid cryptographic signature from sender
  2. Balance Check: Sender has sufficient balance plus fees
  3. Amount Validity: Amount > 0 and within limits
  4. Timestamp Validity: Within acceptable clock drift (±5 minutes)
  5. Nonce/Sequence: Prevents replay attacks
  6. Format Compliance: All required fields present and correctly formatted
  7. Privacy Proof: Valid zero-knowledge proof if privacy is enabled

Wallet Validation

  1. Public Key Format: Valid for chosen cryptographic scheme
  2. Checksum: Wallet ID includes error-detecting checksum
  3. Unique Identifier: No duplicate wallet IDs in system
  4. Verification Level: Matches declared transaction capabilities

Extensibility

Phase 1 includes extension mechanisms for future innovation:

Custom Fields

Implementations can add custom fields in designated extension spaces:

{
  "standard": "WIA-FIN-005",
  "type": "transfer",
  // ... standard fields ...
  "extensions": {
    "vendor": "central-bank-xyz",
    "customFields": {
      "riskScore": 0.12,
      "merchantCategory": "retail",
      "loyaltyPoints": 100
    }
  }
}

Version Compatibility

Reference Implementation

WIA provides open-source reference implementations in multiple programming languages:

TypeScript Example

import { WIACBDC, Transaction, TransactionType } from '@wia/cbdc';

const cbdc = new WIACBDC({
  cbdcId: 'digital-yuan',
  privateKey: '0x...'
});

// Create a transaction
const tx: Transaction = {
  type: TransactionType.TRANSFER,
  recipient: {
    walletId: 'SG-9876543210',
    cbdcId: 'digital-sgd'
  },
  amount: {
    value: '1000.00',
    precision: 2
  },
  privacy: {
    level: 'standard',
    technique: 'zksnark'
  }
};

// Sign and submit
const signedTx = await cbdc.signTransaction(tx);
const result = await cbdc.submitTransaction(signedTx);

console.log(`Transaction ID: ${result.transactionId}`);

Validation Example

import { validateTransaction, ValidationResult } from '@wia/cbdc';

const result: ValidationResult = validateTransaction(transaction);

if (result.valid) {
  console.log('Transaction is valid');
} else {
  console.log('Validation errors:', result.errors);
  // Example errors:
  // - "Invalid signature"
  // - "Insufficient balance"
  // - "Amount exceeds daily limit"
}

Testing and Compliance

WIA provides comprehensive test suites for Phase 1 compliance:

Test Categories

Certification Process

  1. Self-Testing: Run open-source test suite against your implementation
  2. Documentation: Submit implementation details and test results
  3. Peer Review: Community review of implementation approach
  4. Third-Party Audit: Independent verification of compliance
  5. Certification: WIA certification badge and listing

Summary

Phase 1 provides the essential foundation for CBDC interoperability:

Next: Chapter 5 explores Phase 2, which builds on these data formats to define standardized APIs for CBDC operations, enabling developers to build applications that work across multiple CBDC systems.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.

Korea Industrial Cluster, National Strategic Technologies, Workforce Development

Korea operates a comprehensive industrial cluster system. Korea Top 12 National Strategic Technologies (5th Science and Technology Master Plan 2023-2027): (1) Semiconductors and Displays (2) Secondary Batteries (3) Advanced Mobility (autonomous driving, UAM) (4) Next-Generation Nuclear (SMR) (5) Advanced Bio (6) Aerospace and Marine (7) Hydrogen (8) Cybersecurity (9) Artificial Intelligence (10) Next-Generation Communications (11) Advanced Robotics and Manufacturing (12) Quantum. 12 fields receive direct investment of 5 trillion KRW annually, cumulative 30 trillion KRW by 2030. Korea Major Industrial Clusters: Pangyo IT Cluster (1,300+ companies, 100 trillion KRW revenue), Gangnam Fintech (200+ companies), Songdo BT Bio Cluster, Daegu Medical Cluster, Ulsan Industry (shipbuilding, petrochemicals, automotive), Changwon Machinery, Changwon National Industrial Complex, Siheung and Banwol (SME manufacturing), Yeosu Petrochemicals, Pyeongtaek Semiconductor (Samsung Electronics Pyeongtaek Campus), Icheon and Cheongju Semiconductor (SK hynix Icheon and Cheongju Campuses), Asan Display (Samsung Display Asan Campus), Gumi Mobile (Samsung Gumi Campus), Pohang Steel (POSCO Pohang Steel Mill), Gwangyang Steel (POSCO Gwangyang Steel Mill), Dangjin Steel (Hyundai Steel Dangjin), Ulsan Automotive (Hyundai Motor Ulsan Plant), Asan Automotive (Hyundai Asan Plant), Kia Gwangju and Sohari, POSCO Gwangyang and Pohang Steel Mills, SK hynix Icheon and Cheongju, Samsung Electronics Hwaseong, Giheung, Pyeongtaek, Onyang, Cheonan, Asan Semiconductor Facilities. Major Industrial Complexes and Techno Valleys: Pangyo Techno Valley (1st 800 companies, 2nd 600 companies, 3rd 1,200 companies), Dongtan Techno Valley, Gwanggyo Techno Valley, Songdo IBD, Yeouido Financial District, Gangnam Teheran-ro Valley, Sihwa, Banwol, Gumi, Ulsan, Changwon, Geoje, Yeosu, Ulsan Mipo, Onsan, Cheongju, Iksan, Gwangyang, Yeosu, POSCO Gwangyang Steel Mill, Asan Bay, Seosan, Songdo, Incheon Airport, Sejong, Cheongna, Geomdan, Pyeongtaek Automotive Industrial Complex, Giheung Semiconductor Complex, Icheon Semiconductor Complex, Asan Display Complex, Gumi Mobile Complex, Changwon National Industrial Complex, Ulsan Mipo National Industrial Complex, Yeosu National Industrial Complex, Onsan National Industrial Complex. Korea Workforce Statistics: STEM undergraduate students 700,000 (26% of all university students), STEM graduate students 170,000, PhD researchers 140,000, STEM doctorates conferred 8,000 annually (Seoul National University 1,200, KAIST 800, POSTECH 400, Yonsei University 700, Korea University 600, UNIST 250, DGIST 100, GIST 200, KISTI 50, KIST and ETRI postdoctoral programs 1,000), information security experts 300,000 (KISA-trained and private), AI experts 50,000 (NIA, IITP, NIPA, Samsung, LG, SK, NAVER, Kakao trained), semiconductor experts 260,000 (Samsung Electronics 60,000, SK hynix 30,000, DB HiTek, SK siltron). National R&D Project Operation: National R&D projects 100,000+ annually (MSIT 35,000, MOTIE 25,000, MSS 20,000, MOE 15,000, others 5,000), R&D participating institutions 25,000+, R&D participating researchers 530,000, National R&D output (papers, patents) 540,000 annually. Korea Corporate R&D Investment Top 10 (2024): Samsung Electronics 28 trillion KRW, LG Electronics 9 trillion KRW, SK hynix 8 trillion KRW, Hyundai Motor 6 trillion KRW, Kia 4 trillion KRW, LG Chem 3.5 trillion KRW, LG Display 3.2 trillion KRW, POSCO 3 trillion KRW, Samsung SDI 2.7 trillion KRW, SK Innovation 2.5 trillion KRW.