diff --git a/src/components/CCIP/ChainHero/ChainHero.tsx b/src/components/CCIP/ChainHero/ChainHero.tsx
index fae27ddaf16..344a5078488 100644
--- a/src/components/CCIP/ChainHero/ChainHero.tsx
+++ b/src/components/CCIP/ChainHero/ChainHero.tsx
@@ -85,12 +85,14 @@ function ChainHero({ chains, tokens, network, token, environment, lanes }: Chain
tokenId: feeToken,
})
const explorer = network.explorer
- const address = getExplorerAddressUrl(explorer)(token[network.chain].tokenAddress)
+ const address = token[network.chain].tokenAddress
+ const contractUrl = getExplorerAddressUrl(explorer)(token[network.chain].tokenAddress)
return {
logo,
token: feeToken,
address,
+ contractUrl,
}
})
@@ -150,7 +152,7 @@ function ChainHero({ chains, tokens, network, token, environment, lanes }: Chain
@@ -194,6 +196,7 @@ function ChainHero({ chains, tokens, network, token, environment, lanes }: Chain
) : (
"n/a"
@@ -221,6 +224,7 @@ function ChainHero({ chains, tokens, network, token, environment, lanes }: Chain
) : (
"n/a"
@@ -248,6 +252,7 @@ function ChainHero({ chains, tokens, network, token, environment, lanes }: Chain
) : (
"n/a"
@@ -261,7 +266,7 @@ function ChainHero({ chains, tokens, network, token, environment, lanes }: Chain
Fee tokens
- {feeTokensWithAddress.map(({ token, address, logo }, index) => {
+ {feeTokensWithAddress.map(({ token, address, logo, contractUrl }, index) => {
return (
)
})}
diff --git a/src/components/CCIP/ChainHero/TokenDetailsHero.tsx b/src/components/CCIP/ChainHero/TokenDetailsHero.tsx
index 0ef6af7d0d4..b1dd5e503f3 100644
--- a/src/components/CCIP/ChainHero/TokenDetailsHero.tsx
+++ b/src/components/CCIP/ChainHero/TokenDetailsHero.tsx
@@ -56,7 +56,11 @@ function TokenDetailsHero({ network, token }: TokenDetailsHeroProps) {
@@ -66,7 +70,11 @@ function TokenDetailsHero({ network, token }: TokenDetailsHeroProps) {