File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { isFullyQualifiedName, parseFullyQualifiedName } from 'hardhat/utils/con
5
5
import { TASK_COMPILE } from 'hardhat/builtin-tasks/task-names'
6
6
import { loadEnv } from '../../cli/env'
7
7
import { cliOpts } from '../../cli/defaults'
8
- import { getContractConfig , readConfig } from '../../cli/config'
8
+ import { getContractConfig } from '../../cli/config'
9
9
import { Wallet } from 'ethers'
10
10
import fs from 'fs'
11
11
import path from 'path'
@@ -84,10 +84,10 @@ task('verifyAll', 'Verifies all contracts on etherscan')
84
84
}
85
85
86
86
console . log ( `> Verifying all contracts on chain ${ chainName } [${ chainId } ]...` )
87
- const { addressBook } = hre . graph ( {
87
+ const { addressBook, graphConfig } = hre . graph ( {
88
88
addressBook : args . addressBook ,
89
+ graphConfig : args . graphConfig ,
89
90
} )
90
- const graphConfig = readConfig ( args . graphConfig )
91
91
92
92
const accounts = await hre . ethers . getSigners ( )
93
93
const env = await loadEnv ( args , accounts [ 0 ] as unknown as Wallet )
You can’t perform that action at this time.
0 commit comments