OffchainLabs / eth-pos-devnet

MIT License
112 stars 135 forks source link

can I change that validators have to stake more than 32 eth? #3

Open dorijan opened 1 year ago

dorijan commented 1 year ago

Hi, great project, thank you :) Also, can I change that minimum stake has to be more than 32 eth? Is there a manual how can I add more nodes to this private PoS network?

EngineersStable commented 2 months ago

I'm not very sure, but looking at the Prysm code in the config folder, you should modify those parameters by adding these lines to your config.yml file:

MIN_DEPOSIT_AMOUNT: 32000000000 # 32 ETH in Gwei MIN_ACTIVATION_BALANCE: 32000000000 # 32 ETH in Gwei MAX_EFFECTIVE_BALANCE: 32000000000 # 32 ETH in Gwei

It's just a matter of experimenting.