Skip to content

Commit

Permalink
fix build (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
dule-git authored Nov 21, 2024
1 parent d26fc66 commit e4a2926
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changeset/tough-lobsters-joke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@tenderly/api-client": minor
"@tenderly/hardhat-integration": minor
---

Implemented private and public ABI verification for Lens Testnet
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ export class TenderlyService {
throw new BytecodeMissingMethodSignaturesError(response.error);
}

if (response.display_link) {
console.log(`Contract ${request.address} verified with ABI on Vnet. You can view the contract at:`, response.display_link);
if ((response as any).display_link) {
console.log(`Contract ${request.address} verified with ABI on Vnet. You can view the contract at:`, (response as any).display_link);
} else {
console.log(`Contract ${request.address} verified with ABI on Vnet.`);
}
Expand Down

0 comments on commit e4a2926

Please sign in to comment.