-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy pathverify.js
33 lines (32 loc) · 1012 Bytes
/
verify.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import deploymentAddresses from './deployment';
try {
(async () => {
const chainIdHex = await hre.network.provider.request({ method: 'eth_chainId' });
const chainId = parseInt(chainIdHex.toString(), 16).toString();
await hre.run('verify:verify', {
address: deploymentAddresses.router[chainId],
});
await hre.run('verify:verify', {
address: deploymentAddresses.simpleCaller[chainId],
constructorArguments: [
deploymentAddresses.universalRouter[chainId],
deploymentAddresses.permit2[chainId],
],
});
await hre.run('verify:verify', {
address: deploymentAddresses.uniswapV2Caller[chainId],
constructorArguments: [
deploymentAddresses.weth[chainId],
],
});
await hre.run('verify:verify', {
address: deploymentAddresses.uniswapV3Caller[chainId],
constructorArguments: [
deploymentAddresses.weth[chainId],
],
});
})();
} catch (error) {
console.error(error);
process.exit(1);
}