-
Notifications
You must be signed in to change notification settings - Fork 14
feat: remove @iexec/interface & @iexec/solidity dep
#310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Le-Caignec
wants to merge
15
commits into
feat/clean-dep
Choose a base branch
from
feat/remove-useless-dep
base: feat/clean-dep
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+6,121
−17,932
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
356b2b7
chore: update package-lock.json and package.json dependencies, remove…
Le-Caignec 5636152
chore: comment out outputSelection in hardhat.config.ts for clarity
Le-Caignec 7abbd55
chore: remove outputSelection from hardhat.config.ts to use defaults …
Le-Caignec 9a9f626
chore: update CI workflows to clean build artifacts, force build, and…
Le-Caignec b87f41d
chore: update hardhat.config.ts and CI workflows to handle legacyAST …
Le-Caignec 0557cb6
chore: streamline CI workflows by removing redundant clean steps and …
Le-Caignec 6818506
fix rollback
Le-Caignec 3c7251d
chore: update Solidity version in hardhat.config.ts from 0.4.11 to 0.…
Le-Caignec f70e6c1
chore: update comment for Solidity 0.4.26 in hardhat.config.ts to cla…
Le-Caignec 7102dfa
chore: update comment for Solidity 0.8.21 in hardhat.config.ts to ref…
Le-Caignec f513a88
chore: add check to skip rlc-faucet-contract in storage layout compat…
Le-Caignec ae7d84a
chore: add RLC.sol to dependencyCompiler paths in hardhat.config.ts
Le-Caignec a5b8e5e
Update scripts/check-storage.ts
Le-Caignec cab6c6e
Update hardhat.config.ts
Le-Caignec 6210d9d
Merge branch 'feat/clean-dep' into feat/remove-useless-dep
Le-Caignec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -51,7 +51,6 @@ const settings = { | |
| enabled: true, | ||
| runs: 200, | ||
| }, | ||
| outputSelection: { '*': { '*': ['storageLayout'] } }, | ||
| }; | ||
|
|
||
| const v8Settings = { | ||
|
|
@@ -76,9 +75,9 @@ const v8Settings = { | |
| const config: HardhatUserConfig = { | ||
| solidity: { | ||
| compilers: [ | ||
| { version: '0.8.21', settings: v8Settings }, // PoCo Boost | ||
| { version: '0.6.12', settings }, // PoCo contracts | ||
| { version: '0.4.11', settings }, // RLC contracts | ||
| { version: '0.8.21', settings: v8Settings }, // PoCo contracts | ||
| { version: '0.6.12', settings }, // External dependencies (@amxx/factory) | ||
| { version: '0.4.26', settings }, // RLC contracts - 0.4.26 is the minimum version that produces standard AST output required for storage layout checks | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Change from 0.4.11 to 0.4.26: produces a standard ‘ast’ output |
||
| ], | ||
| }, | ||
| namedAccounts: { | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why remove this ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This prevents Hardhat from producing an ast in the build files.