▶️Installation
Please follow all steps briefly !!!
Requirements
Minimum
Recomended
CPU
Core 2+
RAM
4GB+
STORAGE
120GB+ SSD/NVME
Update and Install Dependencies
apt update -y &&
apt upgrade -y &&
apt autoremove -y &&
apt install screen curl -y
Pull image from the docker
docker pull raiblocksone/raione:R1_V.02
Run the node once, so you can make a setting file
docker run --restart=unless-stopped -d -p 7075:7075 -p 127.0.0.1:7076:7076 -p 127.0.0.1:7078:7078 -v /root/raiblocksone/:/root --name <your docker name> raiblocksone/raione:R1_V.02
Now stop the node to configure some settings
docker stop <your docker name>
Open the config-node.toml file
sudo nano raiblocksone/Nano/config-node.toml
Copy this code below and place it on the top command
[node]
enable_voting = true
Change RPC setting (change enable-control = true)
sudo nano raiblocksone/Nano/config-rpc.toml
Restart the node
docker restart <your docker name>
Useful Command
Check Version: curl -g -d '{ "action": "version"}' 'localhost:7076'
Block Count: curl -g -d '{ "action": "block_count"}' 'localhost:7076'
Create New Wallet ID: curl -g -d '{ "action": "wallet_create"}' 'localhost:7076' Create New Wallet Account: curl -g -d '{ "action": "account_create", "wallet": "%WALLET_ID% "}' 'localhost:7076'
Last updated
Was this helpful?