We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f05fef5 commit eb70c09Copy full SHA for eb70c09
hardhat.config.ts
@@ -176,14 +176,8 @@ const config: HardhatUserConfig = {
176
process.env.RPC_URL || // Defined in Github Actions environments
177
'https://arbitrum.gateway.tenderly.co',
178
accounts: [
179
- (() => {
180
- if (!process.env.DEPLOYER_PRIVATE_KEY) {
181
- throw new Error(
182
- 'Missing DEPLOYER_PRIVATE_KEY environment variable for deployment.',
183
- );
184
- }
185
- return process.env.DEPLOYER_PRIVATE_KEY;
186
- })(),
+ process.env.DEPLOYER_PRIVATE_KEY ||
+ '0x0000000000000000000000000000000000000000000000000000000000000000',
187
],
188
...arbitrumBaseConfig,
189
},
0 commit comments