You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP

github.com/noah-blockchain/noah-go-node

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/noah-blockchain/noah-go-node

v0.2.5
Version published
Created

last commit license version Go version

NOAH-blockchain go-node

Sub-modules

1) Remote cluster using terraform and ansible

2) Amino

3) IAVL+ Tree

###Guide how to configure and delegate your validator

Quick Installation from Docker

  • Pull docker from official docker hub
docker pull noahblockchain/node
  • Run you validator for initialization node
docker run -p 26656:26656 -p 26657:26657 -p 26660:26660 -p 8841:8841 -p 3000:3000 -v ~/node:/root/noah/ noahblockchain/node noah node --network-id=noah-mainnet-1 --chain-id=mainnet --validator-mode

--network-id=X, where X its choose network (noah-mainnet-1 or noah-testnet-1)

--chain-id=Y, where Y its choose chain (mainnet or testnet)

--validator-mode if node working in Validator mode

Starting validator from source code

1. Clone source code to your machine
mkdir -p $GOPATH/src/github.com/noah-blockchain or $HOME/noah
cd $GOPATH/src/github.com/noah-blockchain
git clone https://github.com/noah-blockchain/noah-go-node.git
cd noah-go-node
2. Install Node Modules
make create_vendor
3. Compile
make build

After this command compiled node will be in folder build and node configuration will be in folder $HOME/noah.

4. Run node

For running validator use command

./build/noah node --network-id=noah-mainnet-1 --chain-id=mainnet --validator-mode

We recommend using our official node docker.

5. Use GUI

Open http://localhost:3000/ in local browser to see node’s GUI.

P.S. Available only in NOT validator mode.

FAQs

Package last updated on 24 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts