Skip to content

Commit 98429bc

Browse files
authored
Dependencies: Update all dependencies (#738)
This PR: - Bumps all the dependencies to the latest versions, except `@openzeppelin/contracts`, which requires solc ^0.8.20. There's an [option](https://hardhat.org/hardhat-runner/docs/advanced/multiple-solidity-versions) to specify an `override` for `solc` compiler for particular files, but there are too many (12+) and the config will get dirty.
1 parent 7a872e4 commit 98429bc

File tree

4 files changed

+566
-1172
lines changed

4 files changed

+566
-1172
lines changed

contracts/test/ERC20Token.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: LGPL-3.0-only
2-
pragma solidity >=0.6.0 <0.8.0;
2+
pragma solidity >=0.7.0 <0.9.0;
33

44
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
55

contracts/test/TestImports.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ pragma solidity >=0.7.0 <0.9.0;
55
// Import the contract so hardhat compiles it, and we have the ABI available
66
// solhint-disable-next-line no-unused-import
77
import {MockContract} from "@safe-global/mock-contract/contracts/MockContract.sol";
8+
// solhint-disable-next-line no-unused-import
89
import {UpgradeableProxy} from "@openzeppelin/contracts/proxy/UpgradeableProxy.sol";

0 commit comments

Comments
 (0)