#!/usr/bin/env bash # # Start a validator # here=$(dirname "$0") # shellcheck source=multinode-demo/common.sh source "$here"/common.sh args=( --max-genesis-archive-unpacked-size 1073741824 ) airdrops_enabled=1 node_sol=500 # 500 SOL: number of SOL to airdrop the node for transaction fees and vote account rent exemption (ignored if airdrops_enabled=0) label= identity= vote_account= no_restart=0 gossip_entrypoint= ledger_dir= usage() { if [[ -n $1 ]]; then echo "$*" echo fi cat <