Comment on page
🏭
Validation
Maintaining agreement over the growing history of the system.
- Run and maintain screening nodes that are always available and performant
- Help enforce the consensus rules of the network
- Experienced with how to setup and maintain high performance IT infrastructure
- Access to highly performant and reliable IT infrastructure, with high storage, (up & down) bandwidth and processing capacity
- Able to securely store keys
- Hold sufficient amount of the native platform token to put at stake
- currently at least JOY 41.667k in a single account, which is the minimum to sign up – actually getting a validator slot likely requires more
The Joystream blockchain, and therefore the
joystream-node
is built on the substrate framework, developed for the Polkadot ecosystem. As Joystream is still in infancy on mainnet, we refer to the their expertise for the technical specification and recommendations:- CPU
- x86-64 compatible;
- Intel Ice Lake, or newer (Xeon or Core series); AMD Zen3, or newer (EPYC or Ryzen);
- 4 physical cores @ 3.4GHz;
- Simultaneous multithreading disabled (Hyper-Threading on Intel, SMT on AMD);
- Prefer single-threaded performance over higher cores count. A comparison of single-threaded performance can be found here.
- Storage
- An NVMe SSD of 1 TB (As it should be reasonably sized to deal with blockchain growth). An estimation of current chain snapshot sizes can be found here. In general, the latency is more important than the throughput.
- Memory
- 16GB DDR4 ECC.
- System
- Linux Kernel 5.16 or newer.
- Network
- The minimum symmetric networking speed is set to 500 Mbit/s (= 62.5 MB/s). This is required to support a large number of parachains and allow for proper congestion control in busy network situations.
It should be obvious that given the life span and size – thus state and transaction activity – of Polkadot relative to Joystream at this stage, it is certainly fine to scale down on things like storage...
The instructions below cover Linux binaries only. If you want to build from source, clone the repo and follow the build steps there.
- Every time something is written in
<brackets>
, this means you have to replace this with your input, without the<>
. - When something is written in
"double_quotes"
, it means the number/data will vary depending on your node or the current state of the blockchain. - For terminal commands:
$
means you must type what comes afterwards#
means it's just a comment/explanation for the readers convenience
# This is just a comment, don't type or paste it in your terminal!
$ cd ~/
# Only type/paste the "cd ~/, not the preceding $ !
For the purposes of simplicity, we will assume:
- 1.You are user
joystream
, with sudo priveliges. - 2.You want to save everything in
/home/joystream/bin/
$ curl -sL https://api.github.com/repos/Joystream/joystream/releases/latest | jq -r ".tag_name"
At the time of writing, the latest release is
v12.1001.0
, whereas the last node binary is from version v12.1000.0
(mainnet)# Create the directory, and go there
$ mkdir ~/bin && cd ~/bin
# Assuming the latest version is still v12.1000.0
# Download the binary:
$ wget https://github.com/Joystream/joystream/releases/download/v12.1000.0/joystream-node-8.0.0-1a0d1f677df-x86_64-linux-gnu.tar.gz
# unzip it:
$ tar -vxf joystream-node-8.0.0-1a0d1f677df-x86_64-linux-gnu.tar.gz
# Download the chain spec:
$ wget https://github.com/Joystream/joystream/releases/download/v12.1000.0/joy-mainnet.json
# test that your node works:
$ ./joystream-node --chain-spec joy-mainnet.json --pruning archive
Assuming it starts syncing, you can stop it right away with
ctrl+c
The node lets you set a variety of option flags. You can display them all with
./joystream-node --help
Some basic options
you should enable or consider:--chain <CHAIN_SPEC>Specify the chain specification. It can be one of the predefined ones (dev, local, or staging) or it can be a path to a file with the chainspec (such as one exported by thebuild-spec
subcommand).
- Required
- Without this flag, you will not connect the chain.
--pruning <PRUNING_MODE>Specify the state pruning mode, a number of blocks to keep or 'archive'. Default is to keep all block states if the node is running as a validator (i.e. 'archive'), otherwise state is only kept for the last 256 blocks.
- Required for validators
- If you want to be a validator, the node must run with
--pruning archive
- If you start syncing without that flag enabled, you will have to wipe your node and sync again if you change your mind.
--validatorEnable validator mode. The node will be started with the authority role and actively participate in any consensus task that it can (e.g. depending on availability of local keys).
- Required for validators
- Unlike with
--pruning
, it only has to be set when you are actually in the validator set to have an effect, so you don't have to re-sync if you forget while syncing.
--nameThe human-readable name for this node. The node name will be reported to the telemetry server, if enabled.
- Optional
- May serve some benefits if you want someone to nominate you, but may make it easier to identity you.
As a validator, you should (as a bare minimum) be very restrictive in terms of RPC access to your node. Go through the options, and double check that the defaults are in line with your preferences and risk tolerance.
Running as a service means that the node will continue running as a daemon, and you can enable it to restart in case of crashes and on reboot.
It requires sudo privileges. If you are not user
root
, add sudo
before commands.Example file below, with essentials only:
[Unit]
Description=Joystream Node
After=network.target
[Service]
Type=simple
User=joystream
WorkingDirectory=/home/joystream/bin/
ExecStart=/home/joystream/bin/joystream-node \
--chain /home/joystream/bin/joy-mainnet.json \
--pruning archive \
--validator
Restart=on-failure
RestartSec=3
LimitNOFILE=10000
[Install]
WantedBy=multi-user.target
# Create/open a file with your favorite editor (I use nano below)
$ sudo nano /etc/systemd/system/joystream-node.service
# Paste in the example file above, and do "ctrl+x", then "y" and "return" to save
# start it up:
$ sudo systemctl start joystream-node
# check that it's working:
$ sudo systemctl status joystream-node
# For a brief status, OR
$ sudo journalctl -f -n 100 -u joystream-node
# To monitor the log
# If you are happy, enable it so it will start automatically on boot:
$ sudo systemctl enable joystream-node
With your validator node up and running, you are now ready to set up keys and announce your intentions on chain.
In the terminal on your node (will only work if you are on running the chain on the same machine!):
$ curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "author_rotateKeys", "params":[]}' http://localhost:9933
# Which should return:
{"jsonrpc":"2.0","result":"0xabc...123","id":1}
Where
0xabc...123
(a much longer string in reality) is a concatenation of four public keys hex-encoded. The private keys should have been injected in your base-path
. Make sure you copy this string over somewhere, as you need it later.Assuming you only did this once (while running this this chain), and you didn't set a different
--base-path
flag:# On the current network, replace <chain-name> with joy_testnet_7
$ ls -a ~/.local/share/joystream-node/chains/<chain-name>/keystore
# Which should return 4 files, each a long string starting with a 6.
# You can confirm more precisely by:
$ curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "author_hasSessionKeys", "params":["0xabc...123"]}' http://localhost:9933
# Which, if you have the corresponding ready to sign, should return:
{"jsonrpc":"2.0","result":true,"id":1}
Warning:
- It's both bad practice, and a possible slashing risk, to keep multiple set of session keys on one node. If you wanted to try the command, made a mistake, or for whatever reason want to switch them, delete them. If you have had set them on chain (see next steps), you can change them before you get into the validator set.
- Keeping the same set of keys, on multiple nodes, all running with the
--validator
enabled, will cause a slash. A good backup system could include backup nodes, but be careful. It's better to get "booted" for an era than to double sign blocks. It will be treated as an attack even if just by accident.
For the time being, we will only show how to do this with Polkadot{.js} apps, a web based UI, and the Polkadot{.js} extension, a that works with both the aforementioned UI and Joystreams own Pioneer.
As the polkadot-js UI serves lots of projects in the substrate ecosystem, you have to make sure to set the correct endpoint, meaning which network (and node) you connect to. The link above does Joystream automatically, and sets it as default in local storage (until another is set).
The network endpoint can also be set manually by clicking the top left corner, and selecting "Live Networks" -> "Joystream" (hosted by Jsgenesis) before clicking "Switch", from the meny that appears.
This will display the logo, network name, node version and latest block height of the chain you are currently connected to as shown below.

With Polkadot-js
You need two keys for this, one to be the
controller
and one as the stash
. The latter holds the stake and must sign at least once to "delegate" to the controller
which is running the "day to day" operations.Assuming you are fully synched, your node is running, and you have
Steps:
- 1.Go to the "staking actions" tab - "Network" -> "Staking" -> "Accounts", and click the "+ Validator" button in the top right corner.
- 2.Select a
stash
andcontroller
account from the dropdown, set the "value bonded" as the amount you want to stake, and choose a "payment destination", then hit "next". - 3.Paste in the public session keys (
0xabc...123
), choose a "reward commission percentage" and whether you want to allow nominations or not, then click "Bond & Validate".
If you are preparing this for later, click the "+ Stash" button instead. This allows you to wait for your session keys and/or synching your node.
Assuming the transaction went through, you will now appear under the "waiting" tab here. That means you are in the queue for joining the validator set, but when (and whether) you actually join depends on the competition for getting a slot.
At all times, there is a limit to how many can become validators. What that number is set by the council. The current value can be found in the chain state -> "staking" -> "validatorCount".
Suppose that number is
n
, and that there are m
validators that, towards the end of each era
were already validating or joined the queue:- If
n >= m
, all will be elected - If
n<m
, then
validators with the highest total active stake will be elected for the upcomingera
Notes:
- An
era
lasts ~6h. - total active stake refers to the active stake for the validator itself, plus all of their nominators.
Transaction Rejected
There is a minimum threshold of funds required to stake as a validator. As you can get slashed, that means you can not "re-use" tokens that are staked for other "slashable" purposes, such as role stake.
That number can be found in the chain state -> "staking" -> "minValidatorBond". (In base value
HAPI
, meaning 1*10^-10 JOY
)Another reason the transaction can be rejected is if the maximum number of
bonded
accounts have declared as validators. That number can be found in the chain state -> "staking" -> "maxValidatorsCount". How many there are currently can be found in the chain state -> "staking" -> "counterForValidators".There are of course a limitless amount of other reasons the transaction could be rejected if you constructed it yourself in the cli.
TODO
Last modified 8mo ago