🖥️Installation

Hardware Specifications

CPU
RAM
Storage
Bandwidth

Single Core

500 MB

100 GB SSD

0.1 Mbps Upload/Downlaod

Run Light Node

curl -sL1 https://nubit.sh | bash

Run Using Daemon Service

Create the service by running this command below:

sudo tee /etc/systemd/system/nubit.service > /dev/null <<EOF                                                              
[Unit]
Description=Nubit Light Node
After=network.target

[Service]
User=root
WorkingDirectory=/root/nubit-node
ExecStart=/root/nubit-node/start.sh
Restart=always
RestartSec=10
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=nubit-node

[Install]
WantedBy=multi-user.target
EOF

Enable & Start Service

Check Node Logs

Run Using Screen

Install the Screen package by running this command below:

Verify Screen Installation

Create Screen

Run Light Node

If you want to exit a screen session, simply press Ctrl + A followed by D.

If you want to reattach to a session, use this command below

Backup Generated Wallet Seed Phrase

Import Existing Wallet to Node

Official guide: https://docs.nubit.org/nubit-da/interact-with-nubit-da/manage-keys

Set Environment

Navigate to the nubit-node directory

Set the path and environment variables. Set NODE_TYPE to full if you are running a full node. In this case, we are running a light client

List Keys

Use the following command to view your Nubit address list:

Import Using Mnemonic Phrase Into Nubit-Node

Enter your mnemonic phrase, when prompted with "Enter your bip39 mnemonic,"

Import Using Private Key Into Nubit-Node

Nubit-node also supports importing addresses using private key files. Refer to the following command, replacing my_nubit_key with the desired key name and ~/nubit-da/nubit-node/account1.private with the actual location of your private key file:

Last updated