CodeBlockLabs
CommunityPromo VPS
  • Welcome
  • Getting Started
    • What is Node?
    • Your First Nodes
  • Blockchain Nodes
    • Banano
      • Installation
      • Node Configuration
      • RPC Command
      • Cli Command
      • Other
    • BlockCast
      • Installation
    • BlockX
      • Installation
      • Useful Command
    • Elys
      • Installation
      • Useful Command
    • LayerEdge
      • Installation
      • Automation
    • Lumera
      • Installation
      • Useful Command
      • Snapshot
    • RaiBlocksOne
      • Installation
      • RPC Command
      • Other
    • RaiCoin
      • Installation
      • Node Configuration
      • RPC Command
      • Other
    • Selfchain
      • Installation
      • Useful Command
      • Snapshot
    • Symphony
      • Installation
      • Useful Command
      • Snapshot
      • Oracle
      • Patch
  • Other
    • Automation Scripts
      • Auto Send
    • Blockchain Explorer
    • Go Version Manager (Multi Go)
    • NodeJS
    • Proxmox
      • Proxmox Installation
      • Proxmox FAQ
    • WSL
      • Linux Packages
Powered by GitBook
On this page
  1. Blockchain Nodes
  2. RaiBlocksOne

Installation

Update and Install Dependencies

apt update -y && apt upgrade -y && apt autoremove -y && apt install screen curl -y

Install Docker

apt install docker.io -y

Pull Images From Docker Hub

docker pull raiblocksone/raione:R1_V.02

Run Nodes Once To Get Settings 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 raione-node raiblocksone/raione:R1_V.02 

Stop Nodes

docker stop raione-node

Enable Voting

sudo nano raiblocksone/Nano/config-node.toml

copy this code below to the config-node.toml

// Copy this code at the top of file config-node.toml
[node]

enable_voting = true

Change RPC Settings

// change the value of enable_control to true
sudo nano raiblocksone/Nano/config-rpc.toml

Restart The Services

docker restart raione-node

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'

PreviousRaiBlocksOneNextRPC Command

Last updated 7 months ago