Add node.sh "-N dev" for devnet

pull/1916/head
Eugene Kim 5 years ago
parent b4e76aa45f
commit 0bd1beab00
  1. 11
      scripts/node.sh

@ -106,7 +106,7 @@ usage: ${progname} [-1ch] [-k KEYFILE]
-d just download the Harmony binaries (default: off) -d just download the Harmony binaries (default: off)
-D do not download Harmony binaries (default: download when start) -D do not download Harmony binaries (default: download when start)
-m collect and upload node metrics to harmony prometheus + grafana -m collect and upload node metrics to harmony prometheus + grafana
-N network join the given network (main, beta, pangaea; default: main) -N network join the given network (main, beta, pangaea, dev; default: main)
-t equivalent to -N pangaea (deprecated) -t equivalent to -N pangaea (deprecated)
-T nodetype specify the node type (validator, explorer; default: validator) -T nodetype specify the node type (validator, explorer; default: validator)
-i shardid specify the shard id (valid only with explorer node; default: 1) -i shardid specify the shard id (valid only with explorer node; default: 1)
@ -231,6 +231,15 @@ beta|pangaea)
network_type=testnet network_type=testnet
dns_zone=p.hmny.io dns_zone=p.hmny.io
;; ;;
dev)
bootnodes=(
/ip4/52.40.84.2/tcp/9870/p2p/QmZJJx6AdaoEkGLrYG4JeLCKeCKDjnFz2wfHNHxAqFSGA9
/ip4/54.86.126.90/tcp/9870/p2p/Qmdfjtk6hPoyrH1zVD9PEH4zfWLo38dP2mDvvKXfh3tnEv
)
REL=devnet
network_type=pangaea
dns_zone=pga.hmny.io
;;
*) *)
err 64 "${network}: invalid network" err 64 "${network}: invalid network"
;; ;;

Loading…
Cancel
Save