How much do you have to stake to become a validator?

868 Views Asked by At

Any command to do it? I just started staking and I think I don't have enough stake :( Any idea of how somebody could help me? Thanks!

2

There are 2 best solutions below

0
On

near validators next | grep "seat price"

0
On

The minimum stake to become a validator depends in how much is staked on the system at the moment. Near uses Thresholded Proof of Stake, so you can say the minimum stake to become a validator is roughly the sum of the current stake divided by the number of seats (which is currently 100 for betanet/stakewars).

In particular to see the current seat price for the current epoch you can use near-shell:

$> near validators current | grep "seat price"

To see the estimate price for the next epoch you can use as suggested per previous answer:

$> near validators next | grep "seat price"