Skip to content

Commit

Permalink
Hide deployed URL in logger
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulyadav-57 committed Oct 27, 2023
1 parent a4a71d5 commit 9cce4ed
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions src/utility/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,17 @@ export const getContractLINK = (
contractAddress: string,
chainNetwork: NetworkEnvironment
) => {
if (chainNetwork === 'SANDBOX') {
return '';
}
return `
<a
href="${getContractURL(contractAddress, chainNetwork)}"
target="_blank"
>
View Deployed Contract
</a>`;
// if (chainNetwork === 'SANDBOX') {
// return '';
// }
// return `
// <a
// href="${getContractURL(contractAddress, chainNetwork)}"
// target="_blank"
// >
// View Deployed Contract
// </a>`
return '';
};

export const getContractURL = (
Expand Down

0 comments on commit 9cce4ed

Please sign in to comment.