-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: change tx.origin to msg.sender (#113)
* feat: change tx.origin to msg.sender * chore: devnet upgrades
- Loading branch information
Showing
8 changed files
with
1,455 additions
and
32 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
# Check if the command line argument is provided | ||
if [ $# -eq 0 ]; then | ||
echo "Please provide a command argument." | ||
exit 1 | ||
fi | ||
|
||
# Assign the command line argument to a variable | ||
command=$1 | ||
extra_args="${@:2}" | ||
|
||
HARDHAT_NETWORK=basesepolia dlc-link-eth $command $extra_args | ||
HARDHAT_NETWORK=arbsepolia dlc-link-eth $command $extra_args | ||
HARDHAT_NETWORK=sepolia dlc-link-eth $command $extra_args |