You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
Canonical Block is a better term for the first Block that is part of a Blockchain (especially useful for forked chains). Also it should not be a data property but an object property pointing to the actual Block.
The text was updated successfully, but these errors were encountered:
A blockchain's beginning should be defined by its genesis block, not the block at which it forked. I don't see there being an issue with a block being in multiple Blockchains. What's more useful for defining a specific blockchain rather is the most recent block, because once that is defined, getting the rest of the blocks is trivial as you can just work backwards through the chain of parents.
I would agree with @sunnya97 's comment, despite the multiple forks, I would still consider the genesis block to be the beginning of the Ethereum blockchain (as well as ETC...)
This really is a tricky issue.
Of course there is a Genesis Block for all blockchains, which is the first block of the common past. But with each protocol change a new segment in the blockchain is started and a new canonical block is created.
The various forks of a blockchain form a tree. And each segment has a canonical block at its root.
This graphic illustrates that fact:
In the above image - what is the blockchain? It's more a block tree! And the segments are identified by canonical blocks (those where a fork happens). For the non forking segment, the canonical block has no meaning. Only for the fork.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Canonical Block is a better term for the first Block that is part of a Blockchain (especially useful for forked chains). Also it should not be a data property but an object property pointing to the actual Block.
The text was updated successfully, but these errors were encountered: