-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adapt to gif-interface v1.5.0-staging-j, fix solc to 0.8.2 and oz to 4.7
- Loading branch information
1 parent
49e5ef9
commit c35b815
Showing
5 changed files
with
39 additions
and
7 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
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 |
---|---|---|
|
@@ -2,14 +2,14 @@ | |
compiler: | ||
evm_version: null | ||
solc: | ||
version: null | ||
version: 0.8.2 | ||
optimizer: | ||
enabled: true | ||
runs: 200 | ||
# https://eth-brownie.readthedocs.io/en/stable/compile.html#compiler-settings | ||
remappings: | ||
- "@openzeppelin=OpenZeppelin/openzeppelin-contracts@4.6.0" | ||
- "@gif-interface=etherisc/[email protected]i" | ||
- "@openzeppelin=OpenZeppelin/openzeppelin-contracts@4.7.0" | ||
- "@gif-interface=etherisc/[email protected]j" | ||
vyper: | ||
version: null | ||
|
||
|
@@ -18,8 +18,8 @@ compiler: | |
# to list the packages installed via the dependency list below | ||
dependencies: | ||
# github dependency format: <owner>/<repository>@<release> | ||
- OpenZeppelin/openzeppelin-contracts@4.6.0 | ||
- etherisc/[email protected]i | ||
- OpenZeppelin/openzeppelin-contracts@4.7.0 | ||
- etherisc/[email protected]j | ||
|
||
# exclude Ownable when calculating test coverage | ||
# https://eth-brownie.readthedocs.io/en/v1.10.3/config.html#exclude_paths | ||
|
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,3 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
pragma solidity ^0.8.0; | ||
contract Dummy {} |
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,16 @@ | ||
# brownie default values made explicit | ||
compiler: | ||
evm_version: null | ||
solc: | ||
version: 0.8.2 | ||
optimizer: | ||
enabled: true | ||
runs: 200 | ||
remappings: | ||
- "@openzeppelin=OpenZeppelin/[email protected]" | ||
vyper: | ||
version: null | ||
|
||
dependencies: | ||
# github dependency format: <owner>/<repository>@<release> | ||
- OpenZeppelin/[email protected] |