If you are looking to simulate a single-node blockchain on a local environment, following are the steps
{% tabs %} {% tab title="Linux" %}
wget https://github.com/hypersign-protocol/hid-node/releases/download/v0.2.0/hid-noded-0.2.0-linux-amd64.tar.gz
tar -xvzf hid-noded-0.2.0-linux-amd64.tar.gz
sudo mv hid-noded-0.2.0-linux-amd64/hid-noded /usr/local/bin
hid-noded version
wget https://github.com/hypersign-protocol/hid-node/raw/main/scripts/localnet-single-node/setup.sh && bash setup.sh
This script will setup validators and its cryptographic keys. It will also fund token in your genesis account.
hid-noded start
➜ hid-noded start
7:54PM INF starting node with ABCI Tendermint in-process
7:54PM INF service start impl=multiAppConn module=proxy msg={}
7:54PM INF service start connection=query impl=localClient module=abci-client msg={}
7:54PM INF service start connection=snapshot impl=localClient module=abci-client msg={}
7:54PM INF service start connection=mempool impl=localClient module=abci-client msg={}
7:54PM INF service start connection=consensus impl=localClient module=abci-client msg={}
7:54PM INF service start impl=EventBus module=events msg={}
7:54PM INF service start impl=PubSub module=pubsub msg={}
7:54PM INF service start impl=IndexerService module=txindex msg={}
{% endtab %}
{% tab title="Mac Os" %}
wget https://github.com/hypersign-protocol/hid-node/releases/download/v0.1.7/hid-noded-0.1.7-darwin-arm64.tar.gz
tar -xvzf hid-noded-0.1.7-darwin-arm64.tar.gz
sudo mv hid-noded-0.1.7-darwin-arm64/hid-noded /usr/local/bin
hid-noded version
wget https://raw.githubusercontent.com/hypersign-protocol/hid-node/main/localnetsetup.sh && bash localnetsetup.sh
This script will setup validators and its cryptographic keys. It will also fund token in your genesis account.
hid-noded start
{% endtab %} {% endtabs %}