Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion public/content/community/events/organizing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,3 @@ Twitter space:
Articles:

- [Building ETHKL, by Danny H.](https://sekto.tech/ethkl24)
- [POKT Events Playbook](https://docs.pokt.network/community/pokt-events-playbook)
1 change: 0 additions & 1 deletion public/content/community/grants/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ These resources compile and organize various grant opportunities across the Ethe

These general platforms offer broad coverage of grants across the entire Web3 space and are useful starting points for anyone looking for funding:

- [Blockworks Grantfarm](https://blockworks.co/grants/programs) - _Blockworks has compiled a comprehensive directory of all grants, RFPs, and bug bounties._
- [Blockchain Grants](https://www.blockchaingrants.org/) - _Directory of blockchain and crypto grants_
- [Karma Funding Map](https://gap.karmahq.xyz/funding-map) - Directory of all the web3 grant programs, updated on weekly basis

Expand Down
1 change: 0 additions & 1 deletion public/content/community/online/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ If you believe a community should be added or removed based on these guidelines,
<SocialListItem socialIcon="discord"><Link href="https://discord.gg/ethstaker">EthStaker Discord</Link> - community-run guidance, education, support, and resources for existing and potential stakers</SocialListItem>
<SocialListItem socialIcon="discord"><Link href="https://discord.gg/ethereum-org">Ethereum.org website team</Link> - stop by and chat ethereum.org web development and design with the team and folks from the community</SocialListItem>
<SocialListItem socialIcon="discord"><Link href="https://discord.matos.club/">Matos Discord</Link> - web3 creators community where builders, industrial figureheads, and Ethereum enthusiasts hang out. We're passionate about web3 development, design, and culture. Come build with us.</SocialListItem>
<SocialListItem socialIcon="webpage"><Link href="https://gitter.im/ethereum/solidity">Solidity Gitter</Link> - chat for solidity development (Gitter)</SocialListItem>
<SocialListItem socialIcon="webpage"><Link href="https://matrix.to/#/#ethereum_solidity:gitter.im">Solidity Matrix</Link> - chat for solidity development (Matrix)</SocialListItem>
<SocialListItem socialIcon="webpage"><Link href="https://ethereum.stackexchange.com/">Ethereum Stack Exchange</Link> <i>- question and answer forum</i></SocialListItem>
<SocialListItem socialIcon="webpage"><Link href="https://app.peera.ai/">Peera Community Forum</Link> <i>- decentralized question and answer forum</i></SocialListItem>
Expand Down
2 changes: 1 addition & 1 deletion public/content/community/support/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Does your question relate to a particular tool, project, or library? Most projec

Here are some popular examples:

- [Solidity](https://gitter.im/ethereum/solidity)
- [Solidity Matrix](https://app.element.io/#/room/#solidity:matrix.org)
- [ethers.js](https://discord.gg/6jyGVDK6Jx)
- [web3.js](https://discord.gg/GsABYQu4sC)
- [Hardhat](https://discord.gg/xtrMGhmbfZ)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ For [pooled staking services](/staking/pools/):

The [criteria for inclusion](#criteria-for-inclusion) above are used to calculate a cumulative score for each product or service. This is used as a means of sorting and showcasing products that meet certain objective criteria. The more criteria that evidence is provided for, the higher a product will be sorted, with ties being randomized on load.

The code logic and weights for these criteria are currently contained in [this JavaScript component](https://github.com/ethereum/ethereum-org-website/blob/dev/src/components/Staking/StakingProductsCardGrid.js#L350) in our repo.
The code logic and weights for these criteria are currently contained in [this JavaScript component](https://github.com/ethereum/ethereum-org-website/blob/dev/src/components/Staking/StakingProductsCardGrid/index.tsx#L350) in our repo.

## Add your product or service {#add-product}

Expand Down
1 change: 0 additions & 1 deletion public/content/desci/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ Explore projects and join the DeSci community.
- [OceanDAO: DAO governed funding for data-related science](https://oceanprotocol.com/)
- [Opscientia: open decentralized science workflows](https://opsci.io/research/)
- [Bio.xyz: get funded for your biotech DAO or desci project](https://www.bio.xyz/)
- [Fleming Protocol: open-source data economy that fuels collaborative biomedical discovery](http://flemingprotocol.io/)
- [Active Inference Institute](https://www.activeinference.org/)
- [IdeaMarkets: enabling decentralized scientific credibility](https://ideamarket.io/)
- [DeSci Labs](https://www.desci.com/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ This is the most expensive form of storage in Ethereum.

This table summarizes the difference options, their advantages and disadvantages.

| Storage type | Source of data | Availability guarantee | Onchain availability | Additional limitations |
| --------------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- | ----------------------------------------------------------------------- |
| Storage type | Source of data | Availability guarantee | Onchain availability | Additional limitations |
| --------------------------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------- | ----------------------------------------------------------------------- |
| EIP-4844 blobs | Offchain | Ethereum guarantee for [~18 days](https://github.com/ethereum/consensus-specs/blob/master/specs/deneb/p2p-interface.md#configuration) | Only hash is available | |
| Calldata | Offchain | Ethereum guarantee forever (part of the blockchain) | Only available if written to a contract, and at that transaction | |
| Offchain with L1 mechanisms | Offchain | "One honest verifier" guarantee during the challenge period | Hash only | Guaranteed by the challenge mechanism, only during the challenge period |
| Contract code | Onchain or offchain | Ethereum guarantee forever (part of the blockchain) | Yes | Written to a "random" address, cannot start with `0xEF` |
| Events | Onchain | Ethereum guarantee forever (part of the blockchain) | No | |
| Storage | Onchain | Ethereum guarantee forever (part of the blockchain and the present state until overwritten) | Yes | |
| Calldata | Offchain | Ethereum guarantee forever (part of the blockchain) | Only available if written to a contract, and at that transaction |
| Offchain with L1 mechanisms | Offchain | "One honest verifier" guarantee during the challenge period | Hash only | Guaranteed by the challenge mechanism, only during the challenge period |
| Contract code | Onchain or offchain | Ethereum guarantee forever (part of the blockchain) | Yes | Written to a "random" address, cannot start with `0xEF` |
| Events | Onchain | Ethereum guarantee forever (part of the blockchain) | No |
| Storage | Onchain | Ethereum guarantee forever (part of the blockchain and the present state until overwritten) | Yes |
2 changes: 0 additions & 2 deletions public/content/developers/docs/frameworks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,6 @@ Before diving into frameworks, we recommend you first read through our introduct

**Catapulta -** **_Multi-chain smart contracts deployment tool, automate verifications in block explorers, keep track deployed smart contracts and share deployment reports, plug-n-play for Foundry and Hardhat projects._**

- [Website](https://catapulta.sh/)
- [Documentation](https://catapulta.sh/docs)
- [Github](https://github.com/catapulta-sh)

**GoldRush (powered by Covalent) -** **_GoldRush offers the most comprehensive blockchain data API suite for developers, analysts, and enterprises. Whether you are building a DeFi dashboard, a wallet, a trading bot, an AI agent or a compliance platform, the data APIs provide fast, accurate, and developer-friendly access to the essential onchain data you need_**
Expand Down
2 changes: 1 addition & 1 deletion public/content/developers/docs/mev/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Below is an overview of how the Builder API works:

5. A validator using the Builder API is still expected to build a block locally in case the block builder fails to respond promptly, so they don't miss out on block proposal rewards. However, validator cannot create another block using either the now-revealed transactions or another set, as it would amount to _equivocation_ (signing two blocks within the same slot), which is a slashable offense.

An example implementation of the Builder API is [MEV Boost](https://github.com/flashbots/mev-boost), an improvement on the [Flashbots auction mechanism](https://docs.flashbots.net/Flashbots-auction/overview) designed to curb the negative externalities of MEV on Ethereum. Flashbots auction allows validators in proof-of-stake to outsource the work of building profitable blocks to specialized parties called **searchers**.
An example implementation of the Builder API is [MEV Boost](https://github.com/flashbots/mev-boost), an improvement on the [Flashbots auction mechanism](https://docs.flashbots.net/flashbots-auction/overview) designed to curb the negative externalities of MEV on Ethereum. Flashbots auction allows validators in proof-of-stake to outsource the work of building profitable blocks to specialized parties called **searchers**.
![A diagram showing the MEV flow in detail](./mev.png)

Searchers look for lucrative MEV opportunities and send transaction bundles to block proposers along with a [sealed-price bid](https://en.wikipedia.org/wiki/First-price_sealed-bid_auction) for inclusion in the block. The validator running mev-geth, a forked version of the go-ethereum (Geth) client only has to choose the bundle with the most profit and include it as part of the new block. To protect block proposers (validators) from spam and invalid transactions, transaction bundles pass through **relayers** for validation before getting to the proposer.
Expand Down
2 changes: 1 addition & 1 deletion public/content/developers/docs/networks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ A testnet for [Starknet](https://www.starknet.io).

##### Resources

- [Starkscan](https://sepolia.starkscan.co/)
- [Voyager Sepolia Scan](https://sepolia.voyager.online/)

##### Faucets

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ Here is a list of some of the most popular Ethereum node providers, feel free to
- Get started for free

- [**NOWNodes**](https://nownodes.io/)
- [Docs](https://documenter.getpostman.com/view/13630829/TVmFkLwy)
- Features
- Access to 50+ blockchain nodes
- Free API Key
Expand All @@ -283,11 +282,10 @@ Here is a list of some of the most popular Ethereum node providers, feel free to
- Shared, archive, backup and dedicated nodes

- [**Pocket Network**](https://www.pokt.network/)
- [Docs](https://docs.pokt.network/home/)
- [Docs](https://docs.pokt.network/)
- Features
- Decentralized RPC Protocol and Marketplace
- 1M Requests Per Day Free Tier (per endpoint, max 2)
- [Public Endpoints](https://docs.pokt.network/developers/public-endpoints)
- Pre-Stake+ Program (if you need more than 1M requests per day)
- 15+ Blockchains Supported
- 6400+ Nodes earning POKT for serving applications
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Need a more basic primer first? Check out [ethereum.org/learn](/learn/) or [ethe
## Intermediate articles {#intermediate-articles}

- [Friends of web3.py: Intro to Ape](https://snakecharmers.ethereum.org/intro-to-ape/)
- [Dapp Development for Python Programmers](https://levelup.gitconnected.com/dapps-development-for-python-developers-f52b32b54f28)
- [Dapp Development for Python Programmers](https://www.youtube.com/watch?v=tE-8bG35VNw)
- [Creating a Python Ethereum Interface: Part 1](https://hackernoon.com/creating-a-python-ethereum-interface-part-1-4d2e47ea0f4d)
- [Ethereum Smart Contracts in Python: a comprehensive(ish) guide](https://hackernoon.com/ethereum-smart-contracts-in-python-a-comprehensive-ish-guide-771b03990988)

Expand Down Expand Up @@ -87,7 +87,7 @@ The following Ethereum-based projects use tools mentioned on this page. The rela
- [Curve](https://www.curve.finance/) and [Curve smart contracts repository](https://github.com/curvefi/curve-contract)
- [BadgerDAO](https://badger.com/) and [smart contracts using Brownie toolchain](https://github.com/Badger-Finance/badger-system)
- [Sushi](https://sushi.com/) uses [Python in managing and deploying their vesting contracts](https://github.com/sushiswap/sushi-vesting-protocols)
- [Alpha Finance](https://alphafinance.io/), of Alpha Homora fame, uses [Brownie to test and deploy smart contracts](https://github.com/AlphaFinanceLab/alpha-staking-contract)
- [Alpha Finance](https://alphaventuredao.io/), of Alpha Homora fame, uses [Brownie to test and deploy smart contracts](https://github.com/AlphaFinanceLab/alpha-staking-contract)

## Python Community discussion {#python-community-contributors}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ Multiple projects provide implementations of state channels that you can integra

- [Making Sense of Ethereum’s Layer 2 Scaling Solutions: State Channels, Plasma, and Truebit](https://medium.com/l4-media/making-sense-of-ethereums-layer-2-scaling-solutions-state-channels-plasma-and-truebit-22cb40dcc2f4) _– Josh Stark, Feb 12 2018_
- [State Channels - an explanation](https://www.jeffcoleman.ca/state-channels/) _Nov 6, 2015 - Jeff Coleman_
- [Basics of State Channels](https://education.district0x.io/general-topics/understanding-ethereum/basics-state-channels/) _District0x_
- [Basics of State Channels](https://unlock-protocol.github.io/ethhub/ethereum-roadmap/layer-2-scaling/state-channels/) _District0x_
- [Blockchain State Channels: A State of the Art](https://ieeexplore.ieee.org/document/9627997)

_Know of a community resource that helped you? Edit this page and add it!_
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ contract MutexPattern {
}
```

You can also use a [pull payments](https://docs.openzeppelin.com/contracts/5.x/api/security#PullPayment) system that requires users to withdraw funds from the smart contracts, instead of a "push payments" system that sends funds to accounts. This removes the possibility of inadvertently triggering code at unknown addresses (and can also prevent certain denial-of-service attacks).
You can also use a [pull payments](https://docs.openzeppelin.com/contracts/5.x/api/utils#security#PullPayment) system that requires users to withdraw funds from the smart contracts, instead of a "push payments" system that sends funds to accounts. This removes the possibility of inadvertently triggering code at unknown addresses (and can also prevent certain denial-of-service attacks).

#### Integer underflows and overflows {#integer-underflows-and-overflows}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ shasum -a 256 ethonarm_22.04.00.img.zip
# Hash should output: fb497e8f8a7388b62d6e1efbc406b9558bee7ef46ec7e53083630029c117444f
```

Note that images for Rock 5B and Odroid M1 boards are available at the Ethereum-on-Arm [downloads page](https://ethereum-on-arm-documentation.readthedocs.io/en/latest/quick-guide/download-and-install.html).
Note that images for Rock 5B and Odroid M1 boards are available at the Ethereum-on-Arm [downloads page](https://ethereum-on-arm-documentation.readthedocs.io/en/latest/).

## Flashing the MicroSD {#flashing-the-microsd}

Expand Down Expand Up @@ -158,7 +158,7 @@ Congratulations, you now have a full Ethereum node and validator running on a Ra

## More details {#more-details}

This page gave an overview of how to set up a Geth-Lighthouse node and validator using Raspberry Pi. More detailed instructions are available on the [Ethereum-on-Arm website](https://ethereum-on-arm-documentation.readthedocs.io/en/latest/index.html).
This page gave an overview of how to set up a Geth-Lighthouse node and validator using Raspberry Pi. More detailed instructions are available on the [Ethereum-on-Arm website](https://ethereum-on-arm-documentation.readthedocs.io/en/latest/).

## Feedback appreciated {#feedback-appreciated}

Expand All @@ -177,7 +177,7 @@ Please dig into the details in this tutorial, try running on testnets, check out
8. https://www.hyperledger.org/projects/besu
9. https://github.com/prysmaticlabs/prysm
10. https://lighthouse.sigmaprime.io
11. https://ethersphere.github.io/swarm-home
11. https://docs.ethswarm.org/
12. https://raiden.network
13. https://ipfs.io
14. https://status.im
Expand Down
Loading