gitextract_igib6qx0/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── wiki-content-request.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── md-lint.yaml │ └── spell-check.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── check_typos.sh ├── docs/ │ ├── .nojekyll │ ├── CNAME │ ├── _footer.md │ ├── _navbar.md │ ├── _sidebar.md │ ├── assets/ │ │ ├── css/ │ │ │ ├── custom.css │ │ │ ├── editor.css │ │ │ ├── theme.css │ │ │ └── toc.css │ │ └── ics/ │ │ └── eps25townhall.ics │ ├── contributing.md │ ├── epf.md │ ├── eps/ │ │ ├── archive.md │ │ ├── day16.md │ │ ├── day17.md │ │ ├── day18.md │ │ ├── day19.md │ │ ├── day20.md │ │ ├── day21.md │ │ ├── day22.md │ │ ├── day23.md │ │ ├── day24.md │ │ ├── intro.md │ │ ├── nodes_workshop.md │ │ ├── presentations/ │ │ │ └── week2_notes.md │ │ ├── week0.md │ │ ├── week1.md │ │ ├── week10-dev.md │ │ ├── week10-research.md │ │ ├── week2.md │ │ ├── week3.md │ │ ├── week4.md │ │ ├── week5.md │ │ ├── week6-dev.md │ │ ├── week6-research.md │ │ ├── week7-dev.md │ │ ├── week7-research.md │ │ ├── week8-dev.md │ │ ├── week8-research.md │ │ ├── week9-dev.md │ │ └── week9-research.md │ ├── images/ │ │ ├── el-architecture/ │ │ │ └── excalidraw/ │ │ │ ├── architecture-overview.excalidraw │ │ │ ├── forkchoice-updated.excalidraw │ │ │ ├── payload-building-routine.excalidraw │ │ │ ├── payload-validation-routine.excalidraw │ │ │ └── reth-architecture-overview.excalidraw │ │ └── el-specs/ │ │ └── excalidraw/ │ │ ├── gas-header.excalidraw │ │ ├── state.excalidraw │ │ └── stf_eels.excalidraw │ ├── index.html │ ├── readme.md │ ├── resources.md │ ├── topics.md │ └── wiki/ │ ├── CL/ │ │ ├── SSZ.md │ │ ├── beacon-api.md │ │ ├── cl-architecture.md │ │ ├── cl-clients.md │ │ ├── cl-networking.md │ │ ├── cl-specs.md │ │ ├── gasper.md │ │ ├── merkleization.md │ │ ├── overview.md │ │ └── syncing.md │ ├── Cryptography/ │ │ ├── KZG.md │ │ ├── bls.md │ │ ├── ecdsa.md │ │ ├── intro.md │ │ ├── keccak256.md │ │ └── post-quantum-cryptography.md │ ├── EL/ │ │ ├── JSON-RPC.md │ │ ├── RLP.md │ │ ├── block-production.md │ │ ├── clients/ │ │ │ ├── besu.md │ │ │ └── reth.md │ │ ├── data-structures.md │ │ ├── devp2p.md │ │ ├── el-architecture.md │ │ ├── el-clients.md │ │ ├── el-data-structures-summary.md │ │ ├── el-specs.md │ │ ├── engine-api.md │ │ ├── eof.md │ │ ├── evm.md │ │ ├── precompiled-contracts.md │ │ └── transaction.md │ ├── dev/ │ │ ├── core-development.md │ │ ├── cs-resources.md │ │ └── pm.md │ ├── epf.md │ ├── pectra-faq.md │ ├── protocol/ │ │ ├── architecture.md │ │ ├── design-rationale.md │ │ ├── history.md │ │ ├── img/ │ │ │ └── history/ │ │ │ └── ethereum-nodes.excalidraw │ │ └── prehistory.md │ ├── research/ │ │ ├── FCR/ │ │ │ └── FCR.md │ │ ├── PBS/ │ │ │ ├── ET.md │ │ │ ├── PEPC.md │ │ │ ├── PTC.md │ │ │ ├── TBHL.md │ │ │ ├── ePBS-Specs.md │ │ │ ├── ePBS.md │ │ │ ├── mev-boost.md │ │ │ ├── mev.md │ │ │ └── pbs.md │ │ ├── Preconfirmations/ │ │ │ ├── BasedSequencingPreconfs.md │ │ │ └── Preconfirmations.md │ │ ├── SSF.md │ │ ├── account-abstraction/ │ │ │ └── eip-7702.md │ │ ├── cl-upgrades.md │ │ ├── eODS.md │ │ ├── history-expiry/ │ │ │ └── history-expiry.md │ │ ├── img/ │ │ │ └── scaling/ │ │ │ ├── layer-1-scaling.excalidraw │ │ │ └── layer-2-scaling.excalidraw │ │ ├── light-clients.md │ │ ├── peerdas.md │ │ ├── roadmap.md │ │ └── scaling/ │ │ ├── core-changes/ │ │ │ ├── core-changes.md │ │ │ └── eip-4844.md │ │ ├── data-availability.md │ │ └── scaling.md │ ├── testing/ │ │ ├── consensus-spec-tests.md │ │ ├── formal-verification.md │ │ ├── hive.md │ │ ├── incidents.md │ │ ├── kurtosis.md │ │ └── overview.md │ └── wiki-intro.md ├── notes/ │ ├── Chloe_notes.md │ ├── gorondan.md │ ├── gorondan_MVEls_notes.md │ ├── mario.md │ ├── steven_notes/ │ │ ├── PBS.md │ │ ├── weekly_updates_1.md │ │ └── weekly_updates_2.md │ ├── wiki_contributors_meeting/ │ │ ├── 2024-04-18-meeting-1.md │ │ ├── 2024-05-02-meeting-2.md │ │ ├── 2024-05-16-meeting-3.md │ │ ├── 2024-06-20-meeting-4.md │ │ ├── 2024-07-25-meeting-5.md │ │ └── 2025-01-23-meeting-6.md │ └── your-name notes.md └── wordlist.txt