mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
30 lines
970 B
Bash
Executable File
30 lines
970 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit -o nounset -o pipefail
|
|
command -v shellcheck >/dev/null && shellcheck "$0"
|
|
|
|
echo "Waiting for blockchain and Tendermint RPC server to be available ..."
|
|
timeout 60 bash -c "until curl -s http://localhost:26659/health > /dev/null; do sleep 0.5; done"
|
|
# The chain is unreliable in the first second of its existence (https://gist.github.com/webmaster128/8175692d4af5e6c572fddda7a9ef437c)
|
|
sleep 2
|
|
echo "Waiting for height to be >= 1 ..."
|
|
timeout 20 bash -c "until [ \"\$( curl -s http://localhost:26659/status | jq -r '.result.sync_info.latest_block_height // 0' )\" -ge 1 ]; do sleep 0.5; done"
|
|
echo "Okay, thank you for your patience."
|
|
|
|
SCRIPT_DIR="$(realpath "$(dirname "$0")")"
|
|
|
|
#
|
|
# Cosmos SDK init
|
|
#
|
|
"$SCRIPT_DIR/send_first.js"
|
|
|
|
#
|
|
# CosmWasm init
|
|
#
|
|
(
|
|
echo "Ensuring contracts' checksums are correct ..."
|
|
cd "$SCRIPT_DIR/contracts"
|
|
sha256sum --check checksums.sha256
|
|
)
|
|
"$SCRIPT_DIR/deploy_hackatom.js"
|
|
"$SCRIPT_DIR/deploy_ibc_reflect.js"
|