Install
Chain ID
Latest Version
Wasm
initiation-1
v0.2.15
Off
Install Required Packages
sudo apt update && \
sudo apt install curl git jq build-essential gcc unzip wget lz4 -yInstall GO
cd $HOME && \
ver="1.22.0" && \
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz" && \
sudo rm -rf /usr/local/go && \
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz" && \
rm "go$ver.linux-amd64.tar.gz" && \
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile && \
source ~/.bash_profile && \
go versionBuild Binary
git clone https://github.com/initia-labs/initia.git
cd initia
git checkout v0.2.15
make installSet Variable
You can make several required changes, such as changing My_Node in the variable MONIKER="My_Node" with any node name you want to use, and wallet in the variable WALLET_NAME="wallet" with any wallet name you want to use.
Initialize Node
Download Genesis json
Add peers and seeds
Set minimum gas price
Create a service file
Reload system configuration
Check Logs
Last updated