Skip to content

Commit 9645b27

Browse files
committed
fix
1 parent 956cf0b commit 9645b27

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

public/changelog.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,26 @@
366366
}
367367
},
368368
"data": [
369+
{
370+
"category": "integration",
371+
"date": "2026-02-10",
372+
"description": "Chainlink CCIP expands support to new testnets:",
373+
"newNetworks": [
374+
{
375+
"displayName": "Arc Network Testnet",
376+
"network": "arcnetwork",
377+
"url": "https://docs.chain.link/ccip/directory/testnet/chain/arc-testnet"
378+
},
379+
{
380+
"displayName": "DogeOS Chikyu Testnet",
381+
"network": "dogeos",
382+
"url": "https://docs.chain.link/ccip/directory/testnet/chain/dogeos-testnet-chikyu"
383+
}
384+
],
385+
"relatedNetworks": ["arcnetwork", "dogeos"],
386+
"title": "CCIP on Arc Network Testnet and DogeOS Chikyu Testnet",
387+
"topic": "CCIP"
388+
},
369389
{
370390
"category": "integration",
371391
"date": "2026-02-09",

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ export const productChainLinks: ProductChainLinks = {
103103
morph: "/ccip/directory/mainnet/chain/morph-mainnet",
104104
jovay: "/ccip/directory/mainnet/chain/jovay-mainnet",
105105
stable: "/ccip/directory/mainnet/chain/stable-mainnet",
106+
arcnetwork: "/ccip/directory/testnet/chain/arc-testnet",
107+
dogeos: "/ccip/directory/testnet/chain/dogeos-testnet-chikyu",
106108
},
107109
},
108110
CRE: {

src/config/data/chain-to-technology.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,6 @@
167167
"JOVAY_TESTNET": "JOVAY",
168168
"STABLE_MAINNET": "STABLE",
169169
"TEMPO_TESTNET": "TEMPO",
170-
"ARC_NETWORK_TESTNET": "TEMPO",
171-
"DOGE_OS_CHIKYU_TESTNET": "TEMPO"
170+
"ARC_NETWORK_TESTNET": "ARC_NETWORK",
171+
"DOGE_OS_CHIKYU_TESTNET": "DOGE_OS"
172172
}

src/features/utils/index.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -532,9 +532,10 @@ export const directoryToSupportedChain = (chainInRdd: string): SupportedChain =>
532532
return "STABLE_MAINNET"
533533
case "tempo-testnet":
534534
return "TEMPO_TESTNET"
535-
case "arc-network-testnet":
535+
case "arc-testnet":
536536
return "ARC_NETWORK_TESTNET"
537537
case "doge-os-chikyu-testnet":
538+
case "dogeos-testnet-chikyu":
538539
return "DOGE_OS_CHIKYU_TESTNET"
539540
default:
540541
throw Error(`Chain not found ${chainInRdd}`)
@@ -868,9 +869,9 @@ export const supportedChainToChainInRdd = (supportedChain: SupportedChain): stri
868869
case "TEMPO_TESTNET":
869870
return "tempo-testnet"
870871
case "ARC_NETWORK_TESTNET":
871-
return "arc-network-testnet"
872+
return "arc-testnet"
872873
case "DOGE_OS_CHIKYU_TESTNET":
873-
return "doge-os-chikyu-testnet"
874+
return "dogeos-testnet-chikyu"
874875
default:
875876
throw Error(`Chain not found ${supportedChain}`)
876877
}

0 commit comments

Comments
 (0)