mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
47 lines
1.2 KiB
Bash
Executable file
47 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $# -lt 1 ]]; then
|
|
echo
|
|
echo Shyft-Geth: No flags detected, see help:
|
|
echo
|
|
echo " --setup: Setups postgres and the shyft chain db."
|
|
echo " --start: Starts geth."
|
|
echo " --reset: Drops postgress and chain db, and reinstantiates both."
|
|
echo " --js [filename]: Executes web3 calls with a passed file name. If the file name is sendTransactions.js, $ ./shyft-geth.sh --js sendTransactions"
|
|
echo
|
|
exit 1
|
|
fi
|
|
|
|
illegalCommands=()
|
|
while [[ $# -gt 0 ]]
|
|
do
|
|
key="$1"
|
|
case $key in
|
|
--setup)
|
|
sh ./shyft-cli/setup.sh
|
|
shift # past argument
|
|
;;
|
|
--start)
|
|
sh ./shyft-cli/startShyftGeth.sh
|
|
shift # past argument
|
|
;;
|
|
--js)
|
|
sh ./shyft-cli/runJs.sh ./shyft-cli/web3/$2.js
|
|
shift # past argument
|
|
shift # past argument
|
|
;;
|
|
--reset)
|
|
sh ./shyft-cli/shyftFullReset.sh
|
|
shift # past argument
|
|
;;
|
|
*) # unknown option
|
|
illegalCommands+=("$1") # save it in an array for later
|
|
shift # past argument
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [[ "${#illegalCommands[@]}" -gt "0" ]]; then
|
|
echo Shyft-Geth: The following commands are not supported: "${illegalCommands[*]}"
|
|
fi
|
|
|