Skip to content

Commit af1c9c2

Browse files
Change Near-Shell to Near-Cli
1 parent 2000fbd commit af1c9c2

File tree

1 file changed

+22
-21
lines changed

1 file changed

+22
-21
lines changed

new_node_setup.md

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# SETUP A GuildNet NODE
22
This guide will help you setup a NEAR validator node on Guildnet. We provide step by step instructions to assist even those new to validating.
3-
We'd appreciate your contribution and feedback on this guild.
3+
We'd appreciate your contribution and feedback on this guide.
44

55
## Content for setting up a node
66
1. [Server Requirements](#Server-Requirements)
7-
2. [Create a wallet account on Near guildnet](#Create-a-wallet-account-on-Near-guildnet)
8-
3. [Install Near-Shell](#Install-Near-Cli)
9-
4. [Setting up your environment](#Setting-up-your-environment)
10-
5. [Login through main wallet](#Login-through-main-wallet)
7+
2. [Create a wallet](#Create-a-wallet-on-GuildNet)
8+
3. [Install Near-Cli](#Install-Near-Cli)
9+
4. [Setting up Environment](#Setting-up-your-environment)
10+
5. [Authorize the Shell](#Authorize-The-Shell)
1111
6. [Install Nearup](#Install-Nearup)
12-
7. [Launch validator node](#Launch-validator-node)
13-
8. [Create staking pool](#Create-staking-pool)
14-
9. [Delegate tokens and get rewards](#Delegate-tokens-and-get-rewards)
15-
10. [Monitor validator node status](#Monitor-validator-node-status)
12+
7. [Start the Validator](#Launch-validator-node)
13+
8. [Create Staking Pool](#Create-staking-pool)
14+
9. [Delegate Tokens](#Delegate-tokens-and-get-rewards)
15+
10. [Monitor Validator Status](#Monitor-validator-node-status)
1616

1717

1818
## Server Requirements
@@ -22,7 +22,7 @@ At least 2-Core (4-Thread) Intel i7/Xeon equivalent
2222
At least 16GB RAM
2323
At least 100GB SSD (Note: HDD will not work)
2424
```
25-
## Create a wallet account on Near guildnet
25+
## Create a wallet on GuildNet
2626
You will need a wallet.
2727
To create a [guildnet wallet](https://wallet.openshards.io) go to: [https://wallet.openshards.io](https://wallet.openshards.io) be sure to record your wallet address and seed phrase (12 words)
2828
_Tip: You may request 75,000 faucet from Near team for staking test._
@@ -72,16 +72,16 @@ Add (export NODE_ENV=guildnet) to the end of the ~/.bashrc file to ensure it per
7272
echo 'export NODE_ENV=guildnet' >> ~/.bashrc
7373
```
7474

75-
## Login through main wallet
76-
To authorize Near-Cli access we need to login via the command prompt.
75+
## Authorize The Shell
76+
To authorize NEAR-Cli access we need to login via the command prompt.
7777
```bash
7878
near login
7979
```
80-
Subsequently, the browser will be opened, if it does not simply copy and paste the generated link into the browser. You may need to restore your wallet account via Seed Phase. This action will authorize Near-cli access to main account via the shell.
80+
Subsequently, the browser will be opened, if it does not simply copy and paste the generated link into the browser. You may need to restore your wallet account via Seed Phase. This action will authorize NEAR-cli access to main account via the shell.
8181
```
8282
We recommend using <your account>.guildnet as main accountId and <your pool>.stake.guildnet as pool ID below.
8383
```
84-
Now, You can manage your main wallet account and smart contract by Near shell command.
84+
Now, You can manage your main wallet account and smart contract with the NEAR CLI.
8585
```bash
8686
For account:
8787
near login # logging in through NEAR protocol wallet
@@ -140,9 +140,9 @@ example:
140140
near call stake.guildnet create_staking_pool '{"staking_pool_id": "testpool", "owner_id": "staketest.guildnet", "stake_public_key": "ed25519:4x1LrkFvxnh8Aeh8NQc9cn15XuYAVHA2aN6WVhFfCdaE", "reward_fee_fraction": {"numerator": 10, "denominator": 100}}' --accountId="blaze.guildnet" --amount=30 --gas=300000000000000
141141
```
142142
## Delegate tokens and get rewards
143-
* As a user, to deposit and stake Near tokens
143+
* As a user, to deposit and stake NEAR tokens
144144
```bash
145-
near call <validator pool ID> deposit_and_stake --amount <amount of Near tokens> --accountId <main account ID>
145+
near call <validator pool ID> deposit_and_stake --amount <amount of tokens> --accountId <main account ID>
146146
example:
147147
near call testpool.stake.guildnet deposit_and_stake --amount 70000 --accountId staketest.guildnet
148148
```
@@ -156,17 +156,18 @@ near call testpool.stake.guildnet ping '{}' --accountId staketest.guildnet
156156
To be a validator, you can execute Near-cli to monitor and manager validator pool by your main account.
157157
* Check if your pool is in proposals at first.
158158
```bash
159-
Near proposals | grep testpool.stake.guildnet
159+
near proposals | grep testpool.stake.guildnet
160160
```
161161
* Check if your pool is in current validators list.
162162
```bash
163-
Near validators current | grep testpool.stake.guildnet
163+
near validators current | grep testpool.stake.guildnet
164164
```
165165
* Check if your pool is in next validators list.
166166
```bash
167-
Near validators next | grep testpool.stake.guildnet
167+
near validators next | grep testpool.stake.guildnet
168168
```
169-
* Check validator seat price. if your staking Near tokens is not enough to get a seat. please participate in the following challenges to get more Near tokens.
169+
* Check the validator seat price.
170170
```bash
171171
near validators current | grep "seat price"
172-
```
172+
```
173+
If your stake is not enough to get a seat, please participate in the following challenges to get more tokens. (Coming Soon...)

0 commit comments

Comments
 (0)