Validator Setup
-
Setup Validator
1.1 Prepare
1.1.1 Obtain Ethereum Software Wallet or Hardware wallet
Get a Ledger, Hardware or Software wallet ready like Metamask/Portis/Bitski/Torus/myetherwallet. Specific setup instructions will follow.
This wallet will be used for receiving delegation, bounties, and self delegating.
1.1.2 Fund Validator Wallet with ETH
Be ready to have some ETH to accept delegations and link your validator node. Remember these are transactions with SKALE Manager on Ethereum, and therefore require ETH.
Minimum ETH: 1.0
1.1.3 Get SKALE Manager contract ABIs from SKALE
1.1.4 Fund SRW Wallet with ETH
Be ready to fund ETH in your self-recharging wallet (SRW). See Self-recharging wallet documentation.
Minimum ETH:
1.1.5 Decide your commission fee
Decide on your commission fee. This cannot be changed once it is set. To set a new commission fee, you’ll have to register a new validator. This new validator would have to link nodes and accept delegations for it (old validator nodes and delegations cannot be rolled into a new validator commission fee).
Reference Documents
1.2 Register Validator
SKALE Validator CLI is the validator client interface for registering a new validator into network or handling additional delegation services where validators can self delegate or token holders can delegate to a validator. These are the type of operations that can be done with the Validator CLI:
- Register Validator (Set Commission Rate or Minimum delegation amount)
- Accept pending delegations
- Link all validator node addresses to a validator wallet address
- Request or cancel a delegation
See the SKALE Validator CLI documentation
This document contains instructions on how to get started with the SKALE Validator CLI.
1.2.1 Install SKALE Validator CLI
Download the SKALE Validator CLI binary
VERSION_NUM
is a version identifierApply executable permissions to the binary
Set SKALE Manager contracts info and set the endpoint
Required arguments:
-
--endpoint/-e
- RPC endpoint of the node in the network where SKALE manager is deployed (http or https). Example is https://my.geth.node.ip/.. -
--contracts-url/-c
- URL to SKALE Manager contracts ABI and addresses -
-w/--wallet
- Type of the wallet that will be used for signing transactions (software or ledger)
1.2.2 Setup wallet
Software wallet
If you want to use software wallet you need to save private key into a file.
Replace
[YOUR PRIVATE KEY]
with your wallet private keyLedger wallet
If you want to use ledger you should install ETH ledger application and initialize device with
setup-ledger
command.Required arguments:
--address-index
- Index of the address to use (starting from0
)--keys-type
- Type of the Ledger keys (live or legacy)
1.2.3 Register as a new SKALE validator
Required arguments:
--name/-n
- Validator name--description/-d
- Validator description (preferably organization info)--commission-rate/-c
- Commission rate (percent %)--min-delegation
- Validator minimum delegation amount
Optional arguments:
--pk-file
- Path to file with private key (only forsoftware
wallet type)--gas-price
- Gas price value in Gwei for transaction (if not specified doubled average network value will be used)--yes
- Confirmation flag
1.3 Make sure that your validator is added to the trusted list
To ensure that your validator is added to trusted contact SKALE team.
-
Setup SGX
2.1 Overview
SGX is a secure storage for BLS private key shares, which are used in consensus to sign new blocks. SGX is also used for private key shares.
SKALE DKG uses Intel® SGX server to store account and BLS keys and all the data related to DKG process and it also uses the random number generator provided by Intel® SGX. For more information, please check here.
Clients connect to the server, authenticate to it using TLS 1.0 protocol with client certificates, and then issue requests to the server to generate crypto keys and perform cryptographic operations. The keys are generated inside the secure SGX enclave and never leave the enclave unencrypted.
2.2 Configure server
To be able to set up an SGXWallet, validators are required to have SGX compatible servers. Before installing SGXWallet, validators must make sure that SGX is enabled in the server.
2.2.1 Server Requirements
- Ubuntu 20.04 (focal)
- SGX-enabled Intel processor
- At least 8 GB
- Swap size equals to half (1/2) of RAM size
2.3 Configure Network
It’s required to setup VPN between nodes and SGX server. Ports 1026-1031 should open only to SKALE Nodes, not public ports should be accessible by node.
2.4 Install and Configure Packages
Before running SGXWallet install the following packages
Install general tools:
Install Docker:
Install docker.io:
Install docker-compose:
Install cpuid and libelf-dev packages:
Verify your processor supports Intel SGX with:
Disable automatic updates
It’s recommended to only update the SGXWallet server if there are critical security fixes. This is because SGXWallet is based on new low level technology, and kernel updates may break the system. Currently SGX is tested on 4.15-* kernels. It’s best to avoid minor version updates too.
To make sure
apt update
won’t update the kernel you should use apt-mark hold command:Also if you configured unattended upgrades, you should make sure kernel won’t update automatically. To do this, add the following lines to
/etc/apt/apt.conf.d/50unattended-upgrades
file:Output
2.5 Download SGXWallet source code
2.5.1 Clone SGXWallet Repository
Clone SGX Wallet Repository to your SGX compatible Server:
2.5.2 Enable SGX
SGX Wallet repository includes the sgx_enable utility. To enable SGX run:
Note: if you aren’t using Ubuntu 18.04 (not recommended), you may need to rebuild the sgx-software-enable utility before use by typing:
Install SGX Library:
System Reboot:
Check driver installation: To check that isgx device is properly installed run this command:
If you don’t see the isgx device, you need to troubleshoot your driver installation from here.
Another way to verify Intel SGX is enabled in BIOS:
Enter BIOS by pressing the BIOS key during boot. The BIOS key varies by manufacturer and could be F10, F2, F12, F1, DEL, or ESC.
Usually Intel SGX is disabled by default.
To enable:
find the Intel SGX feature in BIOS Menu (it’s usually under the “Advanced” or “Security” menu) Set SGX in BIOS as enabled (preferably) or software-controlled. save your BIOS settings and exit BIOS. Enable “software-controlled” SGX Software-controlled means that SGX needs to be enabled by running a utility.
2.6 Update docker-compose.yaml
Open run_sgx directory
On some machines, the SGX device isn’t /dev/mei0 but a different device, such as /dev/bs0 or /dev/sg0. In this case please edit docker-compose.yml on your machine to specify the correct device to use:
make sure
image
is skalenetwork/sgxwallet:<SGX_VERSION
> in docker-compose and it will look like:2.7 Spin up SGXWallet Container
Start SGX Wallet Containers To run the server as a daemon:
2.8 Securely save generated backup key
The backup key is automatically stored in sgx_data directory.
The filename of the key is sgx_wallet_backup_key.txt, and is generated the first time the SGX wallet is started.
2.9 Backup sgx data
It’s strongly recommended to backup sgx data regularly. The guide can be found here.
-
Node Setup
After Setting up SGX Wallet and create certifications, validators can download the SKALE Node CLI executables register and maintain your SKALE node. This process downloads docker container images from docker hub and spins up SKALE Node functionalities. Some base containers such as SKALE Admin, Bounty, TransactionManager will be created during installation for each node.
This document contains instructions on how to setup node using SKALE Node CLI.
3.1 Prepare Server
Node server should follow compliance requirements which will be checked during installing SKALE node software. Please make sure:
General requirements
- A Linux x86_64 machine
- Ubuntu 20.04 (focal)
- Separate not mounted block device - 2 Tb
- 8 physical cores
- 32GB RAM
- 16GB Swap
More information can be found here: Compliance requirements
3.2 Install Packages
Before setting up node you should make sure that the following software is installed:
- docker
- docker-compose (preferably 1.27.4)
- iptables-persistent
- lvm2
If you have any concerns or questions, please don’t hesitate to reach out to SKALE Team leads on http://skale.chat/[Discord].
3.3 Download Node CLI binary
3.4 Download the Executable
3.5 Apply executable permissions to the downloaded binary:
3.6 Test the Installation
More information can be found here.
3.7 Configure .env
Configuration parameters are passed to Node CLI through .env file. It should contain the following variables:
CONTAINERS_CONFIG_STREAM
- git branch with containers versions configDISK_MOUNTPOINT
- Attached storage block deviceDOCKER_LVMPY_STREAM
- git branch of docker lvmpy volume driver for schainsENDPOINT
- RPC endpoint of the node in the network where SKALE manager is deployed (http
orhttps
)FILEBEAT_HOST
- URL to the Filebeat log serverIMA_CONTRACTS_ABI_URL
- URL to IMA contracts ABI and addressesIMA_ENDPOINT
- IMA endpoint to connect (should be the same asENDPOINT
).MANAGER_CONTRACTS_ABI_URL
- URL to SKALE Manager contracts ABI and addressesSGX_SERVER_URL
- URL to SGX server in the network (i.e. http(s)://host:port , do not add a trailing ”/” after the port number )ENV_TYPE
- network type (mainnet/testnet)
ENDPOINT
,IMA_ENDPOINT
,SGX_SERVER_URL
,DISK_MOUNTPOINT
are server dependent. Other options depend on the network type.For the
{ENV_TYPE}
network .env will look like:It’s possible to configure Telegram based alert system by providing the following options:
TG_API_KEY
- Telegram API keyTG_CHAT_ID
- Telegram chat ID
3.8 Initialize node
To install node on your server you should run
skale node init
. It will create necessary configuration files and run base services and containers.Example Output:
You can verify installation procedure by running:
Output:
The common problem is network misconfiguration between the node and SGXWallet. You can recheck connection status using
skale health sgx
:Output:
3.9 Setup SSL Certificates
3.9.1 Setup IP Redirects
You will need to setup redirects from each node IP to the node domain.
3.9.2 Issue SSL Certificates
You will need SSL certs issued by one of the Trusted CAs. Once you’ve decided on the certificate issuer you have several options - issue a separate certificate for each subdomain (node-0.awesome-validator.com, node-1.awesome-validator.com) or issue a single Wildcard SSL for all nodes (*.awesome-validator.com). As a result, you should have 2 main files saved and copied to the respective nodes:
- Certificate file (for example, fullchain.pem or cert.pem)
- Private key file (for example, privkey.pem, pk.pem)
3.9.3 Upload certificates to the SKALE Node
Once you copied the certificate and private key file, all you have to do is to run the following command:
3.9.4 SSL Status
Status of the SSL certificates on the node
For more details, please see Node SSL docs.
3.10 Fund Node wallet with ETH
Some of the node operations send ETH mainnet transaction (e.g. chain creation). So the node wallet should have at least 1 ETH
To get the address you should run
skale wallet info
command.3.11 Sign Validator ID using SGXWallet
Using validator-cli check your validator ID:
Get your SKALE node signature by running Node CLI command.
Output:
3.12 Link SKALE wallet address to your validator account using Validator CLI
To successfully register new node you should bind node address and validator entity using validator-cli
link-address
:Optional arguments:
--pk-file
- Path to file with private key (only forsoftware
wallet type)--gas-price
- Gas price value in Gwei for transaction (if not specified doubled average network value will be used)--yes
- Confirmation flag
3.13 Backup Node
We strongly recommend to regularly backup node data. The critical information stored
~/.skale
directory.The
skale node backup
command archives the data which you can download and store somewhere else.To restore the node you should use
skale node restore
More information can be found xref:node-cli::index.adoc#_node_backup[here].
3.14 Accept Delegations
Every delegation need to be accepted. You can do it using
sk-val validator accept-delegation
command:Required arguments:
--delegation-id
- Delegation id to accept
Optional arguments:
--pk-file
- Path to file with private key (only for software wallet type)--gas-price
- Gas price value in Gwei for transaction (if not specified doubled average network value will be used)--yes
- Confirmation flag
You can get [DELEGATION-ID] by running
sk-val validator delegations
:You will see your pending delegation (
PENDING
status) as well as already accepted ones (DELEGATED
status). -
Register Node in SKALE Network
4.1 Register Node with Node CLI
To register with the network, you will need to provide the following:
- Node name
- Machine public IP
- Domain name
Optional arguments:
--port
- beginning of the port range that will be used for skale schains (10000
by default)
Output:
4.2 Check Node Status
You can check the status of your node, and ensure that it’s properly registered with the SKALE Network.
Output:
-
Post Registration Checks
Private and backup keys are secured in a safe place.
VPN is configured on all SGXWallet servers.
Ensure node wallets have sufficient ETH
Accept delegations for the next month
Check telegram notifications (if you enabled them)
Use watchdog to monitor node status.
Get support from the SKALE validator community