Installation firmachaind
This document is the FirmaChain binary installation guide. FirmaChain was built using Cosmos SDK that utilizes the tendermint consensus algorithm.
SYNCING FROM GENESIS
When joining the FirmaChain network using “Syncing from genesis” you must change the FirmaChain binary into the appropriate version at a certain block height. For information on the appropriate version of binary per block height, please refer to the list below.
Chain ID | Block height | Chain binary version |
colosseum-1 | Genesis ~ 4,805,999 | v0.3.3-patch |
| 4,806,000 ~ The present | v0.3.5-patch |
Using ‘
git clone
’, call the FirmaChain project and access the directory.1
git clone https://github.com/firmachain/firmachain.git
2
cd firmachain
Please change the branch accorrdingly using the release tag.
# Syncing from genesis
git checkout v0.3.3-patch
# Statesync or Snapshot
git checkout v0.3.5-patch
Build the FirmaChain binary using the following command.
1
make install
Once you complete the binary build, you can check the installation path and version information using the “
firmachaind
” command.1
which firmachaind
2
# Expected output.
3
# /home/<user>/go/bin/firmachaind
4
5
firmachaind version
6
# The git checkout version information is displayed.
7
# v0.3.3-patch or v0.3.5-patch
Last modified 8mo ago