For DePIN/Validator Node provider
Steps to run a Witness Chain PoL Watchtower Client
Prerequisites
Before you begin, ensure you have the following
Docker (version 23.0.0 or above, refer: https://docs.docker.com/desktop/install/linux-install/)
Instance comparable to a t2 micro (1 vcpu, 1GB RAM and 5GB harddisk)
Running your Watchtower client
There are two aspects in setting up the watchtower,
Registration: so the challengers are aware of it
Running: so the challengers can engage with it
Here's how to get the watchtowers successfully running
Key Points to consider before proceeding...
Ports to be opened if using public IP:
Setting up the Watchtower
You can provide the private key (for example, generated from Metamask) which will be used by the Witnesschain's PoL Watchtower client.
Use ECDSA Keypairs
Registering the Watchtower Key
Download and install the witness CLI:
After the installation is completed, register your watchtower key on WitnessChain's Layer 2 Chain: Use the KeyPair that you would have exported or created using Metamask or any other wallet.
Why should I register?
Registration helps with identification of your watchtower inside Witness Chain's watchtower network
Setting up the Watchtower keys and the config file
You can pass the required configuration to the docker container env via a file or directly with
-e
flag in the run command (read more). Prepare a configuration filewatchtower.env
with the following entries as example shown below:
Explanation:
privateKey
is your PoL signing key (Watchtower Key)walletPublicKey
is the PoL watchtower address (eth address)havePublicIPv4Address
(andhavePublicIPv6Address
) set them to true if you have a public IPv4 (or IPv6)havePrivateIPv4Address
(andhavePrivateIPv6Address
) set them to true if you want to force the use of private IPsaveResultsInDatabase
saves the login, session, and challenge related data in a.sqlite
file within the containerprojectName
tags the watchtower with the project - examples include "spheron", "akash", "pingpong", "eigenlayer", etc. This is an optional field
3. Running the watchtower
Once you have the watchtower.env
ready, the watchtower client can be started with
you can verify that the challenger is running by looking at the container status
Explanation:
docker run -d
: Runs the container in detached mode (in the background).
you can verify that the watchtower is running by looking at the container status
Post Setup
Once the setting up and registration is successful, you can check the logs from the watchtower client ready for challenges. (docker logs pol-watchtower
). Congratulations, you are now a part of our Infinity watch family!
We publish images (x86 & arm64) with the tag latest
and by the git tag, the latest
will always point to the new and up to date image. In order to pull the latest image, make sure you don't have an older release of latest to avoid using cached images.
You can remove the older images by
Troubleshooting
As the only prerequisite is docker, make sure you are running atleast version 23.0.0 or above for the commands mentioned in the doc to work. The days might be rainy or snowy, but we've got umbrellas and sweaters! Join our Discord or Telegram—we're happy to help. :D
Last updated