forked from connext/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-integration-devnet-test.sh
executable file
·150 lines (122 loc) · 6.26 KB
/
setup-integration-devnet-test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#!/bin/bash
##### Loading .env file contents
echo "Loading .env contents"
set -a
source .env
set +a
echo ".env contents loaded"
#####
##### Config Variables
LOCALHOST="127.0.0.1"
NETWORK="devnet"
##### Devnet Deployments
echo "Updating tenderly cli..."
sh ./install-tenderly-cli.sh
echo "Starting devnets..."
MAINNET_DEVNET_RPC_URL=$(tenderly devnet spawn-rpc --project $TENDERLY_PROJECT_SLUG --template $TENDERLY_MAINNET_DEVNET_TEMPLATE --account $TENDERLY_ACCOUNT_ID --access_key $TENDERLY_ACCESS_KEY 2>&1)
OPTIMISM_DEVNET_RPC_URL=$(tenderly devnet spawn-rpc --project $TENDERLY_PROJECT_SLUG --template $TENDERLY_OPTIMISM_DEVNET_TEMPLATE --account $TENDERLY_ACCOUNT_ID --access_key $TENDERLY_ACCESS_KEY 2>&1)
GNOSIS_DEVNET_RPC_URL=$(tenderly devnet spawn-rpc --project $TENDERLY_PROJECT_SLUG --template $TENDERLY_GNOSIS_DEVNET_TEMPLATE --account $TENDERLY_ACCOUNT_ID --access_key $TENDERLY_ACCESS_KEY 2>&1)
echo "Mainnet devnet rpc url: $MAINNET_DEVNET_RPC_URL"
echo "Optimism devnet rpc url: $OPTIMISM_DEVNET_RPC_URL"
echo "Gnosis devnet rpc url: $GNOSIS_DEVNET_RPC_URL"
export MAINNET_DEVNET_RPC_URL
export OPTIMISM_DEVNET_RPC_URL
export GNOSIS_DEVNET_RPC_URL
#####
##### Create config files from the templates.
mainnet_rpcs=("$MAINNET_DEVNET_RPC_URL")
optimism_rpcs=("$OPTIMISM_DEVNET_RPC_URL")
gnosis_rpcs=("$GNOSIS_DEVNET_RPC_URL")
chains_mainnet=$(jq -n --argjson providers "$(printf '%s\n' "${mainnet_rpcs[@]}" | jq -R . | jq -s .)" '{"providers": $providers}')
chains_optimism=$(jq -n --argjson providers "$(printf '%s\n' "${optimism_rpcs[@]}" | jq -R . | jq -s .)" '{"providers": $providers}')
chains_gnosis=$(jq -n --argjson providers "$(printf '%s\n' "${gnosis_rpcs[@]}" | jq -R . | jq -s .)" '{"providers": $providers}')
echo "mainnet: $chains_mainnet"
echo "optimism: $chains_optimism"
echo "gnosis: $chains_gnosis"
chains_json=$(jq -n \
--argjson chains_mainnet "$chains_mainnet" \
--argjson chains_optimism "$chains_optimism" \
--argjson chains_gnosis "$chains_gnosis" \
'{"6648936": $chains_mainnet, "1869640809": $chains_optimism, "6778479": $chains_gnosis}'
)
echo "chains: $chains_json"
# Add docker paths to replace/add `chains` in config.json
config_dir_paths=("docker/cartographer" "docker/lighthouse" "docker/router" "docker/sequencer" "docker/relayer" "docker/watcher")
template_file="config-template.json"
for dir_path in "${config_dir_paths[@]}"; do
echo "Finding $template_file in $dir_path"
template_file_path="$dir_path/$template_file"
# Check if the config file exists
if [ -f "$template_file_path" ]; then
target_file_path="${dir_path}/config.json"
# Use jq to load the JSON file, add elements, and save the modified content
jq ". + { "network": \"$NETWORK\", "subgraphPrefix": \"$NETWORK\", "chains": $chains_json }" "$template_file_path" > "$target_file_path"
else
echo "$template_file_path not found"
fi
done
#####
##### IPFS, postgres, graph nodes.
echo "Starting ipfs, postgres and graph-node..."
docker compose -f docker-compose.devnets.yaml up -d --force-recreate
sleep 5
#####
##### Delete previous devnet deployment records if they exist.
rm -rf -- packages/deployments/contracts/deployments/devnet-mainnet
rm -rf -- packages/deployments/contracts/deployments/devnet-optimism
rm -rf -- packages/deployments/contracts/deployments/devnet-gnosis
#####
##### Contract Deployments
echo "Deploying contracts to the devnet"
yarn workspace @connext/smart-contracts devnet:deploy --network all
echo "Deployed contracts to the devnet"
echo "Initializing contracts - devnet"
yarn workspace @connext/smart-contracts devnet:init
echo "Initialized contracts - devnet"
#####
##### Subgraph Deployments
echo "Building subgraph for the hub chain - mainnet-devnet..."
yarn workspace @connext/nxtp-subgraph prepare:devnet:amarok-hub-v0
yarn workspace @connext/nxtp-subgraph codegen
echo "Built subgraph for the hub chain"
echo "Deploying subgraph to the hub chain - mainnet-devnet..."
yarn workspace @connext/nxtp-subgraph create:hub_devnet_mainnet --node http://localhost:8020/
yarn workspace @connext/nxtp-subgraph deploy:hub_devnet_mainnet --node http://localhost:8020/ -l v0.0.1
yarn workspace @connext/nxtp-subgraph prepare:devnet:amarok-runtime-v0 mainnet
yarn workspace @connext/nxtp-subgraph codegen
yarn workspace @connext/nxtp-subgraph create:devnet_v0_mainnet --node http://localhost:8020/
yarn workspace @connext/nxtp-subgraph deploy:devnet_v0_mainnet --node http://localhost:8020/ -l v0.0.1
echo "Deployed subgraph to the hub chain - mainnet-devnet"
echo "Building subgraph for the spoke chain - optimism-devnet"
yarn workspace @connext/nxtp-subgraph prepare:devnet:amarok-runtime-v0 optimism
yarn workspace @connext/nxtp-subgraph codegen
echo "Built subgraph for the spoke chain - optimism-devnet"
echo "Deploying subgraph to the spoke chain - optimism-devnet..."
yarn workspace @connext/nxtp-subgraph create:devnet_v0_optimism --node http://localhost:9020/
yarn workspace @connext/nxtp-subgraph deploy:devnet_v0_optimism --node http://localhost:9020/ -l v0.0.1
echo "Deployed subgraphs to the optimism-devnet"
echo "Building subgraph for the spoke chain - gnosis-devnet"
yarn workspace @connext/nxtp-subgraph prepare:devnet:amarok-runtime-v0 gnosis
yarn workspace @connext/nxtp-subgraph codegen
echo "Built subgraph for the spoke chain - gnosis-devnet"
echo "Deploying subgraph to the spoke chain - gnosis-devnet..."
yarn workspace @connext/nxtp-subgraph create:devnet_v0_gnosis --node http://localhost:7020/
yarn workspace @connext/nxtp-subgraph deploy:devnet_v0_gnosis --node http://localhost:7020/ -l v0.0.1
echo "Deployed subgraph to the gnosis-devnet"
#####
# Extract deployed addresses into docker config
echo "Updating docker config with the deployed contract addresses for router, sequencer and lighthouse"
yarn workspace @connext/nxtp-integration gen:devnet:config router
yarn workspace @connext/nxtp-integration gen:devnet:config sequencer
yarn workspace @connext/nxtp-integration gen:devnet:config lighthouse
echo "Updating docker config done"
#####
##### Off-Chain Agents
echo "Starting services and off-chain agents..."
docker compose -f docker-compose.devnet-services.yaml up -d --force-recreate
sleep 5
#####
# Setup db schema
echo "Setup db schema..."
yarn workspace @connext/nxtp-adapters-database dbmate -url $DATABASE_URL up
#####