πŸ’»Installation

Officially stated requirements: 2/4/100 ubuntu 22.04

βœ…UOMI Finney Incentivized Testnet Launched

50,000,000 $UOMI tokens allocated to reward node operators starting with this testnet!

Validators are the core of the UOMI ecosystem, powering block production, AI computation, and cross-chain interaction. By running a validator node, you actively contribute to the growth of the network, and $UOMI tokens are rewards for your participation

Choose the node type that suits your setup:

RPC nodes: light, full, or archive, optimized for data access and interaction (these node types are subject to question regarding rewards) Validator nodes: require 48GB of GPU RAM and a full node setup to validate transactions and secure the network

Server preparation

apt update && apt upgrade -y
apt install curl build-essential git wget jq make gcc tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev libclang-dev -y

Ports used

AI runs on port 8888

# validator
ufw allow 30333 comment p2p
ufw allow 9944 comment rpc
ufw allow 9615 comment prometheus

Install python 3.10

AI Installation

Clone the repository for AI

Create a directory for the validator database

Install miniconda

Install the necessary software

Create a service file

Validator setup

Download genesis

Download the binary file

Create a wallet and save the output

Generate the Ed25519 key for GRANDPA using your seed phrase obtained above

Create a service file

Adding Keys STEP 1

Once your node is up and running, paste your keys

NOTE - replace SECRET_PHRASE and PUBLIC KEY (hex) with your data obtained with the first command "key generate --scheme Sr25519"

Adding Keys STEP 2

NOTE - replace SECRET_PHRASE and PUBLIC KEY (hex) with your data obtained using the second command "key inspect --scheme Ed25519"

Finally after the node is fully synced run the following command to generate session keys when creating a validator in polkadot js

Last updated