Skip to content

Commit e0fcc7e

Browse files
committed
new ccip chains 12/19
1 parent fd5a047 commit e0fcc7e

File tree

8 files changed

+83
-14
lines changed

8 files changed

+83
-14
lines changed

public/changelog.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,21 @@
358358
}
359359
},
360360
"data": [
361+
{
362+
"category": "integration",
363+
"date": "2025-12-19",
364+
"description": "Chainlink CCIP expands support to new blockchains:",
365+
"newNetworks": [
366+
{
367+
"displayName": "Ethereum Hoodi",
368+
"network": "ethereum",
369+
"url": "https://docs.chain.link/ccip/directory/testnet/chain/ethereum-testnet-hoodi"
370+
}
371+
],
372+
"relatedNetworks": ["ethereum"],
373+
"title": "CCIP Expands to Ethereum Hoodi",
374+
"topic": "CCIP"
375+
},
361376
{
362377
"category": "deprecation",
363378
"date": "2025-12-16",

src/config/data/chains.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,18 @@
3939
"symbol": "ETH",
4040
"decimals": 18
4141
}
42+
},
43+
"ETHEREUM_HOODI": {
44+
"chainId": 560048,
45+
"title": "Hoodi",
46+
"explorer": {
47+
"baseUrl": "https://hoodi.etherscan.io/"
48+
},
49+
"nativeCurrency": {
50+
"name": "Hoodi Ether",
51+
"symbol": "ETH",
52+
"decimals": 18
53+
}
4254
}
4355
}
4456
},
@@ -2441,7 +2453,7 @@
24412453
"chainId": 964,
24422454
"title": "Bittensor EVM",
24432455
"explorer": {
2444-
"baseUrl": "https://taostats.io/"
2456+
"baseUrl": "https://evm.taostats.io/"
24452457
},
24462458
"nativeCurrency": {
24472459
"name": "TAO",

src/config/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ export type SupportedChain =
9090
| "ETHEREUM_MAINNET"
9191
| "ETHEREUM_SEPOLIA"
9292
| "ETHEREUM_HOLESKY"
93+
| "ETHEREUM_HOODI"
9394
| "BNB_MAINNET"
9495
| "BNB_TESTNET"
9596
| "POLYGON_MAINNET"

src/config/web3Providers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export const chainToProvider: Record<SupportedChain, () => Provider> = {
4848
SONEIUM_MAINNET: () => new JsonRpcProvider("https://rpc.soneium.org"),
4949
SONEIUM_MINATO: () => new JsonRpcProvider("https://rpc.minato.soneium.org"),
5050
ETHEREUM_HOLESKY: () => new JsonRpcProvider("https://ethereum-holesky-rpc.publicnode.com"),
51+
ETHEREUM_HOODI: () => new JsonRpcProvider("https://rpc.hoodi.ethpandaops.io"),
5152
ASTAR_MAINNET: () => new JsonRpcProvider("https://rpc.astar.network"),
5253
ASTAR_SHIBUYA: () => new JsonRpcProvider("https://evm.shibuya.astar.network/"),
5354
ZIRCUIT_MAINNET: () => new JsonRpcProvider("https://zircuit1-mainnet.liquify.com"),

src/content/resources/link-token-contracts.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,21 @@ Testnet ETH and LINK are available at [faucets.chain.link/holesky](https://fauce
580580
| Decimals | 18 |
581581
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
582582

583+
### Ethereum Hoodi Testnet
584+
585+
Testnet ETH is used to pay for transactions on Hoodi.
586+
587+
Testnet ETH and LINK are available at [faucets.chain.link/hoodi](https://faucets.chain.link/hoodi).
588+
589+
| Parameter | Value |
590+
| :------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
591+
| Chain ID | `560048` |
592+
| Address | <Address contractUrl="https://hoodi.etherscan.io/token/0x76c00B055414de203B79B4955E28119BF459033e" urlId="560048_0x76c00B055414de203B79B4955E28119BF459033e" urlClass="erc-token-address"/> |
593+
| Name | Chainlink Token on Ethereum Hoodi Testnet |
594+
| Symbol | LINK |
595+
| Decimals | 18 |
596+
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
597+
583598
## <img src="/assets/chains/etherlink.svg" style="height: 24px; width: auto; margin-right: 8px;" />Etherlink
584599

585600
### Etherlink Mainnet

src/features/utils/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,8 @@ export const directoryToSupportedChain = (chainInRdd: string): SupportedChain =>
276276
return "SONEIUM_MINATO"
277277
case "ethereum-testnet-holesky":
278278
return "ETHEREUM_HOLESKY"
279+
case "ethereum-testnet-hoodi":
280+
return "ETHEREUM_HOODI"
279281
case "polkadot-mainnet-astar":
280282
return "ASTAR_MAINNET"
281283
case "polkadot-testnet-astar-shibuya":
@@ -609,6 +611,8 @@ export const supportedChainToChainInRdd = (supportedChain: SupportedChain): stri
609611
return "ethereum-testnet-sepolia-soneium-1"
610612
case "ETHEREUM_HOLESKY":
611613
return "ethereum-testnet-holesky"
614+
case "ETHEREUM_HOODI":
615+
return "ethereum-testnet-hoodi"
612616
case "ASTAR_MAINNET":
613617
return "polkadot-mainnet-astar"
614618
case "ASTAR_SHIBUYA":

src/scripts/reference/chains.json

Lines changed: 30 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,8 @@
856856
"chainId": 964,
857857
"networkId": 964,
858858
"slip44": 1005,
859-
"icon": "bittensor"
859+
"icon": "bittensor",
860+
"explorers": [{ "name": "Bittensor EVM Explorer", "url": "https://evm.taostats.io/", "standard": "EIP3091" }]
860861
},
861862
{
862863
"name": "Stable Mainnet",
@@ -1533,18 +1534,6 @@
15331534
"chainId": 4326,
15341535
"networkId": 4326
15351536
},
1536-
{
1537-
"name": "Tempo Testnet",
1538-
"chain": "ETH",
1539-
"nativeCurrency": { "name": "USD", "symbol": "USD", "decimals": 18 },
1540-
"rpc": ["https://rpc.testnet.tempo.xyz"],
1541-
"faucets": [],
1542-
"explorers": [{ "name": "Tempo Explorer", "url": "https://explore.tempo.xyz", "standard": "none" }],
1543-
"infoURL": "https://tempo.xyz/",
1544-
"shortName": "megaeth",
1545-
"chainId": 42429,
1546-
"networkId": 42429
1547-
},
15481537
{
15491538
"name": "World Chain Sepolia Testnet",
15501539
"chain": "ETH",
@@ -1974,6 +1963,18 @@
19741963
{ "name": "blockscout", "url": "https://explorer.celo.org", "standard": "none" }
19751964
]
19761965
},
1966+
{
1967+
"name": "Tempo Testnet",
1968+
"chain": "ETH",
1969+
"nativeCurrency": { "name": "USD", "symbol": "USD", "decimals": 18 },
1970+
"rpc": ["https://rpc.testnet.tempo.xyz"],
1971+
"faucets": [],
1972+
"explorers": [{ "name": "Tempo Explorer", "url": "https://explore.tempo.xyz", "standard": "none" }],
1973+
"infoURL": "https://tempo.xyz/",
1974+
"shortName": "megaeth",
1975+
"chainId": 42429,
1976+
"networkId": 42429
1977+
},
19771978
{
19781979
"name": "Etherlink Mainnet",
19791980
"chain": "Etherlink",
@@ -2643,6 +2644,22 @@
26432644
"explorers": [{ "name": "Scrollscan", "url": "https://scrollscan.com", "standard": "EIP3091" }],
26442645
"parent": { "type": "L2", "chain": "eip155-1", "bridges": [{ "url": "https://scroll.io/bridge" }] }
26452646
},
2647+
{
2648+
"name": "Ethereum Hoodi",
2649+
"title": "Ethereum Testnet Hoodi",
2650+
"chain": "ETH",
2651+
"icon": "ethereum",
2652+
"rpc": ["https://rpc.hoodi.ethpandaops.io"],
2653+
"features": [{ "name": "EIP155" }, { "name": "EIP1559" }],
2654+
"faucets": ["https://faucet.hoodi.ethpandaops.io", "https://hoodi-faucet.pk910.de/"],
2655+
"nativeCurrency": { "name": "Hoodi Ether", "symbol": "ETH", "decimals": 18 },
2656+
"infoURL": "https://hoodi.ethpandaops.io",
2657+
"shortName": "hoe",
2658+
"chainId": 560048,
2659+
"networkId": 560048,
2660+
"slip44": 1,
2661+
"explorers": [{ "name": "Hoodi", "url": "https://hoodi.etherscan.io/", "standard": "none" }]
2662+
},
26462663
{
26472664
"name": "Merlin Testnet",
26482665
"chainId": 686868,

src/scripts/reference/linkNameSymbol.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -651,5 +651,9 @@
651651
"4326": {
652652
"name": "ChainLink Token",
653653
"symbol": "LINK"
654+
},
655+
"560048": {
656+
"name": "ChainLink Token",
657+
"symbol": "LINK"
654658
}
655659
}

0 commit comments

Comments
 (0)