eDMT·eNAT
Live·ETH Mainnet
block#24,836,710
·
burn0.0134ETH
age00s
Plate VIII./Plate VIII. · Questions

Common questions.

Answers grouped by topic. When a question crosses layers, we point to the canonical spec rather than restate it here.

Plate VIII.A./Basics

What is it?

Start here if you have never used eDMT before.

Q · 01
What is eDMT in one sentence?
A non-arbitrary token protocol on Ethereum mainnet: each eNAT is bound to one block and carries that block's EIP-1559 burn as its only property.
Q · 02
How is eNAT different from a usual NFT?
A typical NFT points to arbitrary metadata. An eNAT carries a specific, computable quantity — the block's burn — and cannot be minted unless that quantity exceeds 1 gwei. There is no off-chain metadata to lose.
Q · 03
Do I need a new wallet?
No. Any Ethereum wallet that can sign a transaction with a data field works. The UI is a convenience; the protocol is just calldata.
Q · 04
Is there a token sale?
No. Supply is minted block-by-block on a first-is-first basis; there is no team allocation, no presale, and no treasury.
Plate VIII.B./Protocol

How does minting work?

The mechanics of capture, transfer, and fragment settlement.

Q · 01
Who gets a block when multiple people try to mint it?
The earliest on-chain, canonical emt-mint for that block — measured by mainnet inclusion order after finality — owns it. Later attempts are rejected by the indexer.
Q · 02
What happens if a block's burn is below the threshold?
It is not mintable. The protocol refuses any emt-mint whose block has burn below 1 gwei.
Q · 03
What is a fragment, and how do fragments settle?
A fragment is a sub-gwei balance produced when a whole is partially transferred. Fragments are FIFO-ordered per address; outgoing transfers consume them earliest-first.
Q · 04
Can the protocol ever be paused or upgraded?
No. At the protocol layer there are no admin selectors and no upgrade key. Once deployed, the letter of the protocol is fixed.
Plate VIII.C./Security & trust

What are the risks?

Each layer has its own trust assumptions; we list them plainly so you can decide.

Q · 01
Is the protocol trustless?
Protocol-layer operations (mint / transfer) are trustless in the usual sense: they are reads/writes of on-chain calldata anyone can verify independently. No admin, no oracle, no multisig.
Q · 02
Is the wrapper trustless?
No. Wrapped eNATs (ERC-721) and wrapped BURN (ERC-20) are custodied at the protocol layer by a multi-signature EOA. Compromise of its threshold M-of-N keys drains all wrapped supply — independent of the contract code.
Q · 03
What if the indexer is wrong?
Any compliant indexer must converge on the same state. If two indexers disagree, the protocol rules (protocol/00 + protocol/05) decide which is right — not a voting system and not a central party.
Q · 04
Can I avoid the wrapper entirely?
Yes. The protocol layer always accepts raw emt-mint and emt-transfer calldata. You never have to enter the wrapper.
Plate VIII.D./Practical

What do I actually do?

Walkthroughs and expectations for normal usage.

Q · 01
How do I mint from this site?
Open /mint, pick a mintable block, and submit the displayed calldata from any wallet. The first valid mainnet tx captures the block.
Q · 02
How do I sell or buy an eNAT?
/trade has whole and fragment wrapped markets. They are application-layer, with trust disclosures. Or you can transfer peer-to-peer at the protocol layer by sending an emt-transfer calldata.
Q · 03
How long does finality take?
Ethereum finality takes roughly 12 to 15 minutes. Until finality, wrapper deposits and withdrawals should not be confirmed.
Q · 04
How do I see who owns block #N?
Open /explore/blk/N. The page shows provenance, the current holder, and raw indexer state.
Plate VIII.E./More

Need more depth?

Each of these takes you deeper into a specific layer. The canonical spec always beats the UI when they disagree.