Add ERC: Parametric Token - #1937
Open
K2eno wants to merge 4 commits into
Open
Conversation
Collaborator
File
|
abcoathup
reviewed
Aug 13, 2026
| @@ -0,0 +1,748 @@ | |||
| --- | |||
| eip: | |||
Contributor
There was a problem hiding this comment.
Suggested change
| eip: | |
| eip: 8378 |
Assigning next sequential EIP/ERC/RIP number.
Numbers are assigned by editors & associates.
Please also update the filename.
abcoathup
reviewed
Aug 13, 2026
| title: Parametric Token | ||
| description: An extension of ERC-20 enabling fungible tokens with account-specific mutable or immutable parameters and sub-accounts. | ||
| author: Alexander Zvezdin (@k2eno) | ||
| discussions-to: https://ethereum-magicians.org/t/erc-xxxx-parametric-token/29385 |
Contributor
There was a problem hiding this comment.
Suggested change
| discussions-to: https://ethereum-magicians.org/t/erc-xxxx-parametric-token/29385 | |
| discussions-to: https://ethereum-magicians.org/t/erc-8378-parametric-token/29385 |
Updated Eth Magicians title with assigned number
|
The commit e71482a (as a parent of 0f210f7) contains errors. |
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.
This PR proposes a new ERC: Parametric Token – an extension of ERC-20 that enables fungible tokens to carry account-specific, mutable or immutable parameters, with built-in sub-account support.
Summary
Parametric tokens keep fungibility while allowing each account to hold its own state. Parameters travel with the token and update deterministically on transfer via pure functions (e.g., weighted average, max, or custom combine). The standard introduces:
Dependencies: ERC-20, ERC-165
Files added: ERCS/erc-xxxx.md
Reference Implementation
A Foundry repo with three fully-tested examples (Prediction, Tenure, Bundle) accompanies the draft. It includes all interfaces, parameter mutation logic, and comprehensive test suites covering core functionality, revert conditions, and NZS event emission.
Discussion Thread
https://ethereum-magicians.org/t/erc-xxxx-parametric-token/29385
The thread is active and seeks feedback on gas costs, parameter limits, sub-account deletion, NZS detection, and engine integration patterns.
Many thanks,
Alexander Zvezdin (@K2eno)