-
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(script): Fix testnet script not bumps to latest version (#211)
- Loading branch information
Showing
55 changed files
with
12,987 additions
and
10,957 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 |
---|---|---|
|
@@ -20,4 +20,5 @@ docs/ | |
node_modules/ | ||
yarn-error.log | ||
.yarn | ||
.yarnrc.yml | ||
.yarnrc.yml | ||
script/data/* |
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 +1 @@ | ||
VERSION=v0.3.4 - SHA: e8f3eed9674a015330280fb9f829678b455e1324 | ||
VERSION=v0.3.4 - SHA: 31f2c28744fa8628b707591dd30496a7bc63f6bb |
32 changes: 32 additions & 0 deletions
32
...ast/01_UpgradeRNSDomainPrice_OverrideTierForCommunityNames.s.sol/2020/run-1710239642.json
Large diffs are not rendered by default.
Oops, something went wrong.
61 changes: 61 additions & 0 deletions
61
...ast/01_UpgradeRNSDomainPrice_OverrideTierForCommunityNames.s.sol/2020/run-1710239649.json
Large diffs are not rendered by default.
Oops, something went wrong.
61 changes: 61 additions & 0 deletions
61
broadcast/01_UpgradeRNSDomainPrice_OverrideTierForCommunityNames.s.sol/2020/run-latest.json
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1 @@ | ||
# Source (or "dot") the .env file to load environment variables | ||
if [ -f .env ]; then | ||
source .debug.env | ||
else | ||
echo "Error: .debug.env file not found." | ||
fi | ||
|
||
verify_arg="" | ||
extra_argument="" | ||
op_command="" | ||
|
||
for arg in "$@"; do | ||
case $arg in | ||
--trezor) | ||
op_command="" | ||
extra_argument+=trezor@ | ||
;; | ||
--broadcast) | ||
op_command="op run --env-file="./.env" --" | ||
;; | ||
--log) | ||
set -- "${@/#--log/}" | ||
extra_argument+=log@ | ||
;; | ||
*) ;; | ||
esac | ||
done | ||
|
||
# Remove the @ character from the end of extra_argument | ||
extra_argument="${extra_argument%%@}" | ||
|
||
echo Debug Tx... | ||
echo From: ${FROM} | ||
echo To: ${TO} | ||
echo Value: ${VALUE} | ||
echo Calldata: | ||
cast pretty-calldata ${CALLDATA} | ||
calldata=$(cast calldata 'debug(uint256,address,address,uint256,bytes)' ${BLOCK} ${FROM} ${TO} ${VALUE} ${CALLDATA}) | ||
${op_command} forge script ${verify_arg} --legacy ${@} script/Debug.s.sol --sig 'run(bytes,string)' ${calldata} "${extra_argument}" | ||
source lib/foundry-deployment-kit/debug.sh |
Oops, something went wrong.