Skip to content

Commit 879448d

Browse files
committed
bump deps
1 parent 783fccc commit 879448d

File tree

6 files changed

+353
-212
lines changed

6 files changed

+353
-212
lines changed

hardhat.config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ const networks = require('./hardhat.networks');
99

1010
module.exports = {
1111
etherscan: {
12-
apiKey: process.env.ETHERSCAN_KEY,
12+
apiKey: {
13+
mainnet: process.env.MAINNET_ETHERSCAN_KEY,
14+
avalanche: process.env.AVAX_ETHERSCAN_KEY,
15+
},
1316
},
1417
solidity: {
15-
version: '0.8.9',
18+
version: '0.8.11',
1619
settings: {
1720
optimizer: {
1821
enabled: true,

package.json

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,30 @@
88
},
99
"license": "MIT",
1010
"dependencies": {
11-
"@1inch/solidity-utils": "^1.2.3",
12-
"@openzeppelin/contracts": "^4.3.2"
11+
"@1inch/solidity-utils": "^1.2.9",
12+
"@openzeppelin/contracts": "^4.4.2"
1313
},
1414
"devDependencies": {
15-
"@nomiclabs/hardhat-ethers": "^2.0.1",
16-
"@nomiclabs/hardhat-etherscan": "^2.1.6",
17-
"@nomiclabs/hardhat-truffle5": "^2.0.2",
15+
"@nomiclabs/hardhat-ethers": "^2.0.4",
16+
"@nomiclabs/hardhat-etherscan": "^3.0.0",
17+
"@nomiclabs/hardhat-truffle5": "^2.0.3",
1818
"@nomiclabs/hardhat-web3": "^2.0.0",
1919
"@openzeppelin/test-helpers": "^0.5.13",
20-
"chai": "^4.3.4",
21-
"dotenv": "^10.0.0",
22-
"eslint": "^8.3.0",
20+
"chai": "^4.3.6",
21+
"dotenv": "^15.0.0",
22+
"eslint": "^8.8.0",
2323
"eslint-config-standard": "^16.0.3",
24-
"eslint-plugin-import": "^2.24.2",
24+
"eslint-plugin-import": "^2.25.4",
2525
"eslint-plugin-node": "^11.1.0",
26-
"eslint-plugin-promise": "^5.1.0",
26+
"eslint-plugin-promise": "^6.0.0",
2727
"eslint-plugin-standard": "^5.0.0",
28-
"ethers": "^5.4.7",
29-
"hardhat": "^2.6.4",
30-
"hardhat-deploy": "^0.9.12",
31-
"hardhat-gas-reporter": "^1.0.4",
28+
"ethers": "^5.5.4",
29+
"hardhat": "^2.8.3",
30+
"hardhat-deploy": "^0.10.4",
31+
"hardhat-gas-reporter": "^1.0.7",
3232
"rimraf": "^3.0.2",
33-
"solc": "^0.8.9",
3433
"solhint": "^3.3.6",
35-
"solidity-coverage": "^0.7.17"
34+
"solidity-coverage": "^0.7.18"
3635
},
3736
"scripts": {
3837
"test": "hardhat test --show-stack-traces",

test/ERC20Farmable.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const { expectRevert, time, BN } = require('@openzeppelin/test-helpers');
2+
const { expect } = require('chai');
23

34
const ERC20FarmableMock = artifacts.require('ERC20FarmableMock');
45
const Farm = artifacts.require('Farm');

test/mock/ERC20FarmableMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.9;
3+
pragma solidity ^0.8.11;
44

55
import "@openzeppelin/contracts/access/Ownable.sol";
66
import "../../contracts/ERC20Farmable.sol";

test/mock/TokenMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.9;
3+
pragma solidity ^0.8.11;
44

55
import "@openzeppelin/contracts/access/Ownable.sol";
66
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

0 commit comments

Comments
 (0)