Skip to content

kjincgroup/temporal-testnet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Temporal Public Testnet

Generate a gentx on a server that has never run a Temporal node before:

Clone and install the node:

git clone https://github.com/temporal-zone/temporal.git
cd temporal
git checkout v0.2.1
make install

Restore your keys:

temporald keys add NAME_OF_KEY
temporald keys list

Copy your new temporal address

Init the node, add a genesis account and generate the gentx:

temporald init NODE_NAME --chain-id temporal-test-1 --default-denom utprl
temporald add-genesis-account TEMPORAL_ADDRESS 1000000000000utprl

Note: if you get an error that it failed to to get address from Keybase, try adding --keyring-backend os, unless when you restored your keys you explicitly specificed a different keyring-backend, then use that one.

temporald gentx NAME_OF_KEY 1000000000000utprl \
--chain-id temporal-test-1 \
--moniker="YOUR_VALIDATOR_NAME" \
--commission-rate 0.05 \
--commission-max-rate 0.10 \
--commission-max-change-rate 0.05 \
--details="XXXXXXXX" \
--identity YOUR_KEYBASE_ID \
--security-contact="XXXXXXXX" \
--website="XXXXXXXX"

Please then submit the gentx-VALIDATOR-NAME.json file to the gentx folder in this repo.

Generate a gentx on a server that has run a Temporal node before:

Update the node to the newest version and install the new binary:

cd temporal
git fetch && git pull
git checkout v0.2.1
make install

Copy your temporal address:

temporald keys list

Init the node, add a genesis account and generate the gentx:

temporald init NODE_NAME --chain-id temporal-test-1 --default-denom utprl --overwrite
temporald add-genesis-account TEMPORAL_ADDRESS 1000000000000utprl

Note: if you get an error that it failed to to get address from Keybase, try adding --keyring-backend os, unless when you restored your keys you explicitly specificed a different keyring-backend, then use that one.

temporald gentx NAME_OF_KEY 1000000000000utprl \
--chain-id temporal-test-1 \
--moniker="YOUR_VALIDATOR_NAME" \
--commission-rate 0.05 \
--commission-max-rate 0.10 \
--commission-max-change-rate 0.05 \
--details="XXXXXXXX" \
--identity YOUR_KEYBASE_ID \
--security-contact="XXXXXXXX" \
--website="XXXXXXXX"

Please then submit the gentx-VALIDATOR-NAME.json file to the gentx folder in this repo.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published