Skip to content

Commit df5aa07

Browse files
pre-work for new chains (#3550)
* pre-work for new chains * fix * updates * updates * updates * updates * changelog + quicklinks * fix --------- Co-authored-by: SyedAsadKazmi <syed.asadkazmi@smartcontract.com>
1 parent 083bc00 commit df5aa07

19 files changed

Lines changed: 823 additions & 43 deletions

File tree

Lines changed: 6 additions & 0 deletions
Loading

public/assets/chains/robinhood.svg

Lines changed: 6 additions & 0 deletions
Loading

public/changelog.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,10 @@
292292
"displayName": "Polygon zkEVM",
293293
"iconUrl": "https://docs.chain.link/assets/chains/polygonzkevm.svg"
294294
},
295+
"robinhood": {
296+
"displayName": "Robinhood Chain",
297+
"iconUrl": "https://docs.chain.link/assets/chains/robinhood-chain.svg"
298+
},
295299
"ronin": {
296300
"displayName": "Ronin",
297301
"iconUrl": "https://docs.chain.link/assets/chains/ronin.svg"
@@ -394,6 +398,26 @@
394398
}
395399
},
396400
"data": [
401+
{
402+
"category": "integration",
403+
"date": "2026-03-13",
404+
"description": "Chainlink CCIP expands support to new networks:",
405+
"newNetworks": [
406+
{
407+
"displayName": "Robinhood Chain Testnet",
408+
"network": "robinhood",
409+
"url": "https://docs.chain.link/ccip/directory/testnet/chain/robinhood-testnet"
410+
},
411+
{
412+
"displayName": "Ronin Saigon Testnet",
413+
"network": "ronin",
414+
"url": "https://docs.chain.link/ccip/directory/testnet/chain/ronin-testnet-saigon"
415+
}
416+
],
417+
"relatedNetworks": ["robinhood", "ronin"],
418+
"title": "CCIP on Robinhood Chain Testnet and Ronin Saigon Testnet",
419+
"topic": "CCIP"
420+
},
397421
{
398422
"category": "integration",
399423
"date": "2026-03-08",

src/components/CCIP/ChainHero/ChainHero.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ function ChainHero({ chains, tokens, network, token, environment, lanes }: Chain
137137
}}
138138
>
139139
{network?.name || token?.id}
140-
<span className="ccip-chain-hero__token-logo__symbol">{token?.name}</span>
140+
<span className="ccip-chain-hero__token-logo__symbol">
141+
{token?.id === "USDC" ? "USD Coin" : token?.name}
142+
</span>
141143

142144
{chainTooltipConfig && (
143145
<Tooltip

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ export const productChainLinks: ProductChainLinks = {
106106
arc: "/ccip/directory/testnet/chain/arc-testnet",
107107
dogeos: "/ccip/directory/testnet/chain/dogeos-testnet-chikyu",
108108
"adi-network": "/ccip/directory/testnet/chain/adi-testnet",
109+
edge: "/ccip/directory/mainnet/chain/edge-mainnet",
110+
robinhood: "/ccip/directory/testnet/chain/robinhood-testnet",
109111
},
110112
},
111113
CRE: {
@@ -334,6 +336,7 @@ export const productChainLinks: ProductChainLinks = {
334336
polygon: "/resources/link-token-contracts#polygon",
335337
polygonkatana: "/resources/link-token-contracts#polygon-katana",
336338
polygonzkevm: "/resources/link-token-contracts#polygon-zkevm",
339+
robinhood: "/resources/link-token-contracts#robinhood-chain",
337340
ronin: "/resources/link-token-contracts#ronin",
338341
rootstock: "/resources/link-token-contracts#rootstock",
339342
scroll: "/resources/link-token-contracts#scroll",
@@ -454,4 +457,5 @@ export const chainNames: Record<string, string> = {
454457
arc: "Arc Network",
455458
dogeos: "DogeOS",
456459
edge: "Edge",
460+
robinhood: "Robinhood Chain",
457461
}

0 commit comments

Comments
 (0)