Tabi is the fastest general purpose L1 blockchain and the first parallelized EVM.
For the most up to date documentation please visit https://docs.tabichain.com/
How to validate on the Tabi Testnet-v3
Minimum
- 16 GB RAM
- 2 TB NVME SSD
- 8 Cores (modern CPU's)
Linux (x86_64) or Linux (amd64) Recommended Arch Linux
Dependencies
Prerequisite: go1.18+ required.
- Arch Linux:
pacman -S go - Ubuntu:
sudo snap install go --classic
Prerequisite: git.
- Arch Linux:
pacman -S git - Ubuntu:
sudo apt-get install git
Optional requirement: GNU make.
- Arch Linux:
pacman -S make - Ubuntu:
sudo apt-get install make
Clone git repository
git clone https://github.com/tabilabs/tabi-v2
cd tabiv-v2
git checkout $VERSION
make buildGenerate keys
-
tabid keys add [key_name] -
tabid keys add [key_name] --recoverto regenerate keys with your mnemonic -
tabid keys add [key_name] --ledgerto generate keys with ledger device
Start tabid on Linux
- cd build
- Start the node sudo:
./tabid start
tabid tx staking create-validator \
--from {{KEY_NAME}} \
--chain-id \
--moniker="<VALIDATOR_NAME>" \
--commission-max-change-rate=0.01 \
--commission-max-rate=1.0 \
--commission-rate=0.05 \
--details="<description>" \
--security-contact="<contact_information>" \
--website="<your_website>" \
--pubkey $(tabid tendermint show-validator) \
--min-self-delegation="1" \
--amount <token delegation>atabi \
--node localhost:26657