└── readme.md /readme.md: -------------------------------------------------------------------------------- 1 | # This guide about to upgrade evmosd binary 2 | 3 | 1. Create folder where we will download all necessary files: 4 | ```bash 5 | mkdir $HOME/evmos_temp && cd $HOME/evmos_temp 6 | ``` 7 | ![image](https://user-images.githubusercontent.com/59205554/138677097-c0db97c1-d7fa-4514-aedf-533e791eed18.png) 8 | 9 | 2. Download new version from the evmos git repository in releases: 10 | 11 | ```bash 12 | wget https://github.com/tharsis/evmos/releases/download/v0.1.3/evmos_0.1.3_Linux_x86_64.tar.gz 13 | ``` 14 | ![image](https://user-images.githubusercontent.com/59205554/138677183-bf0a8454-9222-41b7-b99e-0ebd6453180f.png) 15 | 16 | 3. Unpack the archive with a simple command 17 | 18 | ```bash 19 | tar -xzf evmos_0.1.3_Linux_x86_64.tar.gz 20 | ``` 21 | ![image](https://user-images.githubusercontent.com/59205554/138677243-724eeb56-7049-4f3a-b414-1e22c7c95700.png) 22 | 23 | 4. Move new binary to the appropriate directory and check the version (it should be 0.1.3) 24 | 25 | ```bash 26 | mv ./bin/evmosd $(which evmosd) 27 | evmosd version 28 | ``` 29 | ![image](https://user-images.githubusercontent.com/59205554/138678995-9ec1b655-8f23-45ab-ab4e-06b2568440fb.png) 30 | 31 | 5. Than we need too restart the service: 32 | 33 | ```bash 34 | systemctl restart evmosd 35 | ``` 36 | ![image](https://user-images.githubusercontent.com/59205554/138679110-58a86215-4637-4830-be14-d926a38c450e.png) 37 | 38 | 6. Сheck the logs to calm the soul: 39 | 40 | ```bash 41 | journalctl -u evmosd -f 42 | ``` 43 | ![image](https://user-images.githubusercontent.com/59205554/138679169-21560f40-dd02-4ddb-98c5-f27d515ff992.png) 44 | 45 | Enjoy it! Feel free to ask any question https://t.me/HeKit 46 | --------------------------------------------------------------------------------