The wPOKT Validator is a validator node that facilitates the bridging of POKT tokens from the POKT network to wPOKT on the Ethereum Mainnet.
The wPOKT Validator comprises seven parallel services that enable the bridging of POKT tokens from the POKT network to wPOKT on the Ethereum Mainnet. Each service operates on an interval specified in the configuration. Here's an overview of their roles:
-
Mint Monitor: Monitors the Pocket network for transactions to the vault address. It validates transaction memos, inserting both valid
mintandinvalid minttransactions into the database. -
Mint Signer: Handles pending and confirmed
minttransactions. It signs confirmed transactions and updates the database accordingly. -
Mint Executor: Monitors the Ethereum network for
mintevents and marks mints as successful in the database. -
Burn Monitor: Monitors the Ethereum network for
burnevents and records them in the database. -
Burn Signer: Handles pending and confirmed
burnandinvalid minttransactions. It signs the transactions and updates the status. -
Burn Executor: Submits signed
burnandinvalid minttransactions to the Pocket network and updates the database upon success. -
Health: Periodically reports the health status of the Golang service and sub-services to the database.
Through these services, the wPOKT Validator bridges POKT tokens to wPOKT, providing a secure and efficient validation process for the entire ecosystem.
No specific installation steps are required. Users should have Golang installed locally and access to a MongoDB instance, either running locally or remotely, that they can attach to.
To run the wPOKT Validator, execute the following command:
go run .The wPOKT Validator can be configured in the following ways:
-
Using a Config File:
- A sample configuration file
config.sample.ymlis provided. - You can specify the config file using the
--configflag:
go run . --config config.yml - A sample configuration file
-
Using an Env File:
- A sample environment file
sample.envis provided. - You can specify the env file using the
--envflag:
go run . --env .env - A sample environment file
-
Using Environment Variables:
- Instead of using a config or env file, you can directly set the required environment variables in your terminal:
ETH_PRIVATE_KEY="your_eth_private_key" ETH_RPC_URL="your_eth_rpc_url" ... go run .
If both a config file and an env file are provided, the config file will be loaded first, followed by the env file. Non-empty values from the env file or provided through environment variables will take precedence over the corresponding values from the config file.
You can also run the wPOKT Validator using docker compose. Execute the following command in the project directory:
docker compose --env-file .env up --buildThe validator node requires transactions on the POKT network to include a valid memo in the format of a JSON string. The memo should have the following structure:
{ "address": "0xC9F2D9adfa6C24ce0D5a999F2BA3c6b06E36F75E", "chain_id": "5" }address: The recipient address on the Ethereum network.chain_id: The chain ID of the Ethereum network (represented as a string).
Transactions with memos not conforming to this format will not be processed by the validator.
The wPOKT Validator is also available as a Docker image hosted on Docker Hub. You can run the validator in a Docker container using the following command:
docker run -d --env-file .env docker.io/dan13ram/wpokt-validator:latestEnsure you have set the required environment variables in the .env file or directly in the command above.
To assess the individual components of the wPOKT Validator, follow these steps:
-
Execute Unit Tests:
- Open your terminal and run the unit tests using the command:
go test -v ./...
- Open your terminal and run the unit tests using the command:
-
Check Coverage:
- To check the test coverage of the codebase, use the following command:
./coverage.sh
- To check the test coverage of the codebase, use the following command:
To test the core functionalities of the wPOKT Validator in a controlled environment, follow these steps:
-
Navigate to E2E Directory:
- Open your terminal and move to the
./e2edirectory in the project.
- Open your terminal and move to the
-
Start Local Network:
- Within the
./e2edirectory, execute the following commands to set up the local network:make clean make network
- Please allow up to 5 minutes for the local network to be fully operational.
- Within the
-
Run Tests:
- Once the local network is ready, initiate the end-to-end tests using the command:
make test - You need node v18 to run the tests
- Once the local network is ready, initiate the end-to-end tests using the command:
The following diagrams illustrate the architecture and flows of the wPOKT Validator.
They are surfaced here from wpokt-validator/tree/main/diagrams.
This project is licensed under the MIT License.


