We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc4dc01 commit 18b4008Copy full SHA for 18b4008
scripts/deploy.js
@@ -98,6 +98,11 @@ async function deploy() {
98
// Perform deployment
99
const contracts = await deployer.deploy();
100
101
+ // Skip save and verify when deploying to hardhat
102
+ if (chain === 'hardhat') {
103
+ return;
104
+ }
105
+
106
// Compile deployment information for saving
107
const deploymentData = {
108
deployer: signer.address,
0 commit comments