Skip to content

Commit b7369e8

Browse files
author
Yutong Pei
authored
Update README.md (#117)
1 parent c537372 commit b7369e8

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.10.3`. This version improve stability on reading native staking buckets.
45
- We have upgraded mainnet to `v0.10.2`. It contains breaking changes which will be activated on block height 3238921. Delegates must upgrade your node to the new version before that.
56
- We have upgraded testnet to `v0.10.2`. This version correct a gas limit issue for reading native vote bucket.
67
- We have upgraded mainnet to `v0.10.0`. It contains breaking changes which will be activated on block height 1816201. Delegates must upgrade your node to the new version before that.
@@ -28,16 +29,16 @@
2829

2930
Here are the software versions we use:
3031

31-
- MainNet: v0.10.2
32-
- TestNet: v0.10.2
32+
- MainNet: v0.10.3
33+
- TestNet: v0.10.3
3334

3435
## <a name="mainnet"/>Join MainNet Beta
3536
This is the recommended way to start an IoTeX node
3637

3738
1. Pull the docker image:
3839

3940
```
40-
docker pull iotex/iotex-core:v0.10.2
41+
docker pull iotex/iotex-core:v0.10.3
4142
```
4243

4344
2. Set the environment with the following commands:
@@ -52,8 +53,8 @@ mkdir -p $IOTEX_HOME/data
5253
mkdir -p $IOTEX_HOME/log
5354
mkdir -p $IOTEX_HOME/etc
5455
55-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.10.2/config_mainnet.yaml > $IOTEX_HOME/etc/config.yaml
56-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.10.2/genesis_mainnet.yaml > $IOTEX_HOME/etc/genesis.yaml
56+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.10.3/config_mainnet.yaml > $IOTEX_HOME/etc/config.yaml
57+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.10.3/genesis_mainnet.yaml > $IOTEX_HOME/etc/genesis.yaml
5758
```
5859

5960
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.
@@ -77,7 +78,7 @@ docker run -d --restart on-failure --name iotex \
7778
-v=$IOTEX_HOME/log:/var/log:rw \
7879
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
7980
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
80-
iotex/iotex-core:v0.10.2 \
81+
iotex/iotex-core:v0.10.3 \
8182
iotex-server \
8283
-config-path=/etc/iotex/config_override.yaml \
8384
-genesis-path=/etc/iotex/genesis.yaml
@@ -96,7 +97,7 @@ docker run -d --restart on-failure --name iotex \
9697
-v=$IOTEX_HOME/log:/var/log:rw \
9798
-v=$IOTEX_HOME/etc/config.yaml:/etc/iotex/config_override.yaml:ro \
9899
-v=$IOTEX_HOME/etc/genesis.yaml:/etc/iotex/genesis.yaml:ro \
99-
iotex/iotex-core:v0.10.2 \
100+
iotex/iotex-core:v0.10.3 \
100101
iotex-server \
101102
-config-path=/etc/iotex/config_override.yaml \
102103
-genesis-path=/etc/iotex/genesis.yaml \
@@ -117,7 +118,7 @@ Same as [Join MainNet Beta](#mainnet) step 2
117118
```
118119
git clone https://github.com/iotexproject/iotex-core.git
119120
cd iotex-core
120-
git checkout checkout v0.10.2
121+
git checkout checkout v0.10.3
121122
122123
// optional
123124
export GOPROXY=https://goproxy.io
@@ -160,13 +161,13 @@ nohup $IOTEX_HOME/iotex-server \
160161
There's almost no difference to join TestNet, but in step 2, you need to use the config and genesis files for TestNet:
161162

162163
```
163-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.10.2/config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
164-
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.10.2/genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
164+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.10.3/config_testnet.yaml > $IOTEX_HOME/etc/config.yaml
165+
curl https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/v0.10.3/genesis_testnet.yaml > $IOTEX_HOME/etc/genesis.yaml
165166
```
166167

167168
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.
168169

169-
In step 5, you need to replace the docker image tag in the command with `v0.10.2`.
170+
In step 5, you need to replace the docker image tag in the command with `v0.10.3`.
170171

171172
## <a name="ioctl"/>Interact with Blockchain
172173

0 commit comments

Comments
 (0)