Key Whitelisting (option 1)
In key whitelisting mode, blockchain data is pulled by the seed from Zilliqa Research-hosted public seed nodes in periodic intervals. Exchanges using this mode generate a public-private key pair and share their public key with Zilliqa Research for whitelisting.
This section describes Option 1 for key whitelisting mode, which uses seed-configuration.tar.gz
and requires opening an inbound port.
Preparing the Machine
Before you start, please ensure the steps below are done.
- Choose and note down a port you wish to reserve for your seed node to receive incoming blockchain data.
important
The port of choice must be opened to inbound connections. Otherwise, the seed node will be unreachable.
Docker Setup
We highly recommend using Docker to set up a seed node, as we provide a tested, production-ready image for your use. If you have not yet set up docker, please follow the instructions on the official documentation.
Once you have set up Docker, you may proceed to download the configuration tarball for the Mainnet:
Once you have successfully uncompressed the tarball, you should generate a new keypair for whitelisting by Zilliqa Research:
The first value from the ouput is the public key and second value is the private key. The private key is required to start the seed node.
info
Any number of seed nodes can use this key pair simultaneously. Hence, you only need to provide one key for whitelisting no matter how many seed nodes you will be operating.
Native Setup
note
This approach has been tested on Ubuntu 18.04 and involves compiling C++. We strongly recommend you consider using the Docker image provided above.
If you cannot or do not wish to use Docker, you may also build the Zilliqa binary from source and run it as such.
The build should exit with no errors. Once it is complete, download the configuration tarball, and generate a keypair:
Configuring the Node
The node requires some configuration before it can successfully join the
network. Most configuration is contained in constants.xml
, which should be
in the directory we extracted seed-configuration.tar.gz
to. Minimally, the
following changes are required:
- Change the value of
ENABLE_WEBSOCKET
totrue
if your seed node will support websockets (refer to the Zilliqa Websocket Server documentation).
Joining the Network
Once the preliminary steps have been completed, joining the network is relatively straightforward.
You will be asked a series of questions. When asked to enter your listening port, please enter the value you noted down earlier. When asked to enter the private key. This is crucial, as your node will not work with anything else.
Sample instructions to be followed for launch are provided below.
- launch_docker.sh
- launch.sh
Testing Your Seed Node's JSON-RPC Port
To check whether your node's JSON-RPC server is publicly available, you can use the following curl command.
If you received the latest blockchain information (similar to the one below) from the seed node, your JSON-RPC service is running well.
Testing Your Seed Node's WebSocket Port
You can use an online WebSocket test utility to test whether your WebSocket is publicly accessible.
- Visit https://www.websocket.org/echo.html
- Under location, put your WebSocket URL link (e.g.,
wss://<yourdomain here or ip:port>
) - Click on connect
- If “CONNECTED” is shown in the log, your WebSocket port is publicly accessible
Next Steps
If you have successfully completed the above steps, you should have
a functioning seed node that exposes an RPC API on localhost:4201
. You may
further check the logs at zilliqa-00001-log.txt
.
The following articles in this series will demonstrate a simple set of functions that can be used as a starting point for exchange developers to implement their own custom business logic around the Zilliqa blockchain. You may find the full source code of the example app in the same repository.