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 5844135 commit 121e0d6Copy full SHA for 121e0d6
packages/toolshed/src/hardhat/hardhat.base.config.ts
@@ -57,7 +57,7 @@ export const projectPathsUserConfig: ProjectPathsUserConfig = {
57
}
58
59
export const etherscanUserConfig: Partial<EtherscanConfig> = {
60
- apiKey: vars.get('ETHERSCAN_API_KEY'),
+ apiKey: vars.has('ETHERSCAN_API_KEY') ? vars.get('ETHERSCAN_API_KEY') : '',
61
62
63
// In general:
0 commit comments