-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
20 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
#!/bin/bash | ||
|
||
# Verify deployment | ||
SKIP_WAIT_FOR_CONFIRMATION=true SKIP_MULTISIG_CHECK=true node ../bootstrap/2_deployment_validation.js | ||
SKIP_WAIT_FOR_CONFIRMATION=true SKIP_MULTISIG_CHECK=true node ../bootstrap/2_deployment_validation.js 2>&1 | tee -a bootstrap.out | ||
if [ $? -ne 0 ]; then | ||
exit 1; | ||
fi | ||
|
||
# Deploy child contracts | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/3_child_deployment.js | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/3_child_deployment.js 2>&1 | tee -a bootstrap.out | ||
if [ $? -ne 0 ]; then | ||
exit 1; | ||
fi | ||
|
||
# Deploy root contracts | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/4_root_deployment.js | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/4_root_deployment.js 2>&1 | tee -a bootstrap.out | ||
if [ $? -ne 0 ]; then | ||
exit 1; | ||
fi | ||
|
||
# Initialise child contracts | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/5_child_initialisation.js | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/5_child_initialisation.js 2>&1 | tee -a bootstrap.out | ||
if [ $? -ne 0 ]; then | ||
exit 1; | ||
fi | ||
|
||
# IMX Burning | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/6_imx_burning.js | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/6_imx_burning.js 2>&1 | tee -a bootstrap.out | ||
if [ $? -ne 0 ]; then | ||
exit 1; | ||
fi | ||
|
||
# IMX Rebalancing | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/7_imx_rebalancing.js | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/7_imx_rebalancing.js 2>&1 | tee -a bootstrap.out | ||
if [ $? -ne 0 ]; then | ||
exit 1; | ||
fi | ||
|
||
# Initialise root contracts | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/8_root_initialisation.js | ||
SKIP_WAIT_FOR_CONFIRMATION=true node ../bootstrap/8_root_initialisation.js 2>&1 | tee -a bootstrap.out | ||
if [ $? -ne 0 ]; then | ||
exit 1; | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters