[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SC-1193] Redeploy OffchainOracle #165

Merged
merged 13 commits into from
Jul 3, 2024
Prev Previous commit
Update zksync deps
  • Loading branch information
zZoMROT committed Jul 3, 2024
commit a5222119a0913306ee23d8161cd39acc6f209d14
10 changes: 7 additions & 3 deletions hardhat.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
require('@matterlabs/hardhat-zksync-deploy');
require('@matterlabs/hardhat-zksync-solc');
require('@matterlabs/hardhat-zksync-verify');
require('@nomicfoundation/hardhat-ethers');
require('@nomicfoundation/hardhat-verify');
require('@nomicfoundation/hardhat-chai-matchers');
require('hardhat-deploy');
require('hardhat-dependency-compiler');
Expand All @@ -12,6 +10,12 @@ require('solidity-coverage');

const { Networks, getNetwork } = require('@1inch/solidity-utils/hardhat-setup');

if (getNetwork().indexOf('zksync') !== -1) {
require('@matterlabs/hardhat-zksync-verify');
} else {
require('@nomicfoundation/hardhat-verify');
}

const { networks, etherscan } = (new Networks(true, 'mainnet', true)).registerAll();

module.exports = {
Expand Down Expand Up @@ -49,7 +53,7 @@ module.exports = {
],
},
zksolc: {
version: '1.3.17',
version: '1.5.1',
compilerSource: 'binary',
settings: {},
},
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
},
"devDependencies": {
"@1inch/solidity-utils": "3.8.2",
"@matterlabs/hardhat-zksync-deploy": "1.1.2",
"@matterlabs/hardhat-zksync-solc": "1.1.2",
"@matterlabs/hardhat-zksync-verify": "1.3.0",
"@matterlabs/hardhat-zksync-deploy": "1.5.0",
"@matterlabs/hardhat-zksync-solc": "1.2.0",
"@matterlabs/hardhat-zksync-verify": "1.5.0",
"@nomicfoundation/hardhat-chai-matchers": "2.0.6",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
Expand All @@ -31,13 +31,13 @@
"ethers": "6.11.1",
"hardhat": "2.19.5",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.45",
"hardhat-deploy": "0.12.4",
"hardhat-gas-reporter": "1.0.10",
"hardhat-tracer": "2.7.0",
"rimraf": "5.0.5",
"solhint": "4.1.1",
"solidity-coverage": "0.8.9",
"zksync-ethers": "6.3.0",
"zksync-ethers": "6.9.0",
"zksync-web3": "0.17.1"
},
"scripts": {
Expand Down
Loading
Loading