forked from ensdomains/evmgateway
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from unruggable-labs/inc-artifacts
Add Artifacts to NPM, Few Test Changes
- Loading branch information
Showing
34 changed files
with
341 additions
and
243 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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
node_modules/ | ||
cache/ | ||
out/ | ||
artifacts/ | ||
junk/ | ||
dist/ | ||
.vscode/ | ||
|
Empty file.
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,18 @@ | ||
# https://book.getfoundry.sh/reference/config/overview | ||
|
||
[profile.default] | ||
src = "contracts" | ||
solc = "0.8.25" | ||
|
||
evm_version = "cancun" | ||
|
||
libs = ["lib"] | ||
remappings = [ | ||
'@openzeppelin/contracts=lib/openzeppelin-contracts/contracts/', | ||
'@eth-optimism=lib/optimism/packages/', | ||
] | ||
|
||
solc = "0.8.25" | ||
evm_version = "cancun" | ||
optimizer = true | ||
optimizer_runs = 200 | ||
optimizer_runs = 1 # https://docs.soliditylang.org/en/latest/internals/optimizer.html#optimizer-parameter-runs | ||
|
||
[profile.dist] | ||
test = "contracts" # disables tests | ||
out = "artifacts" | ||
cache = false |
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.