wait-for-deployer.sh 259 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #!/bin/bash set -eou if [[ -z $URL ]]; then echo "Must pass URL" exit 1 fi echo "Waiting for Deployer" curl \ --silent \ --output /dev/null \ --retry-connrefused \ --retry 1000 \ --retry-delay 1 \ $URL echo "Contracts deployed"