Skip to content

Commit

Permalink
chore: update TON explorer URL to tonviewer.com
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulyadav-57 committed Aug 9, 2024
1 parent 8496dd3 commit 7101bf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/workspace/BuildProject/BuildProject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ const BuildProject: FC<Props> = ({ projectId, contract, updateContract }) => {
<Link
href={`https://${
chain === CHAIN.TESTNET ? 'testnet.' : ''
}tonscan.org/address/${activeProject.contractAddress}`}
}tonviewer.com/${activeProject.contractAddress}`}
target="_blank"
>
<AppIcon name="Eye" /> View Deployed Contract
Expand Down
2 changes: 1 addition & 1 deletion src/utility/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const getContractURL = (
}
return `https://${
chainNetwork === 'TESTNET' ? 'testnet.' : ''
}tonscan.org/address/${contractAddress}`;
}tonviewer.com/${contractAddress}`;
};

export const htmlToAnsi = (html: string) => {
Expand Down

0 comments on commit 7101bf8

Please sign in to comment.