LOGOSNODOS
  • LOGOSNODOS
  • 🖥️Mainnet Node
    • Avail Network
      • ▶️Installation
      • ▶️Staking / Bonding
    • BlockX
      • ▶️Installation
      • ▶️Cheat Sheet
    • Muon Network
      • ▶️Installation
      • ▶️Troubleshooting
    • RaiblocksOne
      • ▶️Installation
      • ▶️Cheat Sheet
    • SGE Network
      • ▶️Installation
      • ▶️Cheat Sheet
    • Quicksilver Protocol
      • ▶️Installation
      • ▶️Cheat Sheet
  • 🛠️TESTNET NODE
    • 0gchain
      • ▶️Installation
      • ▶️Cheat Sheet
    • Airchains
      • ▶️Installation
      • ▶️Cheat Sheet
    • Avail Network
      • ▶️Installation
      • ▶️Challenge Set Identity
      • ▶️Challenge Add Pool
    • Cortensor
      • ▶️Staking and Funding
      • ▶️Installation
      • ▶️Node Management
      • ▶️Monitoring
    • CrossFi
      • ▶️Installation
      • ▶️Cheat Sheet
    • Juneo Network
      • ▶️Installation
      • ▶️Create Supernet
      • ▶️Deploy a VM
    • Namada
      • ▶️Installation
      • ▶️Cheat Sheet
    • Pryzm
      • ▶️Installation
      • ▶️Cheat Sheet
    • Quicksilver Protocol
      • ▶️Installation
      • ▶️Cheat Sheet
    • Swisstronik
      • ▶️Installation
      • ▶️Cheat Sheet
    • Symphony
      • ▶️Installation
      • ▶️Cheat Sheet
  • ⛑️Solidity Compiler
    • Hardhat
      • ▶️Installation
      • ▶️Setup Hardhat on Swisstronik Network
      • ▶️Write and compile the smart contract
      • ▶️Deploy the smart contract
      • ▶️Interact with the contract-Transaction
      • ▶️Interact with the contract-Call
      • ▶️Crafts and Mint Token ERC20
      • ▶️PERC20 (Private ERC20) Deploy, Mint and Transfer.
      • ▶️JSON RPC Call using ETH getStorage
Powered by GitBook
On this page

Was this helpful?

  1. Mainnet Node
  2. RaiblocksOne

Installation

Please follow all steps briefly !!!

Last updated 1 year ago

Was this helpful?

Requirements
Minimum
Recomended

CPU

Core 2+

RAM

4GB+

STORAGE

120GB+ SSD/NVME

Before installing a RaiblocksOne node, one needs to install Docker. To do so, you can use

  • 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'

🖥️
▶️
Install Docker