2021-03-04 15:10:39 +00:00
|
|
|
import { Contract } from 'ethers';
|
2021-01-15 15:48:54 +00:00
|
|
|
import { HardhatRuntimeEnvironment } from 'hardhat/types';
|
|
|
|
import { DRE } from './misc-utils';
|
|
|
|
|
|
|
|
export const usingTenderly = () =>
|
|
|
|
DRE &&
|
|
|
|
((DRE as HardhatRuntimeEnvironment).network.name.includes('tenderly') ||
|
|
|
|
process.env.TENDERLY === 'true');
|
2021-03-04 15:10:39 +00:00
|
|
|
|
|
|
|
export const verifyAtTenderly = async (id: string, instance: Contract) => {
|
|
|
|
console.log();
|
|
|
|
console.log('Doing Tenderly contract verification of', id);
|
|
|
|
await (DRE as any).tenderlyRPC.verify({
|
|
|
|
name: id,
|
|
|
|
address: instance.address,
|
|
|
|
});
|
|
|
|
console.log(`Verified ${id} at Tenderly!`);
|
|
|
|
console.log();
|
|
|
|
};
|