deps: remove extra oz deps (#3504)
There were open zeppelin contracts defined in the top level
`package.json` as well as in each of the individual packages.
We want to be very explicit with the version of the contract
dependencies that are used. I believe that the versions local
to the packages were being used instead of the globally defined
versions, removing them from the top level `package.json` will
ensure this.
Co-authored-by:
Matthew Slipper <me@matthewslipper.com>
Showing
... | ... | @@ -95,8 +95,6 @@ |
"dependencies": { | ||
"@changesets/cli": "^2.16.0", | ||
"@codechecks/client": "^0.1.11", | ||
"@ethersproject/abstract-provider": "^5.7.0", | ||
"@openzeppelin/contracts": "^4.3.2", | ||
"@openzeppelin/contracts-upgradeable": "^4.3.2" | ||
"@ethersproject/abstract-provider": "^5.7.0" | ||
} | ||
} |
Please register or sign in to comment