Skip to content
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3e5927c
Add draft ERC: IERC721Value — Embedding native ETH inside ERC-721 tokens
ten-io-meta Oct 27, 2025
93dce9f
Update ERCS/draft_ierc721value.md
ten-io-meta Oct 27, 2025
1d937b8
Update ERCS/draft_ierc721value.md
ten-io-meta Oct 27, 2025
eedf982
Update ERCS/draft_ierc721value.md
ten-io-meta Oct 27, 2025
a47524f
Rename ERCS/draft_ierc721value.md to ERCS/ERCS/eip-8060.md
ten-io-meta Oct 27, 2025
0d7d23c
Merge branch 'ethereum:master' into master
ten-io-meta Oct 27, 2025
0d65882
Merge branch 'master' into master
ten-io-meta Oct 30, 2025
7d78fdb
Update eip-8060.md
ten-io-meta Oct 30, 2025
a27a66a
Rename eip-8060.md to erc-8060.md
ten-io-meta Oct 30, 2025
2f1d852
Update erc-8060.md
ten-io-meta Oct 30, 2025
3527018
Update erc-8060.md
ten-io-meta Oct 30, 2025
94ae62b
Update erc-8060.md
ten-io-meta Oct 30, 2025
821f80c
Update erc-8060.md
ten-io-meta Oct 30, 2025
4285dbd
Update erc-8060.md
ten-io-meta Oct 30, 2025
121a9c1
EIPS/eip-8060.md
ten-io-meta Oct 30, 2025
6b46815
Update eip-8060.md
ten-io-meta Oct 30, 2025
3f4dfcb
Rename ERCS/ERCS/EIPS/eip-8060.md to ERCS/erc-8060.md
ten-io-meta Oct 30, 2025
e2b4b71
Update erc-8060.md
ten-io-meta Oct 30, 2025
fc98d70
Update erc-8060.md
ten-io-meta Oct 30, 2025
6d308ae
Update erc-8060.md
ten-io-meta Oct 30, 2025
37d91b3
Update erc-8060.md
ten-io-meta Oct 30, 2025
437b246
Update erc-8060.md
ten-io-meta Oct 30, 2025
b880e10
Update erc-8060.md
ten-io-meta Oct 31, 2025
a8a134e
Update erc-8060.md
ten-io-meta Oct 31, 2025
3e8742f
Update erc-8060.md
ten-io-meta Oct 31, 2025
f0d9332
Merge branch 'master' into master
ten-io-meta Nov 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions ERCS/draft_ierc721value.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
eip: <to be assigned>
title: IERC721Value — Embedding native ETH inside ERC-721 tokens
author: Ten.IO <[email protected]>
discussions-to: https://ethereum-magicians.org/t/draft-erc-ierc721value-embedding-native-eth-inside-erc-721-tokens/25979
status: Draft
type: Standards Track
category: ERC
created: 2025-10-26
requires: 721
---

## Abstract

This proposal introduces `IERC721Value`, an extension to the ERC-721 standard that enables each non-fungible token to natively hold and represent verifiable ETH value within its contract logic.
Unlike wrapped or delegated approaches, this mechanism embeds ETH directly into the NFT itself, creating a new class of ETH-backed cultural assets.

---

## Motivation

Today, NFTs represent ownership of digital assets but do not hold intrinsic value.
`IERC721Value` allows each token to embed and maintain a direct ETH collateral balance, binding cultural, artistic, or symbolic meaning to real on-chain economic weight.
This creates a new paradigm of *ETH-reservoir assets* that act as verifiable stores of cultural and financial energy.

---

## Specification

The interface extends ERC-721 as follows:

```solidity
interface IERC721Value is IERC721 {
/// @notice Returns the amount of ETH embedded in the given tokenId.
function valueOf(uint256 tokenId) external view returns (uint256);

/// @notice Allows minting a token with embedded ETH value.
function mintWithValue(address to, uint256 tokenId) external payable;

/// @notice Burns a token and refunds its embedded ETH value to the owner.
function burn(uint256 tokenId) external;
}
Loading