research VS annotated-spec

Compare research vs annotated-spec and see what are their differences.

annotated-spec

Vitalik's annotated eth2 spec. Not intended to be "the" annotated spec; other documents like Ben Edgington's https://benjaminion.xyz/eth2-annotated-spec/ also exist. This one is intended to focus more on design rationale. (by ethereum)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
research annotated-spec
10 44
1,730 312
0.9% 0.0%
6.4 0.0
10 days ago 3 months ago
Python
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

research

Posts with mentions or reviews of research. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-29.
  • Daily General Discussion - April 30, 2023
    4 projects | /r/ethfinance | 29 Apr 2023
    Vitalik teases twitter that "Sharding is coming" with the release of research code, and provides more info here
  • Daily General Discussion - April 16, 2023
    6 projects | /r/ethfinance | 15 Apr 2023
    Casper Version 1 Implementation Guide sees the light.
  • Daily General Discussion - February 17, 2023
    5 projects | /r/ethfinance | 17 Feb 2023
  • [AMA] We are EF Research (Pt. 9: 11 January, 2023)
    7 projects | /r/ethereum | 10 Jan 2023
    I would definitely love for there to be more work on ZK programming languages. Exposing the internals more to help people do this was one of my motivations for attempting the task of making my own PLONK implementation. We need more tools to help people write circuits, and verify circuits; we should get to the point where verifying a verification key can be done eg. on etherscan as easily as verifying solidity code can be today.
  • Ethereum Energy Consumption
    2 projects | news.ycombinator.com | 2 Jul 2022
    > they have zero power to do anything related to consensus.

    Suggest reading what Vitalik has to say if you're going to offer this kind of objection:

    https://github.com/ethereum/research/blob/master/papers/disc...

    Infura collects upwards of 80 percent of the fees that flow into Ethereum and is in a position to control exactly who participates profitably. If your solution is "minority will fork" the obvious question is surely "with what scalable infrastructure?"

  • Cardano Network Developers Increase Block Size by 10%
    2 projects | /r/CryptoCurrency | 30 Apr 2022
    The main difference between all recent Ethereum sharding proposals since ~2020 (both Danksharding and pre-Danksharding) and most non-Ethereum sharding proposals is Ethereum’s rollup-centric roadmap (see also: [1] [2] [3]): instead of providing more space for transactions, Ethereum sharding provides more space for blobs of data, which the Ethereum protocol itself does not attempt to interpret. Verifying a blob simply requires checking that the blob is available - that it can be downloaded from the network. The data space in these blobs is expected to be used by layer-2 rollup protocols that support high-throughput transactions.
  • Daily General Discussion - April 3, 2021
    6 projects | /r/ethfinance | 2 Apr 2021
    Vitalik Buterin gives a (not so sneak) peek at the current version of the Casper contract.
  • Metakovan, the mystery Beeple art buyer, and his NFT/DeFi scheme
    1 project | news.ycombinator.com | 14 Mar 2021
    Quite surprised at this comment. The reason I got into blockchain was _because_ of the incredibly difficult technical challenges it poses. Among the few I get to work on:

    - How to implement robust p2p networking algorithms for sharding in a distributed system such as Ethereum (a very deep rabbit hole), as Ethereum is migrating to a "sharded" architecture

    - How to solve the "data availability problem" https://github.com/ethereum/research/wiki/A-note-on-data-ava.... The current solution uses advanced cryptography known as KZG commitments https://dankradfeist.de/ethereum/2020/06/16/kate-polynomial-...

    - How to solve the problem of "transaction frontrunning", in which miners have an asymmetric advantage in ordering transactions they put in blocks for their benefit, which can adversely affect users creating those transactions. This is a problem known as MEV (Miner Extractable Value) https://research.paradigm.xyz/MEV and there is some incredibly sophisticated work going into this problem. It is a deep engineering problem as well

    I could go on and probably give you 20 other incredibly technical, challenging problems that are on the bleeding-edge of this technology. If you're interested, would be happy to chat more!

  • Weak statelessness and/or state expiry: coming soon (x-post from EthMagicians)
    2 projects | /r/ethereum | 2 Mar 2021
    Verkle trees (very important concept): slides, doc, code
  • Daily General Discussion - February 28, 2021
    3 projects | /r/ethfinance | 28 Feb 2021
    All ethereum research is open source https://github.com/ethereum/research including the cryptography they plan to use for eth2. If you want an overview of what eth2 could look like take a look at the roadmap https://twitter.com/VitalikButerin/status/1333922620857745408 or the eth2 specs https://github.com/ethereum/eth2.0-specs

annotated-spec

Posts with mentions or reviews of annotated-spec. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-17.
  • Daily General Discussion - February 17, 2023
    5 projects | /r/ethfinance | 17 Feb 2023
  • Can't the Sync Committee be cheaply bribed, and therefor serves no real purpose for security?
    1 project | /r/ethdev | 14 Jan 2023
    My current understanding: The Sync Committee selects 512 validators to continually sign off on block header. Any block headers that get >2/3 are "valid"1, such that Light Clients using this header for verification can trust it.
  • Ethereum Mainnet Merge Announcement
    6 projects | news.ycombinator.com | 24 Aug 2022
    https://github.com/ethereum/annotated-spec/blob/master/phase...

    Here we have slashing fields in the block body where you insert your proofs of slashable offense. There are functions with a “slash” in the name that describes precise state transition.

    The hard part of slashing is finding these proofs because you have to do more work than necessary to detect slashing and produce proofs - that’s what this software does. It’s more expensive to run a slasher but you need only one and it does not matter who runs it, anyone can run it. The link that you sent says that this slasher broadcasts proofs by default - that way anyone can include it.

  • Explaining Ethereum's consensus mechanism after The Merge
    11 projects | news.ycombinator.com | 7 Jul 2022
    According to Eth docs:

    > One validator is randomly selected to be a block proposer in every slot. This validator is responsible for creating a new block and sending it out to other nodes on the network. Also in every slot, a committee of validators is randomly chosen, whose votes are used to determine the validity of the block being proposed.

    The annotated code for this can be found in [2].

    [1] https://github.com/ethereum/annotated-spec/blob/master/phase...

    [2] https://notes.ethereum.org/@vbuterin/Sys3GLJbD#Misc

  • Daily staking income was irregularly high, anyone knows why?
    1 project | /r/ethstaker | 27 Apr 2022
    Here's some more info on Sync committees if you are interested. https://github.com/ethereum/annotated-spec/blob/master/altair/sync-protocol.md
  • Daily General Discussion - February 20, 2022
    2 projects | /r/ethfinance | 20 Feb 2022
  • My First Impressions of Web3
    12 projects | news.ycombinator.com | 7 Jan 2022
    The crux of the article is that the front-ends are all routing calls through centralized APIs to get their message included on the blockchain. Infura and Alchemy don't do much. They just pass a JSON-RPC message to an Ethereum node running on their servers. There is some additional indexing services they provide, but there are many open, decentralized alternatives for that such as TheGraph Protocol. And it's not unfeasible for an application to run its own Postgres instance to index data from the ETH blockchain.

    As for full-fat clients on normal mobile devices, the main issue is the data requirements. Running a full node can take hundreds of gigabytes. It is possible on light hardware. People are running Beacon chain nodes on Raspberry Pis. But you do need the storage and that tends to be scarce on mobile.

    Meanwhile, the Ethereum core devs are aware of this issue and are actively working towards it. They shipped the Altair hard fork this year that has adds sync committees which make it possible to do without needing the whole chain history (using merkle trees): https://github.com/ethereum/annotated-spec/blob/master/altai...

    The light client to follow from those improvements is forthcoming:

  • ETH2.0 withdrawal roadmap post merge
    2 projects | /r/ethstaker | 23 Dec 2021
    It's not about validators going offline, it's about the validator set changing. To quote the annotated specs
  • Proof of stake is a scam and the people promoting it are scammers
    3 projects | news.ycombinator.com | 28 Nov 2021
    Even a relatively light reading of the Annotated Spec[1] for Eth2 and/or the Eth Org's Proof of Stake FAQs[2] suggests the designers (and independent implementer-teams who gave feedback to designers... lather, rinse, repeat) understand it's important to consider the overall system "outside of the comfort zone".

    [1] https://github.com/ethereum/annotated-spec/blob/master/phase...

    [2] https://eth.wiki/en/concepts/proof-of-stake-faqs

  • Help understanding staking factors
    1 project | /r/ethstaker | 19 Nov 2021
    Alpha leak: I am currently finishing up a full revision of my annotated specification for Altair, and plan to get it published in a couple of weeks. Meanwhile Vitalik's annotated spec has some info on how base rewards work under Altair.

What are some alternatives?

When comparing research and annotated-spec you can also consider the following projects:

portal-network-specs - Official repository for specifications for the Portal Network

ethmerge.com-content - Markdown formatted content for the ethmerge.com website.

protocols - A zkRollup DEX & Payment Protocol

consensus-specs - Ethereum Proof-of-Stake Consensus Specifications

pm - Project Management: Meeting notes and agenda items

dataunions - A monorepo containing Data Union SDK, smart contracts, and subgraphs

ens - Implementations for ENS core functionality: The registry, registrars, and public resolvers.

ConsensusLayerWithdrawalProtection

crypto-fees - Website for comparing total daily fees of various blockchain protocols.

casper - Casper contract, and related software and tests

EIPs - The Ethereum Improvement Proposal repository