forked from sphinx-labs/sphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): add support for structs in constructor args
- Loading branch information
1 parent
3f6f1f5
commit ff58a7d
Showing
15 changed files
with
271 additions
and
58 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,6 @@ | ||
--- | ||
'@chugsplash/plugins': patch | ||
'@chugsplash/core': patch | ||
--- | ||
|
||
Add support for struct constructor args |
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# Required for all environments | ||
CHUGSPLASH_EXECUTOR__NETWORK=<name of the target network, used to fetch the etherscan verification endpoint> | ||
CHUGSPLASH_EXECUTOR__PORT=7300 | ||
CHUGSPLASH_EXECUTOR__PRIVATE_KEYS=<private key to deploy with> | ||
CHUGSPLASH_EXECUTOR__URL=<url of the network to monitor, http://host.docker.internal:8545 for local node> | ||
CHUGSPLASH_EXECUTOR__NETWORK=<name of the target network, used to fetch the etherscan verification endpoint> | ||
IPFS_PROJECT_ID=<ipfs project id to retrieve config file> | ||
IPFS_API_KEY_SECRET=<ipfs api key to retrieve config file> | ||
|
||
# Required in production | ||
CHUGSPLASH_EXECUTOR__AMPLITUDE_KEY=<amplitude api key for analytics (optional)> | ||
CHUGSPLASH_EXECUTOR__LOG_LEVEL=<filter logs based on this level, i.e 'error', 'warning', 'info'> | ||
CHUGSPLASH_EXECUTOR__LOOP_INTERVAL_MS=<amount of time to wait between loops> | ||
CHUGSPLASH_EXECUTOR__PORT=7300 | ||
CHUGSPLASH_EXECUTOR__MANAGED_API_URL=<chugsplash managed api endpoint> | ||
MANAGED_PUBLIC_KEY=<public key for accessing the chugsplash managed api> | ||
IPFS_PROJECT_ID=<ipfs project id to retrieve config file> | ||
IPFS_API_KEY_SECRET=<ipfs api key to retrieve config file> | ||
ETHERSCAN_API_KEY=<Etherscan API key> | ||
HARDHAT_NETWORK=<Target hardhat network, used for verification> |
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
Oops, something went wrong.