forked from cerc-io/stack-orchestrator
53ed18b3dc
* Update sushiswap-subgraph stack to point to filecoin endpoint * Deploy blocks subgraph in sushiswap-subgraph stack * Update subgraph config * Remove duplicate nativePricePool * Enable debug logs in graph-node and update instructions * Two additional miner nodes in fixturenet-lotus * Revert experimental change for additional miner nodes * Set ETHEREUM_REORG_THRESHOLD env for graph-node to catch up to head * Take ETH RPC endpoint for graph-node from env * Set default values for RPC endpoint in graph-node * Rename fixturenet-graph-node pod to graph-node * Clean up sushiswap-subgraph stack * Use deployment command in sushiswap-subgraph stack * Add a separate fixturenet-sushiswap-subgraph stack * Fix pods in fixturenet-sushiswap-subgraph * Fix fixturenet subgraph deployment commands and instructions --------- Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
43 lines
1.8 KiB
Bash
Executable File
43 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd v3
|
|
|
|
# Loop until the NFPM deployment is detected
|
|
echo "Waiting for sushiswap-periphery deployments to occur"
|
|
while [ ! -f ./periphery-deployments/docker/NonfungiblePositionManager.json ]; do
|
|
sleep 5
|
|
done
|
|
|
|
echo "Reading contract addresses and block numbers from deployments"
|
|
FACTORY_ADDRESS=$(jq -r '.address' ./core-deployments/docker/UniswapV3Factory.json)
|
|
FACTORY_BLOCK=$(jq -r '.receipt.blockNumber' ./core-deployments/docker/UniswapV3Factory.json)
|
|
NATIVE_ADDRESS=$(jq -r '.address' ./periphery-deployments/docker/WFIL.json)
|
|
NFPM_ADDRESS=$(jq -r '.address' ./periphery-deployments/docker/NonfungiblePositionManager.json)
|
|
NFPM_BLOCK=$(jq -r '.receipt.blockNumber' ./periphery-deployments/docker/NonfungiblePositionManager.json)
|
|
|
|
# Read the JavaScript file content
|
|
file_content=$(</app/config/lotus-fixturenet.js.template)
|
|
|
|
# Replace uppercase words with environment variables
|
|
echo "Reading values in lotus-fixturenet config"
|
|
replaced_content=$(echo "$file_content" | sed -e "s/FACTORY_ADDRESS/$FACTORY_ADDRESS/g" \
|
|
-e "s/FACTORY_BLOCK/$FACTORY_BLOCK/g" \
|
|
-e "s/NFPM_ADDRESS/$NFPM_ADDRESS/g" \
|
|
-e "s/NFPM_BLOCK/$NFPM_BLOCK/g" \
|
|
-e "s/NATIVE_ADDRESS/$NATIVE_ADDRESS/g")
|
|
|
|
# Write the replaced content back to the JavaScript file
|
|
echo "$replaced_content" > /app/config/lotus-fixturenet.js
|
|
|
|
echo "Building v3 subgraph and deploying to graph-node..."
|
|
|
|
pnpm run generate
|
|
pnpm run build
|
|
|
|
pnpm exec graph create --node http://graph-node:8020/ sushiswap/v3-lotus
|
|
pnpm exec graph deploy --node http://graph-node:8020/ --ipfs http://ipfs:5001 --version-label 0.1.0 sushiswap/v3-lotus
|
|
|
|
echo "Done"
|