ソウルバウンドトークン (SBT)

譲渡不可能なNFT。

Soulbound Tokens (SBTs) は、分散型エコシステム内での個人やエンティティのアイデンティティ、所属、または実績を表すために設計された、譲渡不可能な Non-Fungible Token (NFT) の一種として提案されています。購入、販売、または取引が可能な標準的な NFT とは異なり、SBT はデジタルアイデンティティクレデンシャルに似て、特定のウォレットアドレスに永続的または半永続的にバインドされます。Vitalik Buterin らによって導入されたこのコンセプトは、Sybil attack や分散型アイデンティティ管理の問題に対処することを目的としています。SBT はさまざまなエンティティ(例:大学の学位、DAO のメンバーシップ)によって発行され、集約されて包括的なデジタルレピュテーションを形成することができます。技術的な実装には通常、標準的な ERC-721 または ERC-1155 トークンコントラクトが含まれますが、重要な違いは、スマートコントラクトロジックまたはオフチェーンアテステーションによって管理されることが多い、強制的な譲渡不可能性です。課題には、プライバシーに関する懸念、特定の SBT に関連する社会的スティグマの可能性、およびそれらの発行と検証のための堅牢な標準の開発が含まれます。

        graph LR
  Center["ソウルバウンドトークン (SBT)"]:::main
  Rel_non_fungible_token_nft["non-fungible-token-nft"]:::related -.-> Center
  click Rel_non_fungible_token_nft "/terms/non-fungible-token-nft"
  Rel_nft["nft"]:::related -.-> Center
  click Rel_nft "/terms/nft"
  Rel_blockchain["blockchain"]:::related -.-> Center
  click Rel_blockchain "/terms/blockchain"
  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;

      

🧠 理解度チェック

1 / 1

🧒 5歳でもわかるように説明

譲ったり売ったりできない特別なデジタルバッジのようなものです。学校の卒業証書や会員証のように、オンラインでのあなたの身元や実績を証明します。

🤓 Expert Deep Dive

SBTs represent a paradigm shift from fungible and transferable NFTs towards verifiable credentials. Their non-transferability is a core design choice, differentiating them from existing NFT standards. While ERC-721 can be adapted, dedicated standards (like ERC-5114, though still evolving) might emerge to better handle SBT semantics, such as revocation and attestation management. The 'soul' aspect implies a direct link to a wallet, raising questions about wallet ownership vs. individual identity and the potential for wallet fragmentation to dilute reputation. Privacy is a significant concern; selective disclosure mechanisms or zero-knowledge proofs may be necessary to allow users to control which SBTs are revealed in different contexts. The economic implications are also profound, potentially creating new markets for reputation and identity services.

📚 出典