Skip to content

Commit

Permalink
Fix: replaced hardhat run with ts-node (#18)
Browse files Browse the repository at this point in the history
Co-authored-by: agolajko <[email protected]>
Co-authored-by: Ramon Canales <[email protected]>
  • Loading branch information
3 people authored Sep 15, 2023
1 parent 67f38da commit 3e247eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zksync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@
"build": "hardhat compile",
"clean": "hardhat clean",
"verify": "hardhat run src/verify.ts",
"deploy-testnet-paymaster": "hardhat run src/deployTestnetPaymaster.ts",
"deploy-force-deploy-upgrader": "hardhat run src/deployForceDeployUpgrader.ts",
"publish-bridge-preimages": "hardhat run src/publish-bridge-preimages.ts",
"deploy-testnet-paymaster": "ts-node src/deployTestnetPaymaster.ts",
"deploy-force-deploy-upgrader": "ts-node src/deployForceDeployUpgrader.ts",
"publish-bridge-preimages": "ts-node src/publish-bridge-preimages.ts",
"deploy-l2-weth": "ts-node src/deployL2Weth.ts",
"upgrade-l2-erc20-contract": "ts-node src/upgradeL2BridgeImpl.ts"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}
}

0 comments on commit 3e247eb

Please sign in to comment.