Links
Comment on page

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
HIDNODE_VERSION=v$(curl -s https://rpc.jagrat.hypersign.id/abci_info | jq -r .result.response.version)
git checkout $HIDNODE_VERSION
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>
# Get the list of tags: https://github.com/hypersign-protocol/hid-node/tags
# Exclude the `v` prefix while entering
export TAG=0.1.2 # Latest Testnet Tag
# 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
Darwin
darwin
arm64