Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simpler alternative to BLOCKHASH extension (#210) #1218

Closed
vbuterin opened this issue Jul 13, 2018 · 11 comments
Closed

Simpler alternative to BLOCKHASH extension (#210) #1218

vbuterin opened this issue Jul 13, 2018 · 11 comments
Labels

Comments

@vbuterin
Copy link
Contributor

vbuterin commented Jul 13, 2018

Summary

Allows blocks to be directly aware of block hashes much older than the current hash.

Parameters

  • BLOCKHASH_CONTRACT_ADDR: 0xf0 (ie. 240)

Specification

At the start of processing any block, run the following algorithm, where store(x, y) stores value y in key x of BLOCKHASH_CONTRACT_ADDR:

i = 0
while (not (block.number-1) & 2**i) and i < 32:
    store(i, block.prevhash)
    i += 1

Extends the BLOCKHASH opcode so that if a given block height's hash is available in one of these storage keys, then this value is returned (ie. so sometimes block hashes with heights more than 256 blocks ago can be returned). That is, if BLOCKHASH is called with height equal to block.number - (block.number % 2**k) for some k < 32, then sload(k) is returned.

Explanation

Storage key 0 always stores the last blockhash, storage key 1 stores the last blockhash with an even blockheight, storage key 2 stores the last blockhash with a blockheight of 0 mod 4, etc etc.

Use cases

  1. Some contracts may want to use block hashes as a source of randomness, with an inclusion window larger than 256 blocks for safety. With this EIP, an application would be able to use a block hash with a 2^k window during which that hash could be called, at the cost of a [0...2^k] block delay until the hash is accessible.
  2. This EIP ensures that it's possible to prove the hash of block N to the chain at height N2 with ~log2(N2 - N) - 8 Merkle branches. It should not be too hard to use existing libraries to write a utility contract and library that produces and verifies these proofs.
  3. The above makes it possible to make trustless light clients, as one can make a subchain of the main chain that contains all of its lowest-hash-value blocks, proving to a client that some particular checkpoint actually is the best available checkpoint in O(log(n)) space/time.
@vbuterin vbuterin changed the title Simpler alternative to #210 Simpler alternative to BLOCKHASH extension (#210) Jul 14, 2018
@axic
Copy link
Member

axic commented Jul 27, 2018

Even if the client writes the account storage directly, it would be nice to still have a "precompile" at the address so that the semantics from user contract's perspective remain the same as in EIP210:

  • blockhash opcode only support the last 256
  • calling the contract has access to the entire range

In this case there are two options:

  1. keep it as a precompile for retrieving the data
  2. implementing the retrieval (should be super simple) in EVM bytecode directly

The main benefit of all this is that without any significant protocol change at a future time the "precompile" could be rewritten in for example wasm.

@vbuterin
Copy link
Contributor Author

So the address would have code that could be called to read any particular storage key? Seems reasonable to me.

I suppose we can also add a store(1024 + block.number % 256, block.prevhash) command the the EIP so the contract also stores the last 256 hashes directly.

@holiman
Copy link
Contributor

holiman commented Aug 14, 2018

This EIP ensures that it's possible to prove the hash of block N to the chain at height N2 with ~log2(N2 - N) - 8 Merkle branches. It should not be too hard to use existing libraries to write a utility contract and library that produces and verifies these proofs.

In theory yes, but let's say it's not actually created until block 7M, and without 'stuffing' it with old values, at what point in time can it actually be relied upon to provide such data? It will be messy if contracts have to mess about with determining if a certain blocknumber is in the registry or not, by checking against CONSTANTINOPLE_BLOCK, and then have to handle that situation aswell, won't it?

@AlexeyAkhunov
Copy link
Contributor

AlexeyAkhunov commented Aug 14, 2018

@holiman To solve the problem of 'stuffing', I suggest making a contract that is able to accept historical blockhashes (backwards, one by one), write them into storage, and send a fixed small payment (lets say, 0.0001 ETH) back to tx.origin if the new entry has been created. The dominant gas cost of such operation is SSTORE (20k). So 0.0001 ETH (100'000 GWei) can buy 20'000 gas for 5 GWei per unit of gas. And to stuff 7m block hashes, you'd need a bit more than 700 ETH. These 700 ETH can be dropped into the contract and the rest will be done by the miners... (it is literally throwing money at the problem)

@zsfelfoldi
Copy link

I have given it some thought and I do not think that "stuffing" 7M old block hashes into storage is worth the effort. I can not think of a use case where a contract would require proof of a block hash older than its own existence (and any such contract should only exist after the fork which includes this EIP). Proving old hashes might be useful for light clients but LES (and AFAIK also Parity's version) already uses checkpoints that enables servers to prove any block hash in a single step with a single Merkle proof:
https://github.com/zsfelfoldi/go-ethereum/wiki/Canonical-Hash-Trie
Right now these checkpoints are hardcoded and this EIP would help a lot in implementing a trustless verification algorithm that would enable clients to always obtain the latest checkpoint. Hardcoding the last checkpoint after the fork is perfectly fine though since it is only a single hash and will never change. Light clients will always be able to verify old block hashes and with this EIP they will also be able to verify them after the hardcoded checkpoint.

@zsfelfoldi
Copy link

I also have a small extension proposal for this EIP: I think we should add the current TD (total difficulty) value to this contract. The main reason I'd like to champion this EIP is because it enables trustless checkpoint syncing of light clients. This process would look roughly like this:

  • pick a server node with the highest advertised TD
  • download the end of the header chain (a section which contains at least 1% of the advertised TD) and do PoW verification there
  • do some random sample checking of the rest of the chain

Unfortunately it is really easy for an attacker to advertise a fake high TD while clients could only realize after a sufficient amount of random sampling that even though the chain PoWs are valid, the TD was a lie and the chain is probably an invalid fork or an attacker chain. Also since random sampling is a statistical method, small differences in TD could never be detected so the client could never be sure about the exact TD value belonging to a given block (which might also be imporant in some use cases). Having the TD as a part of the consensus would allow them to know the exact value and permit them to detect fraud very early in the second phase of the checkpoint syncing process.

@zmitton
Copy link

zmitton commented Feb 16, 2019

what is the status of this?

@zmitton
Copy link

zmitton commented Feb 23, 2019

Here are 3 other issues discussing this:

#210 -> says merged (last comment Aug3)
this thread -> says open
#1094 -> merged (last comment sep 20th)
and #641 -> has been closed (commented oct 16)

From what I can tell, this never made it past draft status as an EIP. Does anyone have a clear reason why?

@Matthalp-zz
Copy link

Matthalp-zz commented Mar 4, 2019

@zmitton This came up on a Core Devs call a while back. Here is the agenda [from where it got dropped(https://github.com/ethereum/pm/blob/7d1028a632033e2b10e7ada6a97efa7b4ac20e59/All%20Core%20Devs%20Meetings/Meeting%2045.md) as a few potential implementations had been proposed but no commitment to thoroughly investigating was made. Recently this "Fly Paper" publication using this concept has started making its rounds.

@github-actions
Copy link

github-actions bot commented Dec 4, 2021

There has been no activity on this issue for two months. It will be closed in a week if no further activity occurs. If you would like to move this EIP forward, please respond to any outstanding feedback or add a comment indicating that you have addressed all required feedback and are ready for a review.

@github-actions github-actions bot added the stale label Dec 4, 2021
@github-actions
Copy link

This issue was closed due to inactivity. If you are still pursuing it, feel free to reopen it and respond to any feedback or request a review in a comment.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

7 participants