-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update eXOF proposal with EUROCXOF rateFeed (#127)
- Loading branch information
Showing
15 changed files
with
494 additions
and
655 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env bash | ||
|
||
############################################################################## | ||
# Script for running Governance Proposal Checks on top of a network | ||
# Usage: yarn cgp:check | ||
# -n <baklava|alfajores|celo> -- network to submit the proposal to | ||
# -u <upgrade_name> -- name of the upgrade (MU01) | ||
# Example: yarn cgp:check -n baklava -u MU03 | ||
############################################################################## | ||
|
||
source "$(dirname "$0")/setup.sh" | ||
|
||
NETWORK="" | ||
UPGRADE="" | ||
while getopts n:u:p:sfr flag | ||
do | ||
case "${flag}" in | ||
n) NETWORK=${OPTARG};; | ||
u) UPGRADE=${OPTARG};; | ||
esac | ||
done | ||
|
||
parse_network "$NETWORK" | ||
parse_upgrade "$UPGRADE" | ||
|
||
echo "👀 Checking $UPGRADE" | ||
forge script $(forge_skip $UPGRADE) --rpc-url $RPC_URL --skip .dev.sol --sig "check(string)" script/utils/SimulateUpgrade.sol:SimulateUpgrade $UPGRADE |
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
180 changes: 0 additions & 180 deletions
180
broadcast/eXOF-02-Create-Nonupgradeable-Contracts.sol/44787/run-latest.json
This file was deleted.
Oops, something went wrong.
180 changes: 0 additions & 180 deletions
180
broadcast/eXOF-02-Create-Nonupgradeable-Contracts.sol/62320/run-latest.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
51 changes: 0 additions & 51 deletions
51
script/upgrades/eXOF/deploy/eXOF-02-Create-Nonupgradeable-Contracts.sol
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.