Skip to content

Commit 10b4c2b

Browse files
authored
Merge pull request #2002 from Sifchain/task/staking_and_compilitation_readme_changes
A few changes to make steps accurate for sifndoded 1st time run
2 parents 0f6d522 + 1ac2ce5 commit 10b4c2b

File tree

4 files changed

+29
-13
lines changed

4 files changed

+29
-13
lines changed

docs/chainOps/k8s/tutorials/betanet.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,11 @@ rake "sifnode:status[my-cluster,sifnode]"
209209

210210
In order to become a validator, that is a node which can participate in consensus on the network, you'll need to stake `rowan`.
211211

212-
1. Get the public key of your node:
212+
1. Ask for Rowan to stake
213+
214+
Use the address from step 3 above to request Rowan from administrators on our Discord server https://discord.gg/geqyCWSU5K
215+
216+
2. Get the public key of your node:
213217

214218
```bash
215219
rake "sifnode:keys:kubernetes:public[<cluster>,<provider>,<namespace>]"

docs/chainOps/k8s/tutorials/testnet.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,11 @@ rake "sifnode:status[my-cluster,sifnode]"
209209

210210
In order to become a validator, that is a node which can participate in consensus on the network, you'll need to stake `rowan`.
211211

212-
1. Get the public key of your node:
212+
1. Ask for Rowan to stake
213+
214+
Use the address from step 3 above to request Rowan from administrators on our Discord server https://discord.gg/geqyCWSU5K
215+
216+
2. Get the public key of your node:
213217

214218
```bash
215219
rake "sifnode:keys:kubernetes:public[<cluster>,<provider>,<namespace>]"

docs/chainOps/standalone/tutorials/betanet.md

+13-9
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,19 @@ make -C ./deploy bundler
1616
export GOPATH=~/go
1717
export PATH=$PATH:$GOPATH/bin
1818
```
19+
4. Compile `sifnoded`:
1920

20-
4. Generate a new mnemonic key for your node. This key is what your node will use to eventually sign transactions/blocks on the network.
21+
```bash
22+
make install
23+
```
24+
25+
5. Generate a new mnemonic key for your node. This key is what your node will use to eventually sign transactions/blocks on the network.
2126

2227
```bash
2328
rake "sifnode:keys:generate:mnemonic"
2429
```
2530

26-
5. Import your newly generated key:
31+
6. Import your newly generated key:
2732

2833
```bash
2934
rake "sifnode:keys:import[<moniker>]"
@@ -41,7 +46,7 @@ e.g.:
4146
rake "sifnode:keys:import[my-node]"
4247
```
4348

44-
6. Check that it's been imported accordingly:
49+
7. Check that it's been imported accordingly:
4550

4651
```bash
4752
rake "sifnode:keys:show[<moniker>]"
@@ -59,13 +64,12 @@ e.g.:
5964
rake "sifnode:keys:show[my-node]"
6065
```
6166

62-
7. Compile `sifnoded`:
67+
8. Ask for Rowan
68+
69+
Use the address from the command in step 7 to ask for Rowan on our Discord server https://discord.gg/geqyCWSU5K if you plan to stake as a validator.
6370

64-
```bash
65-
make install
66-
```
6771

68-
8. Boot your node:
72+
9. Boot your node:
6973

7074
```bash
7175
rake "sifnode:standalone:boot[<chain_id>,<moniker>,'<mnemonic>',<gas_price>,<bind_ip_address>,'<flags>']"
@@ -92,7 +96,7 @@ and your node will start synchronizing with the network. Please note that this m
9296

9397
## Stake to become a validator
9498

95-
In order to become a validator, that is a node which can participate in consensus on the network, you'll need to stake `rowan`.
99+
In order to become a validator, that is a node which can participate in consensus on the network, you'll need to stake `rowan`. Make sure you have asked for Rowan for your node as mentioned in step 8 above.
96100

97101
1. Get the public key of your node:
98102

docs/chainOps/standalone/tutorials/testnet.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,11 @@ e.g.:
6565
rake "sifnode:keys:show[my-node]"
6666
```
6767

68-
8. Boot your node:
68+
8. Ask for Rowan
69+
70+
Use the address from the command in step 7 to ask for Rowan on our Discord server https://discord.gg/geqyCWSU5K if you plan to stake as a validator.
71+
72+
9. Boot your node:
6973

7074
```bash
7175
rake "sifnode:standalone:boot[<chain_id>,<moniker>,'<mnemonic>',<gas_price>,<bind_ip_address>,'<flags>']"
@@ -92,7 +96,7 @@ and your node will start synchronizing with the network. Please note that this m
9296

9397
## Stake to become a validator
9498

95-
In order to become a validator, that is a node which can participate in consensus on the network, you'll need to stake `rowan`.
99+
In order to become a validator, that is a node which can participate in consensus on the network, you'll need to stake `rowan`. Make sure you have asked for Rowan for your node as mentioned in step 8 above.
96100

97101
1. Get the public key of your node:
98102

0 commit comments

Comments
 (0)