While researching on privacy solutions and applications of ZKP, we discovered a technique,
by which people can burn their digital asset (E.g ETH) by sending it to an unspendable address,
and later build a ZK proof showing that some amount of tokens reside in an account that are
unspendable, without revealing the account.
The EIP proposes to add a minting functionality to Ethereum, so that people can re-mint
Ethers they have purposefully burnt. The mentioned privacy solution will bring strong levels of
plausible deniability for the sender, since there is no way one can prove that the sender
has been participating in a privacy protocol. This will also make an anonymity pool that includes
all of the Ethereum accounts with zero outgoing transactions by default.
The hash of the transaction (excluding proof) should be included in the randomness for generating the zero-knowledge proof. This ensures the proof serves as a signature.
If the transaction is confirmed, generate proof.withdraw_value ether at address WORMHOLE_NULLIFIER_ADDRESS. Then proceed with a normal call from this address using that value. Before the call, set SSTORE(WORMHOLE_NULLIFIER_ADDRESS, proof.nullifier, 1), and emit a log event where topics = [MAGIC_CHANGE, proof.change_value_hash] and logdata = bytes([]).
Rationale
In Elliptic-Curve based digital signatures, normally there is a secret scalar $s$, from which
a public-key is calculated (By multiplying the generator point with the scalar: $s \times G$). An
Ethereum EOA-address is the keccak hash of a public-key.
Also, the funds in an Ethereum address might be spendable by a smart-contract, if the keccak hash
of the smart-contract’s parameters is equal with that address.
Therefore, an Ethereum address $A$ is spendable if and only if:
A private-key $s$ exists. such that $A = keccak(s \times G)$.
There exists a smart-contract $c$, such that $A = keccak(c_{params})$.
The preimage resistance property of hash functions implies that, you can’t find $x$ where $keccak(x)=r$,
in case $r$ is a random value. So the funds sent to a random Ethereum address $r$ is unspendable, but
how can other people be sure that $r$ is indeed random and not the result of calculating $s \times G$?
A great source of randomness is a hash function. If the address is equal with the hash of a secret preimage
$s$, we can conclude that the address is unspendable, since there isn’t a polynomially bounded algorithm
to find $x$ where $keccak(x)=h(s)$. This is only true if the second hash function is a different hash
function, and it assumes it is impossible to find $x_1$ and $x_2$ such that $h_1(x_1)=h_2(x_2)$ in case
$h_1$ and $h_2$ are different hash functions.
Using the help of Zero-Knowledge proofs, we can hide the value of $s$! We just need to prove that
we know a secret value $s$ where the address is $h(s)$. We can go even further. We can prove
that an Ethereum accounts exists in the state-root, which holds some amount of ETH and is unspendable.
By revealing this to the Ethereum blockchain and providing something like a nullifier
(E.g. $h(s | 123)$ so that double minting of same burnt tokens are not possible), we can add a new
minting functionality for ETH so that people can migrate their secretly burnt tokens to a
completely new address, without any trace on the blockchain.
Cryptocurrency mixers like TornadoCash can successfully obfuscate Ethereum transactions, but it’s
easy for the governments to ban usage of them. Anybody who has interactions with a mixer contract,
whether the sender or receiver, can get marked. However this EIP tries to minimize the privacy leakage
of the senders, by requiring zero smart-contract interactions in order to send money, so
we only use plain EOA-to-EOA transfers. In order to have a “teleportation” mechanism we divide
the set of all Secp256k1 points $E(K)$ into two subsets/address-spaces:
The spendable address-space: $\{p \in \{0,1\}^{160}
\exists s : keccak(s \times G)=p \lor \exists c : keccak(c_{params})=p \}$
The unspendable address-space: $\{p \in \{0,1\}^{160}
\nexists s : keccak(s \times G)=p \land \nexists c : keccak(c_{params})=p \}$
The spendable/unspendable addresses are not distinguishable, so we can exploit this fact and define
a spendability rule for the money sent to addresses that can’t be spent using regular elliptic-curve
signatures.
Deposits are made by sending ether to an address sha256(MAGIC_ADDRESS + secret)[12:], where you know the secret. This ensures that no one knows about the deposit unless you reveal it: a deposit onchain is not distinguishable from sending ether to a friend. Withdrawals use a zero-knowledge proof to prove knowledge of a previous deposit’s secret.
A deposit can come from two places: a standard deposit by sending ether, or a change deposit. A change deposit is automatically generated when withdrawing funds from another deposit (standard or change). The entire deposited amount does not have to be withdrawn; for example, if 20 ether was deposited and only 12 is withdrawn, the system will make a new change deposit of 8 ether. The value of this change deposit is hashed, so someone looking at the chain cannot calculate change deposit value + withdrawal value = old deposit value and use the value to expose the original deposit.
This EIP requires that EIP-7708 be in place along with an EIP to change receipts to SSZ format. This simplifies the proof as it only needs to verify a regular SHA256 Merkle branch verifying a log, there is no need to do verkle or RLP or other complex logic inside the proof. The log can be of two types: an EIP-7708 ETH transfer log, or a log generated by this EIP itself through the change mechanism.
The EIP also includes a privacy pool 1 mechanism where you must provide a privacy pool root, which corresponds to a list of deposits, so you prove that your deposit is one of the deposits in that list. Since this second Merkle branch mechanism is integrated into the proof, the marginal cost for a user to use it is zero, ensuring maximum adoption and maximizing the chance that privacy will be used responsibly. The privacy pools paper explains in much more detail the value of this privacy pools mechanism, and the benefits of an ecosystem where almost all legitimate users use it.
The built-in PoW and 32 ETH limit prevent hash collision attacks: if an attacker can find collision (x1, x2) such that create2_address(..., x1) = sha256(MAGIC_ADDRESS + x2), the attacker could extract their ether twice (but only twice). Such an attack requires approximately 2**80 hashes. Adding 24 bits of PoW increases the difficulty to 2**92. This many hashes can be computed but is very difficult; currently, mining a Bitcoin block takes around 2**79 hashes, so those with the capabilities to attack this mechanism have a much more lucrative opportunity in Bitcoin mining.
Scalability Implications
In case the circuits are able to simultaneously re-mint the sum of multiple burns in a single-proof,
merchants and CEXs will be able to accept their payments in burn-addresses and accumulate their funds
in a single address by storing a single proof (And a bunch of nullifiers) on the blockchain, which
significantly reduces the transaction count on the blockchain. The people who will use this EIP as a
scalability solution, will also increase the privacy guarantees of the protocol.
Backwards Compatibility
The Ethers generated using the mint function should not have any difference with original Ethers.
People should be able to use those minted Ethers for paying the gas fees.
Reference Implementation
To be determined (TBD).
ZK-SNARK Implementation
Also TBD, but the implementation must meet the following conditions:
Use a transparent setup; ideally reuse the EIP-4844 setup. Do not use Groth16 or other application-specific setups.
The circuit should be directly verifiable without blindly trusting compilers like Circom. SHA256 is not too complicated and can be implemented using PLOOKUP with an 8-bit lookup table for arithmetic operations, which should suffice. There is no need to over-focus on prover efficiency.
Elliptic curves must still be used; Stark is too large.
Security Considerations
In case of faulty implementation of this EIP, people may mint infinite amount of ETH, collapsing the price of Ethereum.