add help message and ability to use blockscout as verifier

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2025-06-29 15:00:26 +03:00
parent a001198eba
commit 0f90364112
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB

View File

@ -6,6 +6,20 @@ START=1
END=4 END=4
VERIFY_NEEDED="--verify" VERIFY_NEEDED="--verify"
usage() {
echo "Correct deployer script usage:"
echo -e "\t-s, --start - from which contract deployment should start."
echo -e "\t-e, --end - last contract deployment to be done."
echo -e "\t-n, --network - network name to be deployed on."
echo -e "\t-b, --blockscout - should try to use blockscout as verifier."
echo -e "\nAvailable network names: ${AVAILIABLE_NETWORKS[@]}"
echo -e "\nContract enumeration:"
echo "0) WETH9"
echo "1) UniswapV2Factory"
echo "2) UniswapV2Router"
exit 1
}
while [[ $# -gt 0 ]]; while [[ $# -gt 0 ]];
do do
case "${1}" in case "${1}" in
@ -24,6 +38,17 @@ do
shift shift
shift shift
;; ;;
-b|--blockscout)
VERIFY_NEEDED+=" --verifier blockscout"
shift
;;
-h|--help)
usage
;;
*)
echo -e "\nERROR: Unknown option provided\n"
usage
;;
esac esac
done done