The TAC network currently has the following active network:

Chain IDTypeStatusVersionNotes
tacchain_2390-1testnetActivev0.0.1Turin Testnet

Turin Testnet Details

  • Chain ID: tacchain_2390-1
  • Version: v0.0.1
  • Block Time: 3s

Endpoints

Tools

Prerequisites

Before you begin, ensure you have the following installed:

  • Go (version >= v1.21)
  • jq
  • curl

Join the Network

1

Install tacchaind

make install
2

Initialize Your Node

tacchaind init testnode --chain-id tacchain_2390-1 --home .testnet
3

Configure Your Node

Edit your .testnet/config/config.toml file with the following settings:

# Set block time
timeout_commit = "3s"

# Add persistent peers
persistent_peers = "9b4995a048f930776ee5b799f201e9b00727ffcc@107.6.94.246:45120,e3c2479a6f418841bd64bae6dff027ea3efc1987@72.251.230.233:45120,fbf04b3d67705ed48831aa80ebe733775e672d1a@107.6.94.246:45110,5a6f0e342ea66cb769194c81141ffbff7417fbcd@72.251.230.233:45110"
4

Download Genesis File

curl https://newyork-inap-72-251-230-233.ankr.com/tac_tacd_testnet_full_tendermint_rpc_1/genesis | jq '.result.genesis' > .testnet/config/genesis.json
5

Start Your Node

tacchaind start --chain-id tacchain_2390-1 --home .testnet