We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f91ba7b commit e74d2d3Copy full SHA for e74d2d3
setup-test-network.sh
@@ -74,6 +74,10 @@ docker compose up -d graph-contracts
74
# Wait for contracts to be deployed
75
timeout 300 bash -c 'until docker ps -a | grep graph-contracts | grep -q "Exited (0)"; do sleep 5; done'
76
77
+# Before checking the smart contract, ensure they make it to the local network
78
+# by mining some blocks
79
+./scripts/mine-block.sh 100 2>/dev/null || true
80
+
81
# Verify the contracts have code
82
graph_token_address=$(jq -r '."1337".GraphToken.address' contracts.json)
83
controller_address=$(jq -r '."1337".Controller.address' contracts.json)
0 commit comments