-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #151 from eth-protocol-fellows/main
Wiki pages update, Apr 5
- Loading branch information
Showing
19 changed files
with
123 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
# Checklist | ||
## Wiki PR Checklist | ||
|
||
- [ ] Review changes to ensure there are no typos. | ||
Thank you for contributing to the Protocol Wiki! Before you open a PR, make sure to read [information for contributors](https://epf.wiki/#/contributing) and take a look at following checklist: | ||
|
||
- [ ] Describe your changes, substitute this text with the information | ||
- [ ] If you are touching an existing piece of content, ask the original creator for review | ||
- [ ] If you need feedback for your content from wider community, share the PR in our Discord | ||
- [ ] Review changes to ensure there are no typos, see instructions bellow | ||
|
||
<!-- | ||
ℹ️ Checking for typos locally | ||
1. Install [aspell](https://www.gnu.org/software/aspell/) for your platform. | ||
2. Navigate to the project root and run: | ||
``` | ||
for f in **/*.md ; do echo $f ; aspell --lang=en_US --mode=markdown --home-dir=. --personal=wordlist.txt --ignore-case=true list < $f | sort | uniq -c ; done | ||
for f in **/*.md ; do echo $f ; aspell --lang=en_US --mode=markdown --home-dir=. --personal=wordlist.txt --ignore-case=true --camel-case list < $f | sort | uniq -c ; done | ||
``` | ||
ℹ️ Fixing typos | ||
1. Fix typos: Open the relevant files and fix any identified typos. | ||
2. Update wordlist: If a flagged word is actually a project-specific term add it to `wordlist.txt` in the project root. | ||
Each word should be listed on a separate line and must not have any spaces or special characters before or after it. | ||
--> | ||
Each word should be listed on a separate line. | ||
* 🚧 Remember: | ||
* When adding new words it must NOT have any spaces or special characters within or around it. | ||
* \`wordlist\` is NOT case sensitive. | ||
* Use backticks to quote code variables so as to not bloat the \`wordlist\`. | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: DavidAnson/markdownlint-cli2-action@v15 | ||
continue-on-error: true | ||
with: | ||
globs: | | ||
docs/wiki/*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Study Group Week 8 | Consensus client architecture | ||
|
||
The Week 8 research track provides an look into Ethereum consensus layer client codebase, explaining its architecture and functions. | ||
|
||
Join the presentation by [Paul Harris](https://twitter.com/rolfyone) from Consensys Teku on [Wednesday, April 8, 7PM UTC](https://savvytime.com/converter/utc-to-germany-berlin-united-kingdom-london-china-shanghai-ny-new-york-city-japan-tokyo-australia-sydney-india-delhi-argentina-buenos-aires/apr-1-2024/3pm). (Note that this is 3 hours later than the default time) | ||
|
||
The talk will be streamed live on [StreamEth](https://streameth.org/65cf97e702e803dbd57d823f/epf_study_group) and [Youtube](https://www.youtube.com/@ethprotocolfellows/streams), links will be provided before the call in the [Discord server](https://discord.gg/addwpQbhpq). Discord also serves for the discussion and questions during the stream. | ||
|
||
## Pre-reading | ||
|
||
Before starting with the week 8 development content, make yourself familiar with resources in previous weeks, especially week 3 resources on consensus layer. | ||
|
||
Paul will dive into Teku, consensus client implementation in Java. You should have at least basic knowledge of the language syntax. | ||
|
||
[Consensus-specs](https://github.com/ethereum/consensus-specs/) is executable, and a passing knowledge of python may be beneficial, but it's a fairly easy language to reason about at the level the specs are written. | ||
|
||
Additionally, you can get ready by studying the following resources: | ||
|
||
- [Post-Merge Ethereum Client Architecture by Adrian Sutton](https://www.youtube.com/watch?v=6d4pkhL37Ao) | ||
- [Teku Architecture, 2020](https://www.youtube.com/watch?v=1PHZHpVPLk4) | ||
- [Teku docs](https://docs.teku.consensys.io/) | ||
|
||
## Outline | ||
|
||
- Teku CL client | ||
- Brief introduction into our rest api's, declarative framework | ||
- A look at development process EIP -> spec -> code | ||
- Examples of EIP-7251 (maxEB) | ||
|
||
## Additional reading and exercises | ||
|
||
- [Teku code conventions for contributors](https://wiki.hyperledger.org/display/BESU/Coding+Conventions) | ||
- [Teku and the Merge, PEEPanEIP#83](https://www.youtube.com/watch?v=YTWaZ-NBpbM) | ||
- [EIP 7251 - Max EB](https://github.com/ethereum/consensus-specs/tree/dev/specs/_features/eip7251) | ||
- [Beacon-api](https://github.com/ethereum/beacon-APIs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.