πŸ’»Installation

Officially stated requirements: 4 GB RAM 2 CPU Cores 60 GB Disk Space x86/X64 Processor

Server preparation

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

Node installation

tmux new-session -s xai
mkdir -p $HOME/.xai
cd .xai
wget -O $HOME/.xai/sentry-node-cli-linux.zip "https://github.com/xai-foundation/sentry/releases/download/1.1.5/sentry-node-cli-linux.zip"
unzip sentry-node-cli-linux.zip

rm sentry-node-cli-linux.zip

sha256sum $HOME/.xai/sentry-node-cli-linux
#aafeceb73805402bd5bff43f83bd1addd3e22847f6018d22ea207e089b0495f1
./sentry-node-cli-linux

Adding Sentry Wallet (operator)

When using the CLI, it is not necessary to assign your key wallets to an Operator, since when using the boot-operator command, each wallet containing a key serves as an Operator by default. However, if you want to designate a specific wallet as an Operator, you can follow these steps

# enter the command to add an operator and enter the private key of the wallet
add-operator
# look at the list of operators
list-operators

To start, enter the command and enter the private key of the wallet

boot-operator

Last updated