Skip to content

Commit

Permalink
add ?network=mainnet to arweave CA links
Browse files Browse the repository at this point in the history
Signed-off-by: MarcoMandar <[email protected]>
  • Loading branch information
MarcoMandar committed Aug 21, 2024
1 parent 9baa509 commit e816d0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/DashboardFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const getLink = (address: string, type: string) => {
case 'evm':
return `https://sepolia.etherscan.io/address/${address}`;
case 'arweave':
return `https://sonar.warp.cc/#/app/contract/${address}`;
return `https://sonar.warp.cc/#/app/contract/${address}?network=mainnet`;
default:
return '#';
}
Expand All @@ -56,7 +56,7 @@ const getLink = (address: string, type: string) => {
const openCommitUrl = () => {
const url = `https://github.com/ATOR-Development/ator-relay-dashboard/commit/${commitHash}`;
window.open(url, '_blank');
}
};
const isOpen = ref(false);
</script>
Expand Down Expand Up @@ -123,7 +123,7 @@ const isOpen = ref(false);
@click="openCommitUrl"
class="text-sm text-gray-600 dark:text-gray-300 justify-self-center margin-auto hover:cursor-pointer"
>
Version: {{ version }} | Commit: {{ commitHash.slice(0,7) }}...
Version: {{ version }} | Commit: {{ commitHash.slice(0, 7) }}...
</div>
</div>
</footer>
Expand Down

0 comments on commit e816d0d

Please sign in to comment.