Node Installation
Hardware requirements The following requirements are recommended for running TITAN:
6 or more physical CPU cores
At least 1TB of SSD disk storage
At least 32GB of memory (RAM)
At least 500mbps network bandwidth
Manual Installation
# Update & install dependencies
sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq htop tmux chrony liblz4-tool -y
# Install Go
cd $HOME
VER="1.22.2"
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"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin
go version
# Set Vars
MONIKER=<YOUR_MONIKER_NAME_GOES_HERE>
echo "export MONIKER=$MONIKER" >> $HOME/.bash_profile
echo "export TITAN_CHAIN_ID="titan-test-1"" >> $HOME/.bash_profile
echo "export TITAN_PORT="44"" >> $HOME/.bash_profile
source $HOME/.bash_profile
# Download Binary
cd $HOME
rm -rf titan
git clone https://github.com/nezha90/titan.git
cd titan
go build ./cmd/titand
cp titand /usr/local/bin
# Config and Init App
titand config node tcp://localhost:${TITAN_PORT}657
titand config keyring-backend test
titand config chain-id $TITAN_CHAIN_ID
titand init $MONIKER --chain-id $TITAN_CHAIN_ID
# Add Genesis File and Addrbook
wget -O $HOME/.titan/config/genesis.json https://testnet-files.syanodes.my.id/titan-genesis.json
wget -O $HOME/.titan/config/addrbook.json https://testnet-files.syanodes.my.id/titan-addrbook.json
#Configure Seeds and Peers
SEEDS=""
PEERS="d7e49b0256a6c17b542cd60479887600249992d4@148.251.82.6:53456,ba89d9d09be51620c115d5f36b951c03af85f354@95.216.228.91:53456"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.titan/config/config.toml
sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.0025uttnt\"/" $HOME/.titan/config/app.toml
sed -i -e 's|^indexer *=.*|indexer = "null"|' $HOME/.titan/config/config.toml
sed -i 's|^prometheus *=.*|prometheus = true|' $HOME/.titan/config/config.toml
# Config Pruning
pruning="custom"
pruning_keep_recent="100"
pruning_keep_every="0"
pruning_interval="10"
sed -i -e "s/^pruning *=.*/pruning = \"$pruning\"/" $HOME/.titan/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"$pruning_keep_recent\"/" $HOME/.titan/config/app.toml
sed -i -e "s/^pruning-keep-every *=.*/pruning-keep-every = \"$pruning_keep_every\"/" $HOME/.titan/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"$pruning_interval\"/" $HOME/.titan/config/app.toml
# Set Custom Port
sed -i.bak -e "s%:1317%:${TITAN_PORT}317%g;
s%:8080%:${TITAN_PORT}080%g;
s%:9090%:${TITAN_PORT}090%g;
s%:9091%:${TITAN_PORT}091%g;
s%:8545%:${TITAN_PORT}545%g;
s%:8546%:${TITAN_PORT}546%g;
s%:6065%:${TITAN_PORT}065%g" $HOME/.titan/config/app.toml
sed -i.bak -e "s%:26658%:${TITAN_PORT}658%g;
s%:26657%:${TITAN_PORT}657%g;
s%:6060%:${TITAN_PORT}060%g;
s%:26656%:${TITAN_PORT}656%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${TITAN_PORT}656\"%;
s%:26660%:${TITAN_PORT}660%g" $HOME/.titan/config/config.toml
# Set Service File
sudo tee /etc/systemd/system/titand.service > /dev/null <<EOF
[Unit]
Description=titan-testnet
After=network-online.target
[Service]
User=$USER
ExecStart=$(which titand) start --home $HOME/.titan
Restart=on-failure
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
# Enable and Start Service
sudo systemctl daemon-reload
sudo systemctl enable titand
sudo systemctl start titand && sudo journalctl -fu titand -o cat
Auto Installation
wget https://snapshot.syanodes.my.id/auto/testnet/titan_auto && chmod +x titan_auto && ./titan_auto
Last updated