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 009752d commit 6312f9aCopy full SHA for 6312f9a
helpers/tenderly-utils.ts
@@ -8,12 +8,10 @@ export const usingTenderly = () =>
8
process.env.TENDERLY === 'true');
9
10
export const verifyAtTenderly = async (id: string, instance: Contract) => {
11
- console.log();
12
- console.log('Doing Tenderly contract verification of', id);
+ console.log('\n- Doing Tenderly contract verification of', id);
13
await (DRE as any).tenderlyRPC.verify({
14
name: id,
15
address: instance.address,
16
});
17
- console.log(`Verified ${id} at Tenderly!`);
18
+ console.log(` - Verified ${id} at Tenderly!`);
19
};
0 commit comments