githubEdit

Installation

  1. Install dependencies

# install dependencies, if needed
sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y
  1. Install Go

# install go, if needed
cd $HOME
VER="1.22.3"
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
  1. Download tac build binary

git clone https://github.com/TacBuild/tacchain
cd tacchain
make install
  1. Set variable

  1. Init tac chain

  1. Config your node

  1. Create tac chain service using systemd

  1. Enable and Start service:

  1. Create wallet

  1. Query balance

  1. Check status

  1. Create Validator

Last updated