File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ module.exports = {
2121 disambiguatePaths : false ,
2222 } ,
2323 dependencyCompiler : {
24- paths : [ "@openzeppelin/contracts/governance/TimelockController.sol" ] ,
24+ paths : [
25+ "@openzeppelin/contracts/governance/TimelockController.sol" ,
26+ "@openzeppelin/contracts/access/manager/AccessManager.sol" ,
27+ "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol" ,
28+ "@openzeppelin/contracts/token/ERC20/ERC20.sol" ,
29+ "@openzeppelin/contracts/token/ERC721/ERC721.sol" ,
30+ ] ,
2531 } ,
2632} ;
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ git archive --format tar HEAD README.md contracts/ js/ | tar xv -C $TARGET_DIR
2929
3030mkdir $TARGET_DIR /build
3131cp -r artifacts/contracts $TARGET_DIR /build
32+
33+ # Include also @openzeppelin build, so it can be used as verifiable binary
34+ cp -r artifacts/@openzeppelin $TARGET_DIR /build
35+
3236cp artifacts/build-info/* .json $TARGET_DIR /build/build-info.json
3337
3438find $TARGET_DIR -name " *.dbg.json" -delete
You can’t perform that action at this time.
0 commit comments