forked from cerc-io/stack-orchestrator
246d3d8732
* Setup ipld-eth-server to run in-process Nitro node * Update watcher version in fixturenet-payments stack * Update upstream nitro multiaddr in watcher setup * Change RPC query endpoint to ipld-eth-server * Update Ponder config to pay ipld-eth-server Nitro node * Separate nitro-rpc-client service and update demo.md * Remove unnecessary volumes * Update ipld-eth-server branch * Fix clean up steps --------- Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-authored-by: Shreerang Kale <shreerangkale@gmail.com>
58 lines
1.9 KiB
Bash
Executable File
58 lines
1.9 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
nitro_addresses_file="/app/deployment/nitro-addresses.json"
|
|
|
|
# Check if CERC_NA_ADDRESS environment variable is set
|
|
if [ -n "$CERC_NA_ADDRESS" ]; then
|
|
echo "CERC_NA_ADDRESS is set to '$CERC_NA_ADDRESS'"
|
|
echo "CERC_VPA_ADDRESS is set to '$CERC_VPA_ADDRESS'"
|
|
echo "CERC_CA_ADDRESS is set to '$CERC_CA_ADDRESS'"
|
|
echo "Using the above Nitro addresses"
|
|
|
|
export NITRO_NA_ADDRESS=${CERC_NA_ADDRESS}
|
|
export NITRO_VPA_ADDRESS=${CERC_VPA_ADDRESS}
|
|
export NITRO_CA_ADDRESS=${CERC_CA_ADDRESS}
|
|
elif [ -f ${nitro_addresses_file} ]; then
|
|
echo "Reading Nitro addresses from ${nitro_addresses_file}"
|
|
|
|
export NITRO_NA_ADDRESS=$(jq -r '.nitroAdjudicatorAddress' ${nitro_addresses_file})
|
|
export NITRO_VPA_ADDRESS=$(jq -r '.virtualPaymentAppAddress' ${nitro_addresses_file})
|
|
export NITRO_CA_ADDRESS=$(jq -r '.consensusAppAddress' ${nitro_addresses_file})
|
|
else
|
|
echo "File ${nitro_addresses_file} not found"
|
|
exit 1
|
|
fi
|
|
|
|
# Wait till chain endpoint is available
|
|
retry_interval=5
|
|
while true; do
|
|
# Assuming NITRO_CHAIN_URL is of format <ws|http>://host:port
|
|
ws_host=$(echo "$NITRO_CHAIN_URL" | awk -F '://' '{print $2}' | cut -d ':' -f 1)
|
|
ws_port=$(echo "$NITRO_CHAIN_URL" | awk -F '://' '{print $2}' | cut -d ':' -f 2)
|
|
nc -z -w 1 "$ws_host" "$ws_port"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "Chain endpoint is available"
|
|
break
|
|
fi
|
|
|
|
echo "Chain endpoint not yet available, retrying in $retry_interval seconds..."
|
|
sleep $retry_interval
|
|
done
|
|
|
|
echo "Beginning the ipld-eth-server process"
|
|
|
|
START_CMD="./ipld-eth-server"
|
|
if [ "true" == "$CERC_REMOTE_DEBUG" ] && [ -x "/usr/local/bin/dlv" ]; then
|
|
START_CMD="/usr/local/bin/dlv --listen=:40000 --headless=true --api-version=2 --accept-multiclient exec `pwd`/ipld-eth-server --continue --"
|
|
fi
|
|
|
|
echo running: $START_CMD ${VDB_COMMAND} --config=`pwd`/config.toml
|
|
$START_CMD ${VDB_COMMAND} --config=`pwd`/config.toml
|
|
rv=$?
|
|
|
|
if [ $rv != 0 ]; then
|
|
echo "ipld-eth-server startup failed"
|
|
exit 1
|
|
fi
|