
Tokenomics Nedir ve Tüm Web3 Protokolleri için Neden Önemlidir?
"Tokenomics" hakkında henüz bir şey duymadınız mı? Tokenomics, dijital bir tokenın ekonomisinin temel özelliklerine atıfta bulunan yeni bir kavram ve her şeyi kapsayan bir terimdir. Tokenomics, dijital bir token tasarımının temelini oluşturur ve genellikle bir web3 projesi için sürdürülebilirliğin temel belirleyicisidir. Tokenomics hakkında daha fazla bilgi edinmek ve çekici bir token tasarımını neyin oluşturduğunu anlamak için okumaya devam edin. Tokenomics nedir? Web3'te Tokenomics (To...

The Succinct Network: Revolutionizing Proof Generation with Zero-Knowledge Technology
Introduction In the rapidly evolving landscape of decentralized technologies, the Succinct Network emerges as a game-changing protocol designed to enhance the efficiency of zero-knowledge proof generation. Whether you're a crypto enthusiast or an everyday user, understanding the key components and benefits of this innovative system can provide valuable insights into the future of secure and decentralized computation. What is the Succinct Network? At its core, the Succinct Network is a de...

Testnet Lansmanı-Aşama I
Testnet ne zaman? Testnet şimdi. Halka açık testnet, Layer N'nin nasıl çalıştığını deneyimlemek için ilk fırsattır. Kullanıcılar ve geliştiriciler, artan bilgi işlem ve paylaşılan likiditenin zincir üzerinde yeni bir uygulama sınıfını nasıl mümkün kıldığını ilk elden görebilirler. Yüksek verim, düşük gecikme süresi ve üst düzey birleştirilebilirlik özellikleriyle Layer N, mevcut en hızlı merkezi ağlara bile rakiptir. Test ağı üç aşamadan oluşacak:Aşama I: İlk XVM'miz olan NordVM&apo...
<100 subscribers

Tokenomics Nedir ve Tüm Web3 Protokolleri için Neden Önemlidir?
"Tokenomics" hakkında henüz bir şey duymadınız mı? Tokenomics, dijital bir tokenın ekonomisinin temel özelliklerine atıfta bulunan yeni bir kavram ve her şeyi kapsayan bir terimdir. Tokenomics, dijital bir token tasarımının temelini oluşturur ve genellikle bir web3 projesi için sürdürülebilirliğin temel belirleyicisidir. Tokenomics hakkında daha fazla bilgi edinmek ve çekici bir token tasarımını neyin oluşturduğunu anlamak için okumaya devam edin. Tokenomics nedir? Web3'te Tokenomics (To...

The Succinct Network: Revolutionizing Proof Generation with Zero-Knowledge Technology
Introduction In the rapidly evolving landscape of decentralized technologies, the Succinct Network emerges as a game-changing protocol designed to enhance the efficiency of zero-knowledge proof generation. Whether you're a crypto enthusiast or an everyday user, understanding the key components and benefits of this innovative system can provide valuable insights into the future of secure and decentralized computation. What is the Succinct Network? At its core, the Succinct Network is a de...

Testnet Lansmanı-Aşama I
Testnet ne zaman? Testnet şimdi. Halka açık testnet, Layer N'nin nasıl çalıştığını deneyimlemek için ilk fırsattır. Kullanıcılar ve geliştiriciler, artan bilgi işlem ve paylaşılan likiditenin zincir üzerinde yeni bir uygulama sınıfını nasıl mümkün kıldığını ilk elden görebilirler. Yüksek verim, düşük gecikme süresi ve üst düzey birleştirilebilirlik özellikleriyle Layer N, mevcut en hızlı merkezi ağlara bile rakiptir. Test ağı üç aşamadan oluşacak:Aşama I: İlk XVM'miz olan NordVM&apo...
Share Dialog
Share Dialog


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
jq
curl
Install tacchain binary
git clone https://github.com/TacBuild/tacchain.git
cd tacchain
git checkout v0.0.1
make install
Initialize network folder
tacchaind init testnode --chain-id tacchain_2390-1 --home .testnet
Modify your config.toml(.testnet/config/config.toml)
..
timeout_commit = "3s"
..
persistent_peers = "f8124878e3526a9814c0a5f865820c5ea7eb26f8@72.251.230.233:45130,4a03d6622a2ad923d79e81951fe651a17faf0be8@107.6.94.246:45130,ea5719fe6587b18ed0fee81f960e23c65c0e0ccc@206.217.210.164:45130"
..
Fetch genesis
curl https://raw.githubusercontent.com/TacBuild/tacchain/refs/heads/main/networks/tacchain_2390-1/genesis.json > .testnet/config/genesis.json
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.
tacchaind start --chain-id tacchain_2390-1 --home .testnet --halt-height 1727178
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.
git checkout v0.0.2
make install
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.
tacchaind start --chain-id tacchain_2390-1 --home .testnet --halt-height 2259069
Update binary to v0.0.4
In v0.0.4 we introduced support for mcopy, which is another breaking change.
git checkout v0.0.4
make install
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.
tacchaind start --chain-id tacchain_2390-1 --home .testnet --halt-height 3192449
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.
git checkout v0.0.5
make install
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.
tacchaind start --chain-id tacchain_2390-1 --home .testnet
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
jq
curl
Install tacchain binary
git clone https://github.com/TacBuild/tacchain.git
cd tacchain
git checkout v0.0.1
make install
Initialize network folder
tacchaind init testnode --chain-id tacchain_2390-1 --home .testnet
Modify your config.toml(.testnet/config/config.toml)
..
timeout_commit = "3s"
..
persistent_peers = "f8124878e3526a9814c0a5f865820c5ea7eb26f8@72.251.230.233:45130,4a03d6622a2ad923d79e81951fe651a17faf0be8@107.6.94.246:45130,ea5719fe6587b18ed0fee81f960e23c65c0e0ccc@206.217.210.164:45130"
..
Fetch genesis
curl https://raw.githubusercontent.com/TacBuild/tacchain/refs/heads/main/networks/tacchain_2390-1/genesis.json > .testnet/config/genesis.json
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.
tacchaind start --chain-id tacchain_2390-1 --home .testnet --halt-height 1727178
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.
git checkout v0.0.2
make install
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.
tacchaind start --chain-id tacchain_2390-1 --home .testnet --halt-height 2259069
Update binary to v0.0.4
In v0.0.4 we introduced support for mcopy, which is another breaking change.
git checkout v0.0.4
make install
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.
tacchaind start --chain-id tacchain_2390-1 --home .testnet --halt-height 3192449
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.
git checkout v0.0.5
make install
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.
tacchaind start --chain-id tacchain_2390-1 --home .testnet
No comments yet