Skip to content

Commit e7639f1

Browse files
committed
Fix CI
1 parent 97d926c commit e7639f1

File tree

2 files changed

+6
-151
lines changed

2 files changed

+6
-151
lines changed

deploy/1_deploy-ens.ts

Lines changed: 0 additions & 144 deletions
This file was deleted.

hardhat.config.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -198,13 +198,12 @@ const config: HardhatUserConfig = {
198198
},
199199
},
200200
etherscan: {
201-
apiKey: process.env.IS_VERIFICATION_API_V2
202-
? process.env.EXPLORER_API_KEY
203-
: {
204-
avalancheFujiTestnet: 'nothing', // a non-empty string is needed by the plugin.
205-
arbitrumSepolia: process.env.EXPLORER_API_KEY || '',
206-
bellecour: 'nothing', // a non-empty string is needed by the plugin.
207-
},
201+
// TODO migrate to Etherscan V2 API and use process.env.EXPLORER_API_KEY
202+
apiKey: {
203+
avalancheFujiTestnet: 'nothing', // a non-empty string is needed by the plugin.
204+
arbitrumSepolia: process.env.ARBISCAN_API_KEY || '',
205+
bellecour: 'nothing', // a non-empty string is needed by the plugin.
206+
},
208207
customChains: [
209208
{
210209
network: 'viviani',

0 commit comments

Comments
 (0)