Skip to content

Commit 339c4fc

Browse files
author
Yutong Pei
authored
Update README.md (#132)
1 parent 2c71809 commit 339c4fc

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# IoTeX Delegate Manual
22

33
## News
4+
- We have upgraded testnet and mainnet to `v0.11.1`. A blocker indexer racing issue is fixed. The breaking changes which will still be activated on mainnet at block height 4478761.
45
- We have upgraded testnet and mainnet to `v0.11.0`. This version introduces delegates probation. It contains breaking changes which will be activated on mainnet at block height 4478761.
56
- We have upgraded testnet to `v0.11.0-rc`. This version introduces probation.
67
- We added auto upgrade feature in our upgrader. Auto upgrade will check if there is an avilable upgrade every 3 days and automactilly doing the upgrade.
@@ -32,16 +33,16 @@
3233

3334
Here are the software versions we use:
3435

35-
- MainNet: v0.11.0
36-
- TestNet: v0.11.0
36+
- MainNet: v0.11.1
37+
- TestNet: v0.11.1
3738

3839
## <a name="mainnet"/>Join MainNet Beta
3940
This is the recommended way to start an IoTeX node
4041

4142
1. Pull the docker image:
4243

4344
```
44-
docker pull iotex/iotex-core:v0.11.0
45+
docker pull iotex/iotex-core:v0.11.1
4546
```
4647

4748
2. Set the environment with the following commands:
@@ -56,8 +57,8 @@ mkdir -p $IOTEX_HOME/data
5657
mkdir -p $IOTEX_HOME/log
5758
mkdir -p $IOTEX_HOME/etc
5859
59-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.11.0/config_mainnet.yaml > $IOTEX_HOME/etc/config.yaml
60-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.11.0/genesis_mainnet.yaml > $IOTEX_HOME/etc/genesis.yaml
60+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.11.1/config_mainnet.yaml > $IOTEX_HOME/etc/config.yaml
61+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.11.1/genesis_mainnet.yaml > $IOTEX_HOME/etc/genesis.yaml
6162
```
6263

6364
3. Edit `$IOTEX_HOME/etc/config.yaml`, look for `externalHost` and `producerPrivKey`, uncomment the lines and fill in your external IP and private key. You also need to replace the `gravityChainAPIs` to use your own infura project key. And make sure you enabled archive data access if you need to access Ethereum archive node data.
@@ -81,7 +82,7 @@ docker run -d --restart on-failure --name iotex \
8182
-v=$IOTEX_HOME/log:/var/log:rw \
8283
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
8384
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
84-
iotex/iotex-core:v0.11.0 \
85+
iotex/iotex-core:v0.11.1 \
8586
iotex-server \
8687
-config-path=/etc/iotex/config_override.yaml \
8788
-genesis-path=/etc/iotex/genesis.yaml
@@ -100,7 +101,7 @@ docker run -d --restart on-failure --name iotex \
100101
-v=$IOTEX_HOME/log:/var/log:rw \
101102
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
102103
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
103-
iotex/iotex-core:v0.11.0 \
104+
iotex/iotex-core:v0.11.1 \
104105
iotex-server \
105106
-config-path=/etc/iotex/config_override.yaml \
106107
-genesis-path=/etc/iotex/genesis.yaml \
@@ -121,7 +122,7 @@ Same as [Join MainNet Beta](#mainnet) step 2
121122
```
122123
git clone https://github.com/iotexproject/iotex-core.git
123124
cd iotex-core
124-
git checkout checkout v0.11.0
125+
git checkout checkout v0.11.1
125126
126127
// optional
127128
export GOPROXY=https://goproxy.io
@@ -164,13 +165,13 @@ nohup $IOTEX_HOME/iotex-server \
164165
There's almost no difference to join TestNet, but in step 2, you need to use the config and genesis files for TestNet:
165166

166167
```
167-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.11.0/config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
168-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.11.0/genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
168+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.11.1/config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
169+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.11.1/genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
169170
```
170171

171172
In step 4, you need to use the snapshot for TestNet: https://t.iotex.me/testnet-data-latest and https://t.iotex.me/testnet-data-with-idx-latest.
172173

173-
In step 5, you need to replace the docker image tag in the command with `v0.11.0`.
174+
In step 5, you need to replace the docker image tag in the command with `v0.11.1`.
174175

175176
## <a name="ioctl"/>Interact with Blockchain
176177

0 commit comments

Comments
 (0)