탈중앙화 신용 평가 알고리즘

중앙화된 신용 평가 기관에 의존하지 않고 온체인 금융 기록과 탈중앙화 신원 증명을 사용하여 사용자의 신용도를 평가하는 알고리즘.

전통적인 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)'입니다. 지갑 생성은 무료이기 때문에 신용 등급이 낮은 사용자는 지갑을 버리고 새 지갑을 만들면 그만입니다. 따라서 온체인 평판 시스템은 채무 불이행 시 경제적 타격을 주기 위해 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.

📚 출처