Hyperspace Node Tutorial

CryptonodeHindi
5 min readJust now

--

The Next Generation of the Web

Overview:

The Fastest AI-Native Blockchain:
Our design seeks to keep minimal on-chain overhead while supporting massively increasing compute demand — building upon our fundamental research in designing multiple blockchain protocols.

Proof-of-FLOPS:
Earn points using a sophisticated proof of work system which regularly sends an AI puzzle to your machine if you are connected using a node.

Fast Payments:
A custom stake-based protocol that incentivizes nodes to maintain maximum payment throughput for the network

Hyperspace Node:

They have Introduce the 3 methods to run their node:

  1. Desktop Node
  2. Browser Node
  3. CLI Node

Hardware Requirement:

  • To get points you need to put into a tier (currently ranging from best to worst as 1–5).
  • Each tier has some required models that you need to download and register to the network and certain amounts of GPU memory:
  • 1: 30GB 2 : 20GB 3 : 8GB 4 : 4GB 5 : 2GB
  • GPU is required here.
  • CPU more than 8vCPU core is required.

As GPU is too expensive, If you have funds you can rent a GPU, else go with CPU.

VPS-Setup:

Gpu Setup:

Let’s Run the Node:

  • We will cover the CLI node option here. For browser installation, you can check out their guide; it’s very simple. I would not recommend using the Desktop version on your PC or laptop, as there is a risk your PC might get compromised.
  • Browser node: Open the link here and start the node. Copy your private key, and if you want, you can run the CLI node with the same private key.

CLI Node:

Run the following command to update and upgrade system packages:

sudo apt update -y && sudo apt upgrade -y

Download:

curl https://download.hyper.space/api/install | bash
source /root/.bashrc

Now create a screen:

screen -S hyperspace

Start the daemon node Inside the screen:

aios-cli start

once, you start the daemon node,just exit from that screen with CTRL A + D

Execute the automated script: (Auto-Mode - Old wallet Import)

wget -q https://raw.githubusercontent.com/CryptonodesHindi/CNH-Shellscripts/refs/heads/main/CNH-Hyperspace.sh&& chmod +x CNH-Hyperspace.sh&& ./CNH-Hyperspace.sh
  • Once you execute the script, it will prompt you for a model, as shown below. Just go with the default model.
  • Once it downloads the model, it will prompt you for the private key. If you have the private key, provide it; otherwise, just enter ‘no’.
  • Now, the script will prompt you to choose the GPU tier. Simply provide your choice (1–5) and proceed.

1 : 30GB 2 : 20GB 3 : 8GB 4 : 4GB 5 : 2GB

Note: VPS users should choose tier 5, while GPU users can select the tier based on their GPU VRAM.

  • You have successfully configured the node. Now, re-enter the screen to check the logs and verify the ping to ensure it is running.
screen -r hyperspace

Manual mode (New Private key only):

# To see which models are needed : 
aios-cli hive select-tier 5
# Download a required model
aios-cli models add hf:TheBloke/phi-2-GGUF:phi-2.Q4_K_M.gguf
# Import your private key - create a my.pem file using nano my.pem and enter a private key (You can import a private key from the Browser version)
aios-cli hive import-keys ./my.pem
# Set these switches as preferred for this session
aios-cli hive login
# Make sure the model is registered
aios-cli hive connect
aios-cli hive select-tier 5\

Points:

  • You need to enter a tier (currently ranging from 1–5 from best to worst) to get a score.
  • Each tier has some required models and certain amounts of GPU memory that you need to download and save to the network:
  • 1 : 30GB 2 : 20GB 3 : 8GB 4 : 4GB 5 : 2GB

Score Check :

aios-cli hive points

Check your private key:

aios-cli hive whoami

Useful Commands :

# For fast connection if the node is stopped : 
aios-cli start --connect
# Update :
aios-cli version
# Stop :
aios-cli kill

Uninstall :

curl https://download.hyper.space/api/uninstall | bash

❤️Thank You for Reading!

I appreciate you taking the time to read this article. If you found it helpful, give it a clap and share it with others who might benefit from it.

For more insightful content on Crypto node, don’t forget to follow me on Medium and connect with me on my social media channels:

--

--

CryptonodeHindi
CryptonodeHindi

Written by CryptonodeHindi

Welcome to Crypto Node Hindi! Your go-to destination for everything related to crypto nodes, blockchain technology, and decentralized networks — all in Hindi!

No responses yet