Skip to content

Commit 3ed5b5b

Browse files
authored
Refactor supported ntwks, add version requirements (#3430)
* refactor supported ntwks, add vers reqs * llm gen * add note for workflow ID changes on update * add note for workflow ID changes on update * add chain selectors, go constants to EVM client ref * remove SDK versions from ref
1 parent 9d79252 commit 3ed5b5b

20 files changed

+864
-406
lines changed

public/changelog.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@
793793
{
794794
"category": "integration",
795795
"date": "2026-01-29",
796-
"description": "CRE now supports additional testnets for workflow simulation: Apechain Curtis, Arc Testnet, Hyperliquid Testnet, Ink Sepolia, Jovay Testnet, Linea Sepolia, Plasma Testnet, and World Chain Sepolia.\n\nSee the [Supported Networks](https://docs.chain.link/cre/guides/workflow/using-evm-client/supported-networks) page for chain names and configuration details.",
796+
"description": "CRE now supports additional testnets for workflow simulation: Apechain Curtis, Arc Testnet, Hyperliquid Testnet, Ink Sepolia, Jovay Testnet, Linea Sepolia, Plasma Testnet, and World Chain Sepolia.\n\n**Required versions:** CLI v1.0.7+, Go SDK v1.1.4+, TS SDK v1.0.7+\n\nSee the [Supported Networks](https://docs.chain.link/cre/supported-networks) page for chain names and version requirements.",
797797
"relatedNetworks": ["apechain", "arc", "hyperliquid", "ink", "jovay", "linea", "plasma", "worldchain"],
798798
"title": "CRE Expands Testnet Support",
799799
"topic": "CRE"
@@ -830,7 +830,7 @@
830830
{
831831
"category": "integration",
832832
"date": "2026-01-26",
833-
"description": "CRE now supports ZKSync Era mainnet and testnet for workflow simulation and production deployment. See the [Supported Networks](https://docs.chain.link/cre/guides/workflow/using-evm-client/supported-networks) page for chain names and forwarder addresses.",
833+
"description": "CRE now supports ZKSync Era mainnet and testnet for workflow simulation and production deployment.\n\n**Required versions:** CLI v1.0.6+, Go SDK v1.1.3+ (mainnet) / v1.1.2+ (testnet), TS SDK v1.0.7+\n\nSee the [Supported Networks](https://docs.chain.link/cre/supported-networks) page for chain names and version requirements.",
834834
"relatedNetworks": ["zksync"],
835835
"title": "CRE Expands to ZKSync Era",
836836
"topic": "CRE"

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ export const productChainLinks: ProductChainLinks = {
109109
learnMoreLink: "cre",
110110
logo: creLogo,
111111
chains: {
112-
arbitrum: "/cre/guides/workflow/using-evm-client/supported-networks",
113-
avalanche: "/cre/guides/workflow/using-evm-client/supported-networks",
114-
base: "/cre/guides/workflow/using-evm-client/supported-networks",
115-
"bnb-chain": "/cre/guides/workflow/using-evm-client/supported-networks",
116-
ethereum: "/cre/guides/workflow/using-evm-client/supported-networks",
117-
optimism: "/cre/guides/workflow/using-evm-client/supported-networks",
118-
polygon: "/cre/guides/workflow/using-evm-client/supported-networks",
119-
zksync: "/cre/guides/workflow/using-evm-client/supported-networks",
112+
arbitrum: "/cre/supported-networks",
113+
avalanche: "/cre/supported-networks",
114+
base: "/cre/supported-networks",
115+
"bnb-chain": "/cre/supported-networks",
116+
ethereum: "/cre/supported-networks",
117+
optimism: "/cre/supported-networks",
118+
polygon: "/cre/supported-networks",
119+
zksync: "/cre/supported-networks",
120120
},
121121
},
122122
"Data Feeds": {

src/config/sidebar.ts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
8181
title: "Service Quotas",
8282
url: "cre/service-quotas",
8383
},
84+
{
85+
title: "Supported Networks",
86+
url: "cre/supported-networks",
87+
highlightAsCurrent: ["cre/supported-networks-ts", "cre/supported-networks-go"],
88+
},
8489
{
8590
title: "Support & Feedback",
8691
url: "cre/support-feedback",
@@ -248,11 +253,11 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
248253
],
249254
},
250255
{
251-
title: "Supported Networks",
252-
url: "cre/guides/workflow/using-evm-client/supported-networks",
256+
title: "Forwarder Directory",
257+
url: "cre/guides/workflow/using-evm-client/forwarder-directory",
253258
highlightAsCurrent: [
254-
"cre/guides/workflow/using-evm-client/supported-networks-ts",
255-
"cre/guides/workflow/using-evm-client/supported-networks-go",
259+
"cre/guides/workflow/using-evm-client/forwarder-directory-ts",
260+
"cre/guides/workflow/using-evm-client/forwarder-directory-go",
256261
],
257262
},
258263
],

src/content/cre/guides/operations/updating-deployed-workflows.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ import { Aside } from "@components"
1212

1313
When you update a deployed workflow, you redeploy it with the same workflow name. The new deployment replaces the previous version in the Workflow Registry contract. Currently, CRE does not maintain version history—each deployment overwrites the previous one.
1414

15+
{/* prettier-ignore */}
16+
<Aside type="caution" title="Workflow ID changes on update">
17+
The workflow ID changes each time you update a workflow. This is because the workflow ID is a hash derived from the workflow binary and configuration. If your consumer contract uses the workflow ID for validation, make sure to update the expected workflow ID after each update. See [Building Consumer Contracts](/cre/guides/workflow/using-evm-client/onchain-write/building-consumer-contracts#34-configuring-permissions) for details.
18+
</Aside>
19+
1520
## Prerequisites
1621

1722
Before updating a deployed workflow, ensure you have:

src/content/cre/guides/workflow/using-evm-client/supported-networks-go.mdx renamed to src/content/cre/guides/workflow/using-evm-client/forwarder-directory-go.mdx

Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
---
22
section: cre
3-
title: "Supported Networks"
3+
title: "Forwarder Directory"
44
date: Last Modified
55
sdkLang: "go"
6-
pageId: "evm-supported-networks"
6+
pageId: "evm-forwarder-directory"
77
metadata:
8-
description: "Learn which EVM networks are supported for read and write operations in CRE workflows."
8+
description: "Find forwarder contract addresses for CRE workflows on supported EVM networks."
99
datePublished: "2025-11-04"
10-
lastModified: "2026-01-29"
10+
lastModified: "2026-02-03"
1111
---
1212

1313
import { Aside, CopyText } from "@components"
1414

15-
This page lists the EVM-compatible networks supported by CRE workflows, along with their chain names (for configuration) and forwarder contract addresses (for consumer contract validation).
15+
<Aside type="note" title="Looking for supported networks?">
16+
For a complete list of supported networks and version requirements, see [Supported Networks](/cre/supported-networks).
17+
</Aside>
18+
19+
This page lists forwarder contract addresses for CRE workflows, organized by network.
1620

1721
## How to Use This Page
1822

@@ -98,13 +102,20 @@ These `KeystoneForwarder` addresses are used by deployed workflows. Use these ad
98102

99103
### Testnets
100104

101-
| Network | Chain Name | Forwarder Address |
102-
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------- | ------------------------------------------------------------------ |
103-
| <a href="https://sepolia.arbiscan.io/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Arbitrum Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-arbitrum-1" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
104-
| <a href="https://testnet.snowscan.xyz/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Avalanche Fuji</a> | <CopyText text="avalanche-testnet-fuji" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
105-
| <a href="https://sepolia.basescan.org/address/0xF8344CFd5c43616a4366C34E3EEE75af79a74482" target="_blank" rel="noopener noreferrer">Base Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-base-1" code/> | <CopyText text="0xF8344CFd5c43616a4366C34E3EEE75af79a74482" code/> |
106-
| <a href="https://testnet.bscscan.com/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">BNB Chain Testnet</a> | <CopyText text="binance_smart_chain-testnet" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
107-
| <a href="https://sepolia.etherscan.io/address/0xF8344CFd5c43616a4366C34E3EEE75af79a74482" target="_blank" rel="noopener noreferrer">Ethereum Sepolia</a> | <CopyText text="ethereum-testnet-sepolia" code/> | <CopyText text="0xF8344CFd5c43616a4366C34E3EEE75af79a74482" code/> |
108-
| <a href="https://sepolia-optimism.etherscan.io/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">OP Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-optimism-1" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
109-
| <a href="https://amoy.polygonscan.com/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Polygon Amoy</a> | <CopyText text="polygon-testnet-amoy" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
110-
| <a href="https://sepolia.explorer.zksync.io/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">ZKSync Era Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-zksync-1" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
105+
| Network | Chain Name | Forwarder Address |
106+
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------------ |
107+
| <a href="https://explorer.curtis.apechain.com/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Apechain Curtis</a> | <CopyText text="apechain-testnet-curtis" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
108+
| <a href="https://sepolia.arbiscan.io/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Arbitrum Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-arbitrum-1" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
109+
| <a href="https://testnet.snowscan.xyz/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Avalanche Fuji</a> | <CopyText text="avalanche-testnet-fuji" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
110+
| <a href="https://sepolia.basescan.org/address/0xF8344CFd5c43616a4366C34E3EEE75af79a74482" target="_blank" rel="noopener noreferrer">Base Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-base-1" code/> | <CopyText text="0xF8344CFd5c43616a4366C34E3EEE75af79a74482" code/> |
111+
| <a href="https://testnet.bscscan.com/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">BNB Chain Testnet</a> | <CopyText text="binance_smart_chain-testnet" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
112+
| <a href="https://sepolia.etherscan.io/address/0xF8344CFd5c43616a4366C34E3EEE75af79a74482" target="_blank" rel="noopener noreferrer">Ethereum Sepolia</a> | <CopyText text="ethereum-testnet-sepolia" code/> | <CopyText text="0xF8344CFd5c43616a4366C34E3EEE75af79a74482" code/> |
113+
| <a href="https://testnet.purrsec.com/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Hyperliquid Testnet</a> | <CopyText text="hyperliquid-testnet" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
114+
| <a href="https://explorer-sepolia.inkonchain.com/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Ink Sepolia</a> | <CopyText text="ink-testnet-sepolia" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
115+
| <a href="https://sepolia-explorer.jovay.io/l2/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Jovay Testnet</a> | <CopyText text="jovay-testnet" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
116+
| <a href="https://sepolia.lineascan.build/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Linea Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-linea-1" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
117+
| <a href="https://sepolia-optimism.etherscan.io/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">OP Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-optimism-1" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
118+
| <a href="https://testnet.plasmascan.to/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Plasma Testnet</a> | <CopyText text="plasma-testnet" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
119+
| <a href="https://amoy.polygonscan.com/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">Polygon Amoy</a> | <CopyText text="polygon-testnet-amoy" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
120+
| <a href="https://sepolia.worldscan.org/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">World Chain Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-worldchain-1" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |
121+
| <a href="https://sepolia.explorer.zksync.io/address/0x76c9cf548b4179F8901cda1f8623568b58215E62" target="_blank" rel="noopener noreferrer">ZKSync Era Sepolia</a> | <CopyText text="ethereum-testnet-sepolia-zksync-1" code/> | <CopyText text="0x76c9cf548b4179F8901cda1f8623568b58215E62" code/> |

0 commit comments

Comments
 (0)