Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvolear committed Dec 26, 2023
1 parent 6ce7abe commit aadf27f
Show file tree
Hide file tree
Showing 8 changed files with 2,587 additions and 12,738 deletions.
5 changes: 3 additions & 2 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"build": { "dockerfile": "Dockerfile" },

"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"settings": {
Expand Down
1 change: 1 addition & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"plugins": ["prettier-plugin-solidity"],
"overrides": [
{
"files": "*.sol",
Expand Down
5 changes: 2 additions & 3 deletions .solhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
"extends": "solhint:recommended",
"plugins": ["prettier"],
"rules": {
"prettier/prettier": "warn",
"reentrancy": "off",
"prettier/prettier": "off",
"modifier-name-mixedcase": "off",
"no-empty-blocks": "off",
"func-visibility": "off",
"max-states-count": "off",
"not-rely-on-time": "off",
"compiler-version": "off",
"no-console": "off"
"compiler-version": "off"
}
}
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
forge-install:
rm -rfv lib \
&& forge install --no-git foundry-rs/[email protected].1 \
&& forge install --no-git OpenZeppelin/[email protected].0 \
&& forge install --no-git OpenZeppelin/[email protected].0 \
&& forge install --no-git dl-solarity/solidity-lib
&& forge install --no-git foundry-rs/[email protected].4 \
&& forge install --no-git OpenZeppelin/[email protected].1 \
&& forge install --no-git OpenZeppelin/[email protected].1 \
&& forge install --no-git dl-solarity/solidity-lib@2.6.12
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ It is recommended to use the VSCode Dev Container for development. You can do th

The template works out of the box. To clean up the repo, you may need to delete the mock contracts and tests.

Also check out relevant dependencies in the `Makefile`.

#### Test

To run the tests, execute the following command:
Expand Down
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ out = "out"
test = "tests"
script = "scripts"
libs = ["lib"]
solc_version = '0.8.20'
solc_version = "0.8.20"
evm_version = "paris"
optimizer = true
optimizer_runs = 200
Expand Down
Loading

0 comments on commit aadf27f

Please sign in to comment.