mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-14 17:24:51 +01:00
Matthias Kretschmann
53d984a3b6
* add contracts copying script * AssetList failsafe against unexpected Aquarius responses * grab dev contract addresses from address.json * script fix * fix auto-connection in NetworkMonitor * update dev instructions * remove the last_block Aquarius workaround * fix providerUri switch in file input
32 lines
949 B
Bash
Executable File
32 lines
949 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Wait for contracts migration and extract artifacts
|
|
|
|
RETRY_COUNT=0
|
|
COMMAND_STATUS=1
|
|
|
|
printf '\n\e[33m◯ Waiting for contracts to be generated...\e[0m\n'
|
|
|
|
mkdir -p artifacts
|
|
|
|
until [ $COMMAND_STATUS -eq 0 ] || [ $RETRY_COUNT -eq 120 ]; do
|
|
contracts_docker_id=$(docker container ls | grep contracts | awk '{print $1}')
|
|
docker cp "${contracts_docker_id}":/ocean-contracts/artifacts/ready ./artifacts/ > /dev/null 2>&1
|
|
COMMAND_STATUS=$?
|
|
sleep 5
|
|
(( RETRY_COUNT=RETRY_COUNT+1 ))
|
|
done
|
|
|
|
printf '\e[32m✔ Found new contract artifacts.\e[0m\n'
|
|
|
|
rm -rf ./artifacts/
|
|
|
|
if [ $COMMAND_STATUS -ne 0 ]; then
|
|
echo "Waited for more than two minutes, but contracts have not been migrated yet. Did you run an Ethereum RPC client and the migration script?"
|
|
exit 1
|
|
fi
|
|
|
|
docker cp "${contracts_docker_id}":/ocean-contracts/artifacts/. ./node_modules/@oceanprotocol/contracts/artifacts/
|
|
|
|
printf '\e[32m✔ Copied new contract artifacts.\e[0m\n'
|