1단계 개요
1단계는 자산 토큰화를 위한 표준화된 데이터 구조를 정의합니다. 상호 운용 가능한 토큰 메타데이터, 소유권 기록, 평가 데이터 및 규정 준수 속성에 대한 기초를 제공합니다. 이 단계를 완료하면 토큰이 모든 WIA 호환 플랫폼, 지갑 및 거래소에서 인식되고 처리될 수 있습니다.
🎯 1단계 목표
토큰 메타데이터, 자산 세부 정보, 소유권 기록 및 규정 준수 속성에 대한 보편적으로 인식되는 JSON 스키마를 생성합니다. 부동산, 미술품, 상품, 증권에 대한 자산별 확장을 제공합니다. 모든 WIA-FIN-008 호환 플랫폼 간의 완전한 상호 운용성을 보장합니다.
코어 토큰 메타데이터
모든 WIA-FIN-008 토큰은 다음 메타데이터 필드를 포함해야 합니다:
{
"tokenId": "0x1234...5678",
"standard": "WIA-FIN-008",
"version": "1.0",
"name": "Austin Office Building Token",
"symbol": "AOBT",
"assetClass": "real_estate",
"issuer": {
"name": "Austin Real Estate LLC",
"jurisdiction": "US",
"registrationNumber": "EIN 12-3456789",
"contactEmail": "info@austinrealestate.com"
},
"totalSupply": 10000000,
"decimals": 0,
"issuedAt": "2024-01-15T00:00:00Z",
"createdAt": "2024-01-10T12:00:00Z",
"updatedAt": "2024-01-15T14:30:00Z"
}자산 세부 정보
자산 세부 정보는 기초 자산을 설명합니다:
{
"asset": {
"id": "asset-12345",
"name": "Austin Downtown Office Building",
"description": "Class A 상업용 사무실 건물 15층",
"assetClass": "real_estate",
"subClass": "commercial_office",
"location": {
"address": "123 Congress Avenue",
"city": "Austin",
"state": "TX",
"postalCode": "78701",
"country": "US",
"coordinates": {
"lat": 30.2672,
"lon": -97.7431
}
},
"valuation": {
"initialValue": 10000000,
"currency": "USD",
"valuationDate": "2024-01-10",
"valuationMethod": "professional_appraisal",
"appraiser": "Texas Appraisal Group",
"nextValuationDate": "2024-07-10"
},
"documents": [
{
"type": "deed",
"url": "ipfs://Qm...",
"hash": "0xabc123...",
"uploadedAt": "2024-01-10T10:00:00Z"
},
{
"type": "appraisal",
"url": "ipfs://Qm...",
"hash": "0xdef456...",
"uploadedAt": "2024-01-10T11:00:00Z"
}
]
}
}규정 준수 속성
규정 준수 속성은 전송 제한 및 투자자 요구사항을 정의합니다:
{
"compliance": {
"regulation": "Reg D 506(c)",
"secRegistration": "Form D filed 2024-01-15",
"accreditedOnly": true,
"allowedJurisdictions": ["US", "CA", "GB", "EU"],
"blockedJurisdictions": ["KP", "IR", "SY"],
"kycRequired": true,
"kycProvider": "Onfido",
"amlRequired": true,
"lockupPeriod": {
"duration": 12,
"unit": "months",
"startDate": "2024-01-15"
},
"transferRestrictions": {
"minimumHoldingPeriod": 0,
"maximumOwnershipPercent": 10,
"requireIssuerApproval": false
}
}
}자산 클래스별 스키마
부동산
{
"realEstate": {
"propertyType": "commercial_office",
"totalArea": 50000,
"areaUnit": "sqft",
"yearBuilt": 2018,
"floors": 15,
"occupancyRate": 92,
"tenants": [
{
"name": "Tech Company Inc",
"leaseStart": "2022-01-01",
"leaseEnd": "2027-12-31",
"monthlyRent": 75000,
"squareFootage": 20000
}
],
"annualRevenue": 900000,
"annualExpenses": 350000,
"netOperatingIncome": 550000
}
}미술품
{
"art": {
"artist": "Pablo Picasso",
"title": "Les Demoiselles d'Avignon",
"year": 1907,
"medium": "Oil on canvas",
"dimensions": {
"height": 243.9,
"width": 233.7,
"unit": "cm"
},
"provenance": [
{
"owner": "Museum of Modern Art",
"period": "1937-2024",
"acquisitionMethod": "purchase"
}
],
"authentication": {
"certificate": "ipfs://Qm...",
"expert": "Sotheby's Art Authentication",
"date": "2024-01-05"
},
"insurance": {
"provider": "AXA Art",
"policyNumber": "ART-123456",
"coverage": 50000000,
"expiryDate": "2025-01-05"
}
}
}소유권 기록
온체인 및 오프체인 소유권 기록을 추적합니다:
{
"ownership": {
"totalTokens": 10000000,
"circulatingTokens": 8500000,
"holders": 423,
"distribution": [
{
"address": "0xabc...123",
"tokens": 1000000,
"percentage": 10.0,
"acquiredAt": "2024-01-15T10:00:00Z",
"kycVerified": true
},
{
"address": "0xdef...456",
"tokens": 500000,
"percentage": 5.0,
"acquiredAt": "2024-01-16T14:30:00Z",
"kycVerified": true
}
],
"transfers": [
{
"from": "0x000...000",
"to": "0xabc...123",
"tokens": 1000000,
"timestamp": "2024-01-15T10:00:00Z",
"txHash": "0xtx...123"
}
]
}
}🚀 핵심 요점
1단계 데이터 형식은 모든 자산 토큰화 플랫폼의 기초를 형성합니다. 표준화된 JSON 스키마를 따르면 토큰이 모든 WIA 호환 시스템에서 보편적으로 인식되고 처리될 수 있습니다. 이는 교환 가능성, 유동성 및 투자자 신뢰를 가능하게 합니다.
다음 단계
챕터 5에서는 2단계를 탐구합니다: API—토큰 생성, 전송, 준수 확인 및 투자자 관리를 위한 RESTful 및 GraphQL 엔드포인트.