A guide to completing NEAR’s Stake War III challenges
Official Manual: https://github.com/near/stakewars-iii/tree/main/challenges
Table of Content
Task | Notes |
---|---|
001 - Create a wallet on shardnet | Make sure to backup your seed phrase. |
001 - Setup Near CLI | Run on a minimal spec server independently |
Follow instructions on https://wallet.shardnet.near.org/
# Update apt
sudo apt update && sudo apt upgrade -y
# Install Node.js and npm
curl -sL <https://deb.nodesource.com/setup_18.x> | sudo -E bash -
sudo apt install build-essential nodejs
PATH="$PATH"
# Check version
node -v
v18.6.0
npm -v
8.13.2
# Install near-cli
sudo npm install -g near-cli
# For this chunk-only producer, we'll be using shardnet
echo 'export NEAR_ENV=shardnet' >> ~/.profile && source .profile
CLI commands
Proposals
A proposal by a validator indicates they would like to enter the validator set, in order for a proposal to be accepted it must meet the minimum seat price.
Command: near proposals