Skip to content

Commit

Permalink
fix zksync hardhat config bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zkbenny committed Feb 5, 2024
1 parent 14bf42f commit eb5ad95
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions zksync/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ require('@matterlabs/hardhat-zksync-deploy');
require('@matterlabs/hardhat-zksync-solc');
require('@matterlabs/hardhat-zksync-verify');
require('@matterlabs/hardhat-zksync-upgradable');
require('./script/deploy_zklink');
require('./script/deploy_l2_gateway');

const fs = require('fs');

Expand All @@ -20,6 +18,9 @@ if (!fs.existsSync('script')) {
console.log('Create script soft link success!');
}

require('./script/deploy_zklink');
require('./script/deploy_l2_gateway');

const BaseConfig = require('../hardhat.base.config');

module.exports = Object.assign({}, BaseConfig, {
Expand Down

0 comments on commit eb5ad95

Please sign in to comment.