Installation of Node
Instructions to install hid-node binary
Building from Source
Clone the Github repository.
git clone https://github.com/hypersign-protocol/hid-node.git
Checkout the tag that the network is currently running on and build the node.
cd hid-node
git checkout v0.2.0
make install
Run the following to ensure that node binary is installed.
hid-noded version
Download the binary
Export the environment variables according to your Operating System and Architecture, and install the binary
export OS=<operating-system>
export ARCH=<system-architecture>
export TAG=0.2.0
# Download the binary
wget https://github.com/hypersign-protocol/hid-node/releases/download/v${TAG}/hid-noded-${TAG}-${OS}-${ARCH}.tar.gz
Refer the following table to obtain the environment variables for your system configuration.
Operating System
OS
ARCH
Linux 64-bit
linux
amd64
Linux ARMv7
linux
arm64
MacOS
darwin
amd64
Last updated