Timechain Node Setup Guide
Guide on Timechain Node for Analog by NodeCattel π π»
Run an Analog Timechain Node
βοΈ Hardware Requirement
- Memory: 16 GB
- CPU: 8 cores
- Disk: 300 GB NVME SSD
- Bandwidth: 500 MBps for Download / UploadSystem updates
sudo apt update && sudo apt upgrade -yInstall Prerequisites for Docker
# Install prerequisites
sudo apt install apt-transport-https ca-certificates curl software-properties-common -yInstall Docker
# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
# Install the Docker packages
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# Verify that docker is installed correctly
sudo docker run hello-worldSuccessful Docker Installation should show result like this
Download Timechain Docker Image
Run Timechain Node
*Please set your own node's name in the command*
Then Run the Timechain Node Docker *If you have another application already using ports 9944 and 30303 on your host machine, you can map alternative ports to these Docker container ports as follows - PORT:9944 or PORT:30303*
Install websocat
It should return the result similar to below
Generate Session Key
The result should be
Copy the long hash value in "result" and save it to your text editor app for later use.
Create Wallet using Wallet Extension
Install wallet in your browser by following this guide
We recommend Fearless Wallet or Subwallet Change network to Analog Testnet and copy your wallet address and save to your profile for later use.
You can run echo $WALLET_ANALOG to reveal your address anytime
Request Token Faucet
Heading to Analog's Discord Faucet Channel and type
You can request 1 TANLOG for every 12 hours
Trigger Payout
Head to Polkadot.js and click "+ Validator" on the top right and input rotatekeys from this step (0x...) then 'Bond & Validate'
Submit the Whitelist Form
Submit Here and wait for approval from team.
Congratulation!! π»
Now you have completed your node for Analog.

Last updated