分散型クレジットスコアリングアルゴリズム
中央集権的な信用情報機関に頼らず、オンチェーンの財務履歴や分散型IDを用いてユーザーの信用力を評価するアルゴリズム。
従来のDeFiレンディングは過剰担保(例:100ドルの借入に150ドルのETHをロックする)が必要でした。分散型スコアリングは、デフォルト(債務不履行)時に評判トークンを剥奪するなどの経済的ペナルティを作ることで、この非効率性を解決することを目指しています。
graph LR
Center["分散型クレジットスコアリングアルゴリズム"]:::main
Rel_decentralized_cloud_computing["decentralized-cloud-computing"]:::related -.-> Center
click Rel_decentralized_cloud_computing "/terms/decentralized-cloud-computing"
Rel_decentralized_derivatives_pricing_models["decentralized-derivatives-pricing-models"]:::related -.-> Center
click Rel_decentralized_derivatives_pricing_models "/terms/decentralized-derivatives-pricing-models"
Rel_decentralized_perpetual_futures_funding["decentralized-perpetual-futures-funding"]:::related -.-> Center
click Rel_decentralized_perpetual_futures_funding "/terms/decentralized-perpetual-futures-funding"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧒 5歳でもわかるように説明
現実世界では、信用情報機関があなたの借金をすべて記録しています。分散型スコアリングは、ビデオゲームの評判システムのようなものです。アルゴリズムは、あなたの公開ステータス(クリアしたクエスト数、取引したゴールド量)を見て、あなたの本名を知らなくても「信頼できるプレイヤーか」を判断します。
🤓 Expert Deep Dive
最大の課題は「シビル攻撃(Sybil Attack)」です。ウォレットの作成は無料であるため、信用スコアが低くなったユーザーはウォレットを捨てて新しくやり直すことができます。そのため、DeFiの無担保ローンは、ENSドメインの保有や資産のステーキングなど、「アイデンティティのコスト(Cost of Identity)」に評判を結びつけることに依存しています。
❓ よくある質問
Why does DeFi need credit scoring?
Currently, to borrow money in DeFi, you usually have to deposit more money than you borrow (overcollateralization) because lenders don't know who you are. Credit scoring allows for undercollateralized lending, where a good reputation lets you borrow more efficiently.
How can a credit score be private if the blockchain is public?
By using Zero-Knowledge Proofs (ZKPs). A ZKP allows a system to cryptographically verify that your credit score is 'above 700' without actually revealing the number or your identity to the public ledger.
What happens if I default on a decentralized loan?
Since you are pseudonymous, traditional debt collectors can't find you. However, your wallet's decentralized credit score will plummet, and any non-transferable reputation tokens (Soulbound Tokens) will reflect the default, locking you out of future DeFi opportunities.