Skip to content

Commit e9cb88f

Browse files
use evmos v12.1.4
1 parent 3adcb3a commit e9cb88f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Not only EVMOS, you can use this script to build for other chains like cosmos,..
1717
You can find commands to install the above tools [here](https://github.com/VictorTrustyDev/EVMOS-sample-scripts/blob/main/Install-Required-Tools-on-Ubuntu.md)
1818

1919
I created all of the following samples on an Ubuntu 22.04 LTS machine with 4 CPU 16 GB RAM. It can run
20-
- 2 [EVMOS](https://github.com/evmos/evmos/tree/v12.1.3) chains
20+
- 2 [EVMOS](https://github.com/evmos/evmos/tree/v12.1.4) chains
2121
- 1 [Hermes](https://github.com/informalsystems/ibc-rs/tree/v1.5.0) as IBC relayer to connect those chains
2222
- 2 [bdjuno & hasura](https://github.com/forbole/bdjuno/tree/chains/evmos/mainnet) as block explorer's backend & graphql service
2323
- 2 [Big Dipper 2.0](https://github.com/forbole/big-dipper-2.0-cosmos) as block explorer's frontend
@@ -31,7 +31,7 @@ without any performance issue (CPU ~20-80% per core, ram ~50% via htop)
3131

3232
### Software versions:
3333

34-
- [Evmos v12.1.3](https://github.com/evmos/evmos/tree/v12.1.3)
34+
- [Evmos v12.1.4](https://github.com/evmos/evmos/tree/v12.1.4)
3535
- [Hermes v1.5.0](https://github.com/informalsystems/ibc-rs/tree/v1.5.0)
3636
- [bdjuno branch evmos](https://github.com/forbole/bdjuno/tree/chains/evmos/mainnet)
3737
- [Big Dipper 2.0 for Cosmos chains v2.x](https://github.com/forbole/big-dipper-2.0-cosmos)

blockchain-in-docker/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### This helps you create 2 EVMOS chains ([v12.1.3](https://github.com/evmos/evmos/tree/v12.1.3)) with 3 validators on each chain and run with docker compose
1+
### This helps you create 2 EVMOS chains ([v12.1.4](https://github.com/evmos/evmos/tree/v12.1.4)) with 3 validators on each chain and run with docker compose
22

33
### I. Create first chain
44

@@ -62,12 +62,12 @@ Here are some of them:
6262
| Key | Default value | Explain |
6363
| --- | --- | --- |
6464
| `CHAIN_1_GIT_REPO` | https://github.com/evmos/evmos.git | Git repo to be used to build chain 1 |
65-
| `CHAIN_1_GIT_REPO_BRANCH` | v12.1.3 | Git branch to be used to build chain 1 |
65+
| `CHAIN_1_GIT_REPO_BRANCH` | v12.1.4 | Git branch to be used to build chain 1 |
6666
| `CHAIN_1_ID` | evmos_9000-5 | Chain id of chain 1 |
6767
| `CHAIN_1_TYPE` | evmos | Chain type of chain 1 |
6868
| `CHAIN_1_COINTYPE` | 60 | [HD key derivation path](https://docs.evmos.org/protocol/concepts/accounts#evmos-accounts) for chain 1's accounts |
6969
| `CHAIN_2_GIT_REPO` | https://github.com/evmos/evmos.git | Git repo to be used to build chain 2 |
70-
| `CHAIN_2_GIT_REPO_BRANCH` | v12.1.3 | Git branch to be used to build chain 2 |
70+
| `CHAIN_2_GIT_REPO_BRANCH` | v12.1.4 | Git branch to be used to build chain 2 |
7171
| `CHAIN_2_ID` | evmos_9000-6 | Chain id of chain 2 |
7272
| `CHAIN_2_TYPE` | evmos | Chain type of chain 2 |
7373
| `CHAIN_2_COINTYPE` | 60 | [HD key derivation path](https://docs.evmos.org/protocol/concepts/accounts#evmos-accounts) for chain 2's accounts |

env.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export CHAIN_1_ID="evmos_9000-5"
3131
export CHAIN_1_COINTYPE=60 # 60 for EVMOS, 118 for Cosmos
3232
export CHAIN_1_ACCOUNT_PREFIX="evmos"
3333
export CHAIN_1_GIT_REPO="https://github.com/evmos/evmos.git"
34-
export CHAIN_1_GIT_REPO_BRANCH="v12.1.3" # must belong to repo $CHAIN_1_GIT_REPO
34+
export CHAIN_1_GIT_REPO_BRANCH="v12.1.4" # must belong to repo $CHAIN_1_GIT_REPO
3535
export CHAIN_1_DAEMON_BINARY_NAME="evmosd"
3636
export CHAIN_1_DENOM_SYMBOL="evmos"
3737
export CHAIN_1_MIN_DENOM_SYMBOL="aevmos"
@@ -50,7 +50,7 @@ export CHAIN_2_ID="evmos_9000-6"
5050
export CHAIN_2_COINTYPE=60 # 60 for EVMOS, 118 for Cosmos
5151
export CHAIN_2_ACCOUNT_PREFIX="evmos"
5252
export CHAIN_2_GIT_REPO="https://github.com/evmos/evmos.git"
53-
export CHAIN_2_GIT_REPO_BRANCH="v12.1.3" # must belong to repo $CHAIN_2_GIT_REPO
53+
export CHAIN_2_GIT_REPO_BRANCH="v12.1.4" # must belong to repo $CHAIN_2_GIT_REPO
5454
export CHAIN_2_DAEMON_BINARY_NAME="evmosd"
5555
export CHAIN_2_DENOM_SYMBOL="evmos"
5656
export CHAIN_2_MIN_DENOM_SYMBOL="aevmos"

0 commit comments

Comments
 (0)