Skip to content

Commit 19e8ef3

Browse files
committed
fix addess
1 parent c978923 commit 19e8ef3

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

gateway-web/app/components/docs.tsx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react";
33
import { Shield, Link, Globe, User, Code2 } from "lucide-react";
44

55
const STARKNET_CONTRACT_ADDRESS =
6-
"0x063bd23c0c524fa9fa2693e4945009acf9ba80341564ab429f4ab578c6253eeb";
6+
"0x0168d8bcadf2961c0f1cf2dfded1521fc84952e0aec21b6a88438df8d9c99196";
77

88
const Docs: React.FC = () => {
99
return (
@@ -25,13 +25,18 @@ const Docs: React.FC = () => {
2525

2626
{/* Contract Address */}
2727
<section className="space-y-2 text-center">
28-
<div className="inline-flex items-center gap-2 px-4 py-2 bg-purple-700/10 border border-purple-700/40 rounded-xl text-purple-300 text-sm">
28+
<a
29+
href={`https://sepolia.voyager.online/contract/${STARKNET_CONTRACT_ADDRESS}`}
30+
target="_blank"
31+
rel="noopener noreferrer"
32+
className="inline-flex items-center gap-2 px-4 py-2 bg-purple-700/10 border border-purple-700/40 rounded-xl text-purple-300 text-sm hover:bg-purple-700/20 transition"
33+
>
2934
<Code2 className="w-4 h-4" />
3035
Starknet Contract:
31-
<span className="text-purple-200 font-mono">
36+
<span className="text-purple-200 font-mono underline">
3237
{STARKNET_CONTRACT_ADDRESS}
3338
</span>
34-
</div>
39+
</a>
3540
<div className="text-gray-400 text-sm">
3641
Currently live on Starknet. Deployments for Ethereum, EVM chains,
3742
Solana, and Stellar are coming soon.

0 commit comments

Comments
 (0)