Join the Network
How to join the TAC network as a node operator
The TAC EVM Layer is an EVM Layer1 with dPoS that is built with CosmosSDK + Ethermint (built on top of Tendermint-Core).
You can join the TAC network as a node operator by following the steps below.
Prerequisites
- Go >= v1.21
- jq
- curl
Install tacchain binary
Initialize network folder
Modify your config.toml(.testnet/config/config.toml)
Fetch genesis
Start node with --halt-height flag.
--halt-height
flag which will automatically stop your node at specified block height - we want to run v0.0.1
until block height 1727178
, then we will update our binary before we proceed.
Update binary to v0.0.2
Once your node has stopped at specified height, we need to update our binary. This is required because it has breaking changes, which would break our state if run before that point. In this case we enabled EIP712 support.
Start node with --halt-height flag.
We will repeat the same procedure and we need to stop our node once again at specified block, then update our binary.
Update binary to v0.0.4
In v0.0.4
we introduced support for mcopy
, which is another breaking change.
Start node with --halt-height flag.
We will repeat the same procedure and we need to stop our node once again at specified block, then update our binary.
Update binary to v0.0.5
In v0.0.5
we introduced changes to DefaultPowerReduction
variable and updated validators state, which is another breaking change.
Start node
Once your node has stopped at specified height, we need to update our binary. As of 18-Mar-2025 v0.0.5
is the last version of tacchaind
. Once we update the binary after block height 3192449
, we will be able to get to the last height, so this time we will start the node without --halt-height
flag.
Was this page helpful?