#!/bin/bash

case "$1" in
	"production")
		./zkreged -aw Network 0
		./zkreged -as NetworkName Production
		;;
	"religious") 
		./zkreged -aw Network 1
                ./zkreged -as NetworkName Religious
		;;
	"vegetable")
                ./zkreged -aw Network 2
                ./zkreged -as NetworkName Vegetable
        	;;
	"alpha")
                ./zkreged -aw Network 3
                ./zkreged -as NetworkName Alpha
        	;;
	*)
                ./zkreged -aw Network 1000
                ./zkreged -as NetworkName "$1"
		;;
esac

