A Soulbound Token (SBT) is a non-transferable digital token that is permanently bound to a specific blockchain wallet address, referred to as a “soul.” Unlike conventional non-fungible tokens (NFTs) or fungible cryptocurrencies, SBTs cannot be sold, traded, or moved to another wallet once they have been issued. They are designed to serve as on-chain representations of identity, credentials, reputation, affiliations, memberships, and social commitments, forming the foundation of what their creators envision as a “Decentralized Society” (DeSoc).
The concept was formally introduced in a May 2022 paper titled “Decentralized Society: Finding Web3’s Soul” by Ethereum co-founder Vitalik Buterin, economist E. Glen Weyl, and lawyer Puja Ohlhaver. The paper argued that Web3’s overwhelming focus on transferable, financialized assets (tokens and NFTs) had created a system incapable of representing the rich social relationships, trust networks, and non-financial commitments that underpin real human societies. SBTs were proposed as the primitive that could fill this gap – tokens that carry meaning precisely because they cannot be bought or sold.
Technically, SBTs use the ERC-721 NFT standard with transfer functions disabled or restricted, as codified in Ethereum Improvement Proposal EIP-5192 (“Minimal Soulbound NFTs”). When an SBT is minted to a wallet, the smart contract either permanently locks the token to that address or allows revocation only by the issuer. This design ensures that the token’s presence in a wallet is a reliable signal of a genuine relationship between the holder and the issuer – a university degree, a work history, an event attendance, or a community membership – rather than something that could be acquired on the open market.
The implications of SBTs extend far beyond simple credentialing. They could enable undercollateralized lending in DeFi (where a borrower’s on-chain reputation serves as collateral), sybil-resistant governance (where voting power is tied to genuine participation rather than token purchases), and decentralized identity systems that give individuals control over their own data without relying on centralized identity providers like Google or Facebook.
Origin & History
2022: The term “soulbound” first entered the crypto lexicon when Vitalik Buterin drew inspiration from the massively multiplayer online game World of Warcraft, where certain powerful items are “soulbound” – once picked up by a character, they cannot be traded to other players. Buterin referenced this concept in a blog post discussing the limitations of purely financialized NFTs and the need for non-transferable tokens.blog post
January 2022: Vitalik Buterin published a blog post titled “Soulbound” on his personal website, formally proposing the idea of non-transferable NFTs for the Ethereum ecosystem. He argued that governance tokens like ENS and other DAO tokens should be soulbound to prevent plutocratic capture through open-market purchases by wealthy actors.
May 2022: The landmark paper “Decentralized Society: Finding Web3’s Soul” was published by Vitalik Buterin, E. Glen Weyl, and Puja Ohlhaver. The paper laid out a detailed vision of how SBTs could form the basis of a “Decentralized Society” (DeSoc) where social relationships and commitments are encoded on-chain without being financialized.
September 2022: EIP-5192 (“Minimal Soulbound NFTs”) was finalized as an Ethereum standard. Authored by Tim Dauberschuetz and Anders, this proposal extended the ERC-721 standard with a minimal interface for querying whether a token is locked (non-transferable), providing a standardized way for smart contracts and applications to identify soulbound tokens.
October 2022: Binance launched Binance Account Bound (BAB) tokens, one of the first large-scale SBT implementations. BAB tokens served as on-chain proof that a user had completed Binance’s KYC verification, enabling participation in DeFi protocols that required identity verification without exposing personal data.
2023: Multiple projects adopted SBTs for diverse use cases. Gitcoin Passport used soulbound attestations for sybil resistance in quadratic funding rounds. Ethereum Name Service (ENS) explored soulbound domain names. Academic institutions began experimenting with on-chain diploma issuance as SBTs.
2024–2026: The SBT ecosystem matured with the development of complementary standards including EIP-4973 (Account-bound Tokens), EIP-5484 (Consensual Soulbound Tokens requiring holder consent), and EIP-6239 (Semantic Soulbound Tokens with metadata standards). Layer-2 networks like Polygon and Optimism began hosting SBT-based reputation systems to reduce gas costs for mass adoption.
“The key property of a soulbound item is that it represents something that has been earned or given, not something that has been bought.” – Vitalik Buterin, “Soulbound” blog post (January 2022)
In Simple Terms
Think of a Soulbound Token like your university diploma. It was issued specifically to you because you earned it, and you cannot sell it to someone else on eBay and have it still mean anything. If someone sees it in your possession, they know you actually did the work. SBTs work the same way – they sit in your wallet as proof of something you genuinely did, earned, or committed to.
Imagine your driver’s license. It is issued by the government, it has your name on it, and it proves you passed a driving test. You cannot hand it to a friend and have it serve as proof that they can drive. A Soulbound Token is the blockchain equivalent – a non-transferable credential bound to your digital identity.
Consider loyalty stamps at your favorite coffee shop. Each stamp proves you actually visited and bought a coffee. You cannot peel off stamps and give them to someone else. SBTs function similarly on the blockchain – they accumulate in your wallet as a visible record of your genuine participation and engagement.
Think of it like your medical records. They are tied to you, they document your real health history, and they would be meaningless (and dangerous) if transferred to someone else. SBTs encode similar personal truths – your achievements, memberships, and commitments – in a way that is permanently tied to your identity.
Picture a tattoo versus a piece of jewelry. Jewelry (like regular NFTs) can be taken off and given away or sold. A tattoo (like an SBT) is permanently part of you. It signals a commitment, an experience, or an identity that cannot be stripped away or transferred.
Important: SBTs are still an emerging technology. While some implementations allow the issuer to revoke a token (e.g., revoking a credential), most do not allow the holder to transfer it. Privacy concerns remain significant – because SBTs are on-chain, they could reveal sensitive information about a person’s affiliations, health records, or legal history. Solutions involving zero-knowledge proofs are being developed to allow selective disclosure without exposing the underlying data.
Key Technical Features
EIP-5192: Minimal Soulbound NFTs
Extends the ERC-721 standard with a `locked()` function that returns a boolean indicating whether a token is transferable
Emits a `Locked(uint256 tokenId)` event when a token becomes soulbound and an `Unlocked(uint256 tokenId)` event if it is ever released
Contracts can make tokens permanently locked from mint or conditionally lockable based on business logic
Interfaces with existing NFT infrastructure (wallets, explorers, marketplaces) with minimal changes – marketplaces simply detect the locked status and disable trading
Smart Contract Architecture
SBT contracts typically override the `_beforeTokenTransfer` hook in ERC-721 to revert any transfer transaction, effectively making the token immovable
The `transferFrom()` and `safeTransferFrom()` functions are either removed or hardcoded to revert with a custom error like `SoulboundTokenNotTransferable()`
Issuer addresses are stored in contract state, allowing only authorized issuers to mint and optionally revoke tokens
Multi-issuer architectures allow different organizations (universities, DAOs, employers) to issue SBTs to the same wallet
How a Soulbound Token Works
An issuing entity (a university, DAO, employer, or protocol) deploys an SBT smart contract on Ethereum or a compatible chain
The issuer calls the `mint()` function, specifying the recipient wallet address and token metadata (credential type, date issued, details)
The smart contract creates an ERC-721-compatible token and permanently assigns it to the recipient’s wallet, with the `locked` flag set to `true`
Any attempt to call `transferFrom()` on the token reverts the transaction, preventing the token from moving to another address
The token’s metadata (stored on IPFS or on-chain) contains the credential information – degree name, organization, date, skills, etc.
Third-party applications (DeFi protocols, DAO governance, job platforms) can query the recipient’s wallet for SBTs and verify credentials without any centralized authority
If the credential expires or is revoked, the issuer can call a `revoke()` function that burns the token or marks it as invalid
Privacy and Zero-Knowledge Integration
Raw SBTs on public blockchains expose all credentials to anyone who views the wallet, creating significant privacy risks
Zero-knowledge proof (ZKP) systems allow holders to prove they possess specific SBTs without revealing the full set of tokens in their wallet
Projects like Sismo and Semaphore enable ZK-based selective disclosure of SBT credentials
Future implementations may store SBT data in encrypted form, with decryption keys shared only through authorized channels
Verifiable credential standards (W3C DID and VC) are being integrated with SBT frameworks to enable interoperability between on-chain and off-chain identity systems
Recovery Mechanisms
Since SBTs cannot be transferred, losing access to a wallet means losing all associated credentials
Social recovery mechanisms (as proposed in Buterin’s DeSoc paper) allow a designated group of “guardians” to authorize migrating SBTs to a new wallet
Community-based recovery relies on a quorum of trusted contacts confirming the identity of the person requesting recovery
Some implementations use multi-signature schemes where both the holder and issuer must approve any migration
Advantages & Disadvantages
Aspect
Details
Non-Transferable Trust
Because SBTs cannot be bought or sold, their presence in a wallet is a genuine signal of earned credentials, real participation, or authentic affiliations – solving the fundamental problem of purchased influence in DAOs and DeFi.
Sybil Resistance
SBTs enable protocols to distinguish between unique humans and bot-operated wallets by requiring credential-based verification, making quadratic voting, airdrops, and community grants far more resistant to manipulation by fake accounts.
Undercollateralized DeFi Lending
A wallet rich in reputation SBTs (employment history, loan repayment records, community standing) could qualify for lending with reduced collateral requirements, unlocking credit markets currently inaccessible in fully collateralized DeFi.
Decentralized Identity Ownership
Unlike centralized identity providers (Google, Facebook), SBTs give individuals direct control over their credentials without a single corporate entity owning or monetizing their personal data.
Composable Reputation
SBTs from multiple issuers accumulate in a single wallet, creating a composable, cross-platform reputation that any dApp can read – a university SBT, a work history SBT, and a community contribution SBT all visible together.
Privacy Risks
On-chain SBTs expose credential information to the entire public blockchain, potentially revealing sensitive details about a person’s employment, health, legal history, or political affiliations without their ongoing consent.
Key Loss Vulnerability
Losing access to a wallet means losing all associated SBTs and the reputation they represent, with no straightforward recovery mechanism in most current implementations. Social recovery proposals exist but add significant complexity.
Issuer Centralization
The value of an SBT depends entirely on trust in the issuing entity. If a corrupt university issues fake degree SBTs, the system degrades. There is no decentralized mechanism to validate the real-world truth of an SBT’s claim.
Risk Management
Private Key and Wallet Security
SBTs amplify the consequences of wallet compromise since credentials cannot simply be re-minted to a new address without issuer cooperation. Users should employ hardware wallets, multi-signature setups, and social recovery guardians for wallets holding important SBTs. Regular backup of seed phrases in geographically distributed secure locations is essential.
Privacy Exposure Mitigation
Before accumulating SBTs, users should assess what information each token reveals publicly. Using separate wallet addresses for different categories of SBTs (professional, personal, financial) can compartmentalize exposure. Adopting zero-knowledge proof wrappers like Sismo or Semaphore adds a privacy layer, allowing selective disclosure without revealing the full credential set.
Issuer Trust Assessment
Not all SBT issuers are equally trustworthy. Before relying on SBTs for lending, governance, or employment, evaluate the issuer’s verification processes, revocation policies, and track record. Decentralized reputation systems that aggregate community assessments of issuers can help establish which SBTs carry genuine weight.
Regulatory and Compliance Risk
SBTs that encode identity information may fall under data protection regulations like GDPR (Europe) or CCPA (California), which grant individuals the “right to be forgotten” – potentially conflicting with the immutability of on-chain tokens. Users and issuers should monitor evolving regulations and prefer implementations that support revocation and data minimization.
Smart Contract Vulnerabilities
SBT contracts, like any smart contract, are susceptible to bugs, reentrancy attacks, and logic errors. Before interacting with SBT systems, verify that the contracts have been audited by reputable firms, check for open-source code availability, and review the contract’s upgrade mechanisms (or lack thereof) to understand how vulnerabilities would be addressed.
Cultural Relevance
Soulbound Tokens have become one of the most debated concepts in the Web3 community since Vitalik Buterin’s 2022 paper. They represent a philosophical shift in the blockchain space – an acknowledgment that not everything of value should be financialized and tradeable. While the crypto ecosystem was built on the premise of open, permissionless markets for digital assets, SBTs introduce the idea that some tokens derive their value precisely from being unmarketable.
The SBT concept has resonated strongly with communities focused on decentralized identity (DID), self-sovereign identity (SSI), and credentialism reform. Universities frustrated by diploma fraud, DAOs struggling with governance capture by wealthy token buyers, and DeFi protocols seeking to move beyond overcollateralization have all expressed interest in SBT-based solutions.
Critics, however, have raised concerns about a potential dystopian “social credit system” where individuals are permanently marked by on-chain credentials they cannot remove – a digital scarlet letter. The debate between credential permanence and the right to be forgotten remains unresolved and is central to SBT discourse.
“What if, one day, your Ethereum address becomes your resume, your credit score, and your passport – all in one, controlled by you and no one else?” – Puja Ohlhaver, co-author of “Decentralized Society: Finding Web3’s Soul” (2022)
Real-World Examples
Example 1: Binance Account Bound (BAB) Token
Scenario: Binance, one of the world’s largest cryptocurrency exchanges, sought to provide its verified users with an on-chain credential that could prove KYC completion without revealing personal data to third-party DeFi protocols.
Implementation: In September 2022, Binance launched BAB tokens on BNB Chain. Users who completed Binance’s identity verification could mint a free, non-transferable BAB token to their wallet. DeFi projects on BNB Chain could then check for BAB presence to gate access to certain pools, airdrops, or governance features.
Outcome: Over 1.5 million BAB tokens were minted within the first year. Multiple DeFi protocols including PancakeSwap and Galxe integrated BAB checks into their platforms, creating a two-tier system where verified users gained access to higher-trust financial products.
Example 2: Gitcoin Passport for Sybil Resistance
Scenario: Gitcoin, a platform for funding open-source projects through quadratic funding, faced persistent attacks from users creating fake accounts to multiply their matching contributions, undermining the fairness of grant distribution.
Implementation: Gitcoin Passport aggregates multiple soulbound-style attestations – social media verification, on-chain activity history, biometric checks, ENS ownership – into a single composable identity score. Each attestation is non-transferable and represents a genuine action the user has taken.
Outcome: By 2024, Gitcoin Passport had become the primary sybil defense for Gitcoin Grants rounds, significantly reducing fraudulent contributions and improving the fairness of over $50 million in distributed grants.
Example 3: Otherside Skill Badges by Yuga Labs
Scenario: Yuga Labs wanted to create a system within their Otherside metaverse where players earned recognition for in-game achievements, contributions, and skill development – credentials that could not simply be purchased on OpenSea.
Implementation: Non-transferable achievement badges were issued to players who completed specific quests, participated in community events, or demonstrated in-game skills. These badges accumulated in players’ wallets as visible proof of their genuine engagement with the Otherside ecosystem.
Outcome: The soulbound badge system created a merit-based hierarchy within the Otherside community, where status was earned through participation rather than purchased with capital, aligning incentives and increasing community engagement.
Example 4: Masa Finance – On-Chain Credit Scores
Scenario:DeFi lending suffered from an overcollateralization problem: borrowers had to lock up more value than they borrowed because there was no on-chain mechanism to assess creditworthiness. Masa Finance sought to bridge this gap using SBTs.
Implementation: Masa issued soulbound credit score tokens based on users’ on-chain financial behavior – loan repayments, transaction history, DeFi participation. These SBTs functioned as decentralized, non-transferable credit reports that lending protocols could query before extending credit.
Outcome: Masa’s SBT-based credit system enabled pilot programs for undercollateralized lending on several DeFi platforms, with early results showing default rates comparable to traditional lending when SBT-scored borrowers were used.
Comparison Table
Feature
Soulbound Token (SBT)
Standard NFT (ERC-721)
Verifiable Credential (W3C VC)
POAP (Proof of Attendance Protocol)
Transferability
Non-transferable (permanently locked to wallet)
Fully transferable and tradeable on marketplaces
Off-chain, shared via holder discretion
Technically transferable but designed for personal use
Primary Purpose
Identity, reputation, credentials, social commitments
Digital ownership, art, collectibles, gaming assets
What is a Soulbound Token and why is it called “soulbound”?
A Soulbound Token (SBT) is a non-transferable digital token permanently bound to a specific blockchain wallet. The name comes from the video game World of Warcraft, where certain powerful items become “soulbound” to a character once picked up, meaning they cannot be traded to other players. Vitalik Buterin adopted this term to describe tokens that derive their meaning from being permanently tied to an individual’s digital identity.
How is an SBT different from a regular NFT?
The fundamental difference is transferability. A regular NFT (ERC-721) can be freely bought, sold, and transferred between wallets on marketplaces like OpenSea. An SBT, once minted to a wallet, cannot be moved to any other address. This makes SBTs suitable for representing credentials, reputation, and identity – things that lose their meaning if they can be purchased on the open market.
What happens to my SBTs if I lose access to my wallet?
This is one of the most significant challenges facing SBT adoption. Since SBTs cannot be transferred, losing your wallet keys means losing all associated credentials. Proposed solutions include social recovery (where trusted contacts can authorize migrating SBTs to a new wallet), issuer-based re-issuance (where the original issuer mints new SBTs to your new address), and community-based recovery guardians.
Can SBTs be used for DeFi lending?
Yes, this is one of the most promising applications. A wallet containing SBTs representing employment history, educational credentials, past loan repayments, and community reputation could serve as a form of non-financial collateral. Lending protocols could assess creditworthiness based on SBT reputation scores, enabling undercollateralized loans similar to how traditional banks use credit scores.
Are SBTs a privacy concern?
Potentially, yes. Because SBTs live on public blockchains, anyone can view what credentials, affiliations, and memberships are associated with a wallet address. This could reveal sensitive information about employment, health status, political affiliations, or legal history. Privacy-preserving solutions using zero-knowledge proofs are being developed to allow selective disclosure – proving you hold a specific SBT without revealing your entire credential set.
Which blockchains support Soulbound Tokens?
SBTs are primarily associated with Ethereum through EIP-5192, but they can be implemented on any EVM-compatible blockchain. BNB Chain (Binance’s BAB token), Polygon, Optimism, Arbitrum, and Base all support SBT smart contracts. Non-EVM chains like Solana and Near have also developed their own soulbound token standards.
Could SBTs become a form of social credit system?
This is a legitimate concern raised by critics. If SBTs are used to encode negative credentials (e.g., loan defaults, criminal records, or community bans), they could function like an indelible digital scarlet letter. The soulbound paper’s authors argue that revocability by issuers and social recovery mechanisms provide safeguards, but the tension between credential permanence and the right to be forgotten remains a central ethical debate in the SBT community.
Decentralized trading platforms are beginning to blur the line between crypto exchanges, prediction markets, and traditional financial venues and hyperliquid