eNAT
Connect
Live·ETH mainnet
block#25,958,626
·
finalized#25,958,562
lag0 blk
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; the protocol does not sell mints or receive issuance proceeds.
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) don't require trusting anyone — they just read and write on-chain data, with no admin, no custodian.
Q · 02
Is the wrapper trustless?
No. wENAT and bENAT are custodied at the protocol layer by a single operator EOA controlled by the founder. Compromise of that one key drains all wrapped supply — independent of the contract code. There is no multi-signature scheme; the trust model is explicit and singular.
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 link takes you deeper into a specific layer.