Pantos Validator Node (reference implementation)
Project description
Pantos Validator Node (reference implementation)
1. Introduction
1.1 Overview
Welcome to the documentation for Pantos Validator Node.
The Pantos Validator Node is responsible for validating cross-chain transfers on behalf of the users. To initiate a cross-chain token transfer, a client has to send a signed request to a service node. To find an appropriate service node, the client can query the PantosHub contract of the source blockchain. To enable this, each service node registers itself at the PantosHub contract of each source blockchain supported by the service node.
1.2 Features
The Pantos Validator Node is split into two applications:
Web server application
The web server application is responsible for the following:
- Serving signed (by the service node) bids.
- Accepting signed (by the user) transfer requests.
Celery application
The celery application is responsible for the following:
- Updating the bids later served to the user through the web application.
- Submitting the signed transfer requests to the source blockchain.
2. Installation
IMPORTANT
We provide two ways to modify the app configuration, either through validator-node-config.env
or validator-node-config.yml
. We recommend using the .env
file, as the .conf
file is overwritten on every install.
While using the .env
file you need to be aware that any fields containing certain special characters need to be wrapped around single quotes (e.g. ETHEREUM_PRIVATE_KEY_PASSWORD='12$$#%R^'
).
The application will complain on startup should the configuration be incorrect.
2.1 Pre-built packages
There are two ways to install the apps using pre-built packages:
Debian package distribution
We provide Debian packages alongside every release, you can find them in the releases tab. Further information on how to use the service node packages can be found here.
We have a PPA hosted on GitHub, which can be accessed as follows:
curl -s --compressed "https://pantos-io.github.io/validatornode/KEY.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/validatornode.gpg >/dev/null
sudo curl -s --compressed -o /etc/apt/sources.list.d/pantos-validatornode.list "https://pantos-io.github.io/validatornode/pantos-validatornode.list"
sudo apt update
sudo apt install pantos-validator-node
Docker images
We also distribute docker images in DockerHub with each release. These are made available under the pantosio project as either app or worker.
You can run a local setup with docker by doing the following steps:
- Enable swarm mode with
docker swarm init
. This is required because we're using theoverlay
network driver. - The variables
DB_URL
,CELERY_BACKEND
andCELERY_BROKER
are already defined in thedocker-compose.yml
- Modify the
.env
file to match your current setup - Ensure you have a
keystore
file located in the same directory - Run
docker compose up
Please note that you may need to add a load balancer or another webserver in front of this setup should you want to host this setup under a specific domain.
If you're hosting this on a cloud provider (AWS, GCP, Azure or alike), these are normally provided. You just need to point the load balancer to the port exposed by the app, 8080
, and configure the rest accordingly.
Multiple local deployments using docker swarm
We support multiple local deployments, for example for testing purposes, using docker swarm. To get started you need to enable swarm mode (if you haven't) by running:
docker swarm init
Then you can run the stacks like this:
make docker-multiple INSTANCE_COUNT=<number of instances>
To remove all the stacks, run the following:
make docker-remove
Please note that this mode uses an incremental amount of resources and that Docker Desktop doesn't fully support displaying it, but it should be good enough to test multi-sig locally.
IMPORTANT If you want to switch between this mode and docker compose you must remove the counterpart by using docker compose down -v
or make docker-remove
respectively.
Python package
We distribute the package in test-pypi and pypi under the following projects: https://test.pypi.org/project/pantos-validator-node/ and https://pypi.org/project/pantos-validator-node/. You can install it to your project by using pip install pantos-validator-node
.
2.2 Prerequisites
Please make sure that your environment meets the following requirements:
Python Version
The Pantos Service Node supports Python 3.10 or higher. Ensure that you have the correct Python version installed before the installation steps. You can download the latest version of Python from the official Python website.
Library Versions
The Pantos Service Node has been tested with the library versions specified in poetry.lock.
Poetry
Poetry is our tool of choice for dependency management and packaging.
Installing: https://python-poetry.org/docs/#installing-with-the-official-installer or https://python-poetry.org/docs/#installing-with-pipx
By default poetry creates the venv directory under under {cache-dir}/virtualenvs
. If you opt for creating the virtualenv inside the project’s root directory, execute the following command:
poetry config virtualenvs.in-project true
2.2 Installation Steps
Libraries
Create the virtual environment and install the dependencies:
$ poetry install --no-root
Pre-commit
In order to run pre-commit before a commit is done, you have to install it:
pre-commit install --hook-type commit-msg -f && pre-commit install
Whenever you try to make a commit, the pre-commit steps are executed.
3. Usage
3.1 Format, lint and test
Run the following command from the repository's root directory:
make code
3.2 Local development environment
PostgreSQL
Launch the PostgreSQL interactive terminal:
sudo -u postgres psql
Create a Service Node user and three databases:
CREATE ROLE "pantos-validator-node" WITH LOGIN PASSWORD '<PASSWORD>';
CREATE DATABASE "pantos-validator-node" WITH OWNER "pantos-validator-node";
CREATE DATABASE "pantos-validator-node-celery" WITH OWNER "pantos-validator-node";
CREATE DATABASE "pantos-validator-node-test" WITH OWNER "pantos-validator-node";
RabbitMQ
Create a Service Node user and virtual host:
sudo rabbitmqctl add_user pantos-validator-node <PASSWORD>
sudo rabbitmqctl add_vhost pantos-validator-node
sudo rabbitmqctl set_permissions -p pantos-validator-node pantos-validator-node ".*" ".*" ".*"
4. Contributing
For contributions take a look at our code of conduct.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pantos_validator_node-1.8.2-py3-none-any.whl
.
File metadata
- Download URL: pantos_validator_node-1.8.2-py3-none-any.whl
- Upload date:
- Size: 76.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 996aa5b00c33c37dcd8b684050aa1f8196a2a97e3c650e5a8a2c09dd0708ebbb |
|
MD5 | 322b82c31fe26f20dab68f63415868cd |
|
BLAKE2b-256 | d92a8c679042383507c48835847179f19f5c6d9dba031c748beebc63a0856cbd |