Add ERC: Persistent Identity Token#1776
Open
nftprof wants to merge 2 commits into
Open
Conversation
…d-to-lock model Three-layer standard for persistent, human-readable identity tokens: - Identity Layer: name registration, address binding, URL records, soulbound locking - Resolution Layer: on-chain name-to-address and identity lookup - Policy Layer: namespace governance (pricing, renaming, unbinding) Reference implementation: PEG ID on Pentagon Chain Protocol repo: github.com/blockchainsuperheroes/persistent-identity-protocol License: CC0
Collaborator
File
|
|
The commit 044f36f (as a parent of e80689a) contains errors. |
abcoathup
reviewed
May 28, 2026
| @@ -0,0 +1,198 @@ | |||
| --- | |||
| eip: TBD | |||
Contributor
There was a problem hiding this comment.
Suggested change
| eip: TBD | |
| eip: 8277 |
@nftprof
Assigning next sequential EIP/ERC/RIP number.
Numbers are assigned by editors & associates.
Please also update the filename.
abcoathup
reviewed
May 28, 2026
| title: Persistent Identity Token | ||
| description: A standard for persistent, human-readable identity tokens mapped to EVM addresses with support for resolution, lifecycle management, URL records, and policy-controlled governance. | ||
| author: Idon Liu (@nftprof) | ||
| discussions-to: https://ethereum-magicians.org/t/erc-persistent-identity-token-pip-on-chain-identity-with-bind-to-lock-model/28641 |
Contributor
There was a problem hiding this comment.
Suggested change
| discussions-to: https://ethereum-magicians.org/t/erc-persistent-identity-token-pip-on-chain-identity-with-bind-to-lock-model/28641 | |
| discussions-to: https://ethereum-magicians.org/t/erc-8277-persistent-identity-token-pip/28641 |
Updated Eth Magicians title with ERC number and title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This ERC proposes a standard interface for Persistent Identity Tokens — ERC-721 tokens that represent human-readable, on-chain identities bound to EVM addresses.
Three Interface Layers
IPersistentIdentity) — name registration, address binding, URL records, and soulbound lockingIPersistentIdentityResolver) — on-chain name-to-address and identity lookupIPersistentIdentityPolicy) — namespace governance (pricing, renaming, unbinding, reserved names)Core Mechanism: Bind-to-Lock
Tokens are freely tradable when unbound. When a user binds an identity to their address (
bind(tokenId)), the token becomes soulbound — protecting active identities from unauthorized transfer while allowing a secondary market for unclaimed names.Key Differentiators from Existing Standards
Reference Implementation
PEG ID — live on Pentagon Chain (chain ID 3344) at
0xf97EB9f8293D1FD5587a809Eb74518c300738d07with 2,200+ identities minted.Protocol Repository
persistent-identity-protocol — published under CC0 1.0 Universal.
Compatibility
ERC-721, ERC-165, ERC-5192, ERC-6551, ERC-4337, ENS.
Files
ERCS/erc-persistent-identity.md— Full ERC specificationassets/erc-persistent-identity/— Solidity interfaces (IPersistentIdentity, IPersistentIdentityResolver, IPersistentIdentityPolicy)