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
Is it possible to set up a fully functional private GoEthereum network with a Proof of Stake consensus mechanism without using Kurtosis or other wrappers?
#30817
Open
ThomasAqu1nas opened this issue
Nov 27, 2024
· 4 comments
I need to test and compare the performance, load capacity, and speed of block validation/mining in a geth network using different consensus mechanisms: PoW, PoS, and PoA.
Setting up a PoW Ethash or PoA Clique network is straightforward based on the documentation.
However, when it comes to setting up a private geth network with a PoS consensus mechanism, the documentation suggests using the Kurtosis wrapper, which relies on code from the repository: https://github.com/ethpandaops/ethereum-package, rather than directly using the geth source code.
I would like to know if it's possible to configure a private network directly with a PoS consensus mechanism and generate a genesis config for this network.
The text was updated successfully, but these errors were encountered:
It's not possible to set up a proof-of-stake network with geth only. You can use geth --dev to set up a quick dev chain. If you specify the datadir (--datadir) the database will not be destroyed once the node is shut down.
You can always set up a network without kurtosis, but its more complicated, since you need to set up a lot of stuff manually
It's not possible to set up a proof-of-stake network with geth only. You can use geth --dev to set up a quick dev chain. If you specify the datadir (--datadir) the database will not be destroyed once the node is shut down.
You can always set up a network without kurtosis, but its more complicated, since you need to set up a lot of stuff manually
I need to test and compare the performance, load capacity, and speed of block validation/mining in a geth network using different consensus mechanisms: PoW, PoS, and PoA.
Setting up a PoW Ethash or PoA Clique network is straightforward based on the documentation.
However, when it comes to setting up a private geth network with a PoS consensus mechanism, the documentation suggests using the Kurtosis wrapper, which relies on code from the repository: https://github.com/ethpandaops/ethereum-package, rather than directly using the geth source code.
I would like to know if it's possible to configure a private network directly with a PoS consensus mechanism and generate a genesis config for this network.
The text was updated successfully, but these errors were encountered: