Upstream Script Sources
fakenet-node
scripts/run_nockchain_node_fakenet.sh
nockchain --fakenet --bind-public-grpc-addr 127.0.0.1:5555 --bind /ip4/127.0.0.1/udp/3006/quic-v1
Start the local fakenet hub/node with public local gRPC and a fixed UDP/QUIC bind address.
fakenet-miner
scripts/run_nockchain_miner_fakenet.sh
nockchain --mine --fakenet --mining-pkh ${MINING_PKH} --peer /ip4/127.0.0.1/udp/3006/quic-v1 --no-default-peers
Mine against the local fakenet node by explicitly peering to the hub and disabling default peers.
mainnet-node
scripts/run_nockchain_node.sh
nockchain
Start a non-mining Nockchain node from the current environment and persisted state.
mainnet-miner
scripts/run_nockchain_miner.sh
nockchain --mining-pkh ${MINING_PKH} --mine --num-threads $num_threads
Start a miner with logical CPU count minus two threads, bounded to at least one mining thread.