diff --git a/src/config/data/chain-to-technology.json b/src/config/data/chain-to-technology.json index 6a7d2bcef5f..284dc29b076 100644 --- a/src/config/data/chain-to-technology.json +++ b/src/config/data/chain-to-technology.json @@ -7,7 +7,6 @@ "BASE_SEPOLIA": "BASE", "POLYGON_MAINNET": "POLYGON", "POLYGON_AMOY": "POLYGON", - "POLYGON_MUMBAI": "POLYGON", "GNOSIS_MAINNET": "GNOSIS", "GNOSIS_CHIADO": "GNOSIS", "AVALANCHE_MAINNET": "AVALANCHE", diff --git a/src/config/data/chains.json b/src/config/data/chains.json index 2b4439f9d1d..e1727f33f00 100644 --- a/src/config/data/chains.json +++ b/src/config/data/chains.json @@ -65,16 +65,6 @@ "decimals": 18 } }, - "POLYGON_MUMBAI": { - "chainId": 80001, - "title": "Mumbai testnet", - "explorer": "https://mumbai.polygonscan.com", - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 - } - }, "POLYGON_AMOY": { "chainId": 80002, "title": "Amoy testnet", diff --git a/src/config/types.ts b/src/config/types.ts index 1afc186289a..705013234c6 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -24,7 +24,6 @@ export type SupportedChain = | "BNB_MAINNET" | "BNB_TESTNET" | "POLYGON_MAINNET" - | "POLYGON_MUMBAI" | "GNOSIS_MAINNET" | "GNOSIS_CHIADO" | "AVALANCHE_MAINNET" diff --git a/src/config/web3Providers.ts b/src/config/web3Providers.ts index 67c27aa11f0..e608908af2a 100644 --- a/src/config/web3Providers.ts +++ b/src/config/web3Providers.ts @@ -9,7 +9,6 @@ export const chainToProvider: Record providers.Provider> = BNB_MAINNET: () => new providers.JsonRpcProvider("https://bsc.nodereal.io/"), BNB_TESTNET: () => new providers.JsonRpcProvider("https://data-seed-prebsc-1-s1.binance.org:8545/"), POLYGON_MAINNET: () => new providers.JsonRpcProvider("https://rpc.ankr.com/polygon"), - POLYGON_MUMBAI: () => new providers.JsonRpcProvider("https://rpc.ankr.com/polygon_mumbai"), GNOSIS_MAINNET: () => new providers.JsonRpcProvider("https://rpc.ankr.com/gnosis"), GNOSIS_CHIADO: () => new providers.JsonRpcProvider("https://rpc.chiadochain.net"), AVALANCHE_MAINNET: () => new providers.JsonRpcProvider("https://rpc.ankr.com/avalanche"), diff --git a/src/content/chainlink-automation/overview/automation-release-notes.mdx b/src/content/chainlink-automation/overview/automation-release-notes.mdx index e92bc19b91f..2494b5af12f 100644 --- a/src/content/chainlink-automation/overview/automation-release-notes.mdx +++ b/src/content/chainlink-automation/overview/automation-release-notes.mdx @@ -13,6 +13,7 @@ whatsnext: **Chainlink Automation Release Notes** +- [Polygon testnet support](#2024-04-13---polygon-testnet-support) - [Automation StreamsLookup error handler](#2024-03-07---automation-streamslookup-error-handler) - [Automation debugging script](#2024-02-27---automation-debugging-script) - [Automation on Optimism Sepolia](#2024-02-27---automation-on-optimism-sepolia) @@ -31,6 +32,11 @@ whatsnext: - [Keepers v1.1 launch on Ethereum](#2021-08-05---keepers-v11-launch-on-ethereum) - [Questions](#questions) +## 2024-04-13 - Polygon testnet support + +The Mumbai network has stopped producing blocks, so example code will not function on this network. Check again soon +for updates about future testnet support on Polygon. + ## 2024-03-07 - Automation StreamsLookup error handler The [Automation StreamsLookup error handler](/chainlink-automation/guides/streams-lookup-error-handler) is available to help you handle potential errors with StreamsLookup upkeeps. When you add the new [`checkErrorHandler`](/chainlink-automation/reference/automation-interfaces#checkerrorhandler-function) function, you can define custom logic to handle some errors offchain and handle other errors onchain in `performUpkeep`. @@ -121,7 +127,7 @@ Chainlink Keepers is live on Ethereum Rinkeby. ## 2021-11-18 - Keepers on Binance Smart Chain and Polygon -Chainlink Keepers is live on the both Binance Smart Chain [Mainnet](https://automation.chain.link/bsc) and [Testnet](https://automation.chain.link/bnb-chain-testnet), and Polygon [Mainnet](https://automation.chain.link/polygon) and [Testnet](https://automation.chain.link/mumbai). +Chainlink Keepers is live on the both Binance Smart Chain [Mainnet](https://automation.chain.link/bsc) and [Testnet](https://automation.chain.link/bnb-chain-testnet), and Polygon [Mainnet](https://automation.chain.link/polygon) and Mumbai testnet. ## 2021-08-05 - Keepers v1.1 launch on Ethereum diff --git a/src/content/chainlink-functions/resources/release-notes.mdx b/src/content/chainlink-functions/resources/release-notes.mdx index 10792da0072..f341e6a069f 100644 --- a/src/content/chainlink-functions/resources/release-notes.mdx +++ b/src/content/chainlink-functions/resources/release-notes.mdx @@ -6,6 +6,11 @@ title: "Chainlink Functions Release Notes" import { Aside } from "@components" +## Polygon testnet support - 2024-04-13 + +The Mumbai network has stopped producing blocks, so example code will not function on this network. Check again soon +for updates about future testnet support on Polygon. + ## Base Mainnet support - 2024-04-09 Chainlink Functions is available on [Base Mainnet](/chainlink-functions/supported-networks#base-mainnet). @@ -47,7 +52,7 @@ Chainlink Functions is available on [Arbitrum Mainnet](/chainlink-functions/supp - Polygon: - [Polygon Mainnet](/chainlink-functions/supported-networks#polygon-mainnet) - - [Polygon Mumbai](/chainlink-functions/supported-networks#mumbai-testnet) + - Polygon Mumbai - Avalanche: - [Avalanche Mainnet](/chainlink-functions/supported-networks#avalanche-mainnet) @@ -82,4 +87,4 @@ See the [supported networks](/chainlink-functions/supported-networks) page for m Chainlink Functions is available on the following testnets: - [Ethereum Sepolia](/chainlink-functions/supported-networks#sepolia-testnet) -- [Polygon Mumbai](/chainlink-functions/supported-networks#mumbai-testnet) +- Polygon Mumbai diff --git a/src/content/chainlink-functions/supported-networks.mdx b/src/content/chainlink-functions/supported-networks.mdx index 3b493a4c92a..328faa0cf73 100644 --- a/src/content/chainlink-functions/supported-networks.mdx +++ b/src/content/chainlink-functions/supported-networks.mdx @@ -61,26 +61,6 @@ Read the [LINK Token Contracts](/resources/link-token-contracts) page to learn w | Cancellation fees (withdrawing funds) | 0.1 LINK | | Minimum balance for uploading encrypted secrets | 0.1 LINK | -### Mumbai testnet - - - -| Item | Value | -| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Functions router |
| -| | / | -| Encrypted secrets upload endpoints |
| - -| Billing Item | Value | -| ----------------------------------------------- | ----------- | -| Premium fees | 0.2 LINK | -| Request threshold (withdrawing funds) | 10 requests | -| Cancellation fees (withdrawing funds) | 2 LINK | -| Minimum balance for uploading encrypted secrets | 2 LINK | - ## Avalanche ### Avalanche Mainnet diff --git a/src/content/resources/link-token-contracts.mdx b/src/content/resources/link-token-contracts.mdx index 144aa80a5dd..b56f928d76c 100644 --- a/src/content/resources/link-token-contracts.mdx +++ b/src/content/resources/link-token-contracts.mdx @@ -129,26 +129,6 @@ Testnet MATIC is used to pay for transactions on Polygon Amoy. | Decimals | 18 | | Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io) | -### Mumbai testnet - - - -Testnet MATIC is used to pay for transactions on Polygon Mumbai. Testnet MATIC is available at the [Polygon faucet](https://faucet.polygon.technology/). - -Testnet LINK is available at [faucets.chain.link](https://faucets.chain.link/mumbai). - -| Parameter | Value | -| :------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Chain ID | `80001` | -| Address |
| -| Name | Chainlink Token | -| Symbol | LINK | -| Decimals | 18 | -| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io) | - ## Gnosis Chain (xDai) ### Gnosis Chain mainnet diff --git a/src/content/vrf/release-notes.mdx b/src/content/vrf/release-notes.mdx index dcb17953bce..4dec6989b6a 100644 --- a/src/content/vrf/release-notes.mdx +++ b/src/content/vrf/release-notes.mdx @@ -10,6 +10,11 @@ whatsnext: } --- +## 2024-04-13 - Polygon testnet support changed + +The Mumbai network has stopped producing blocks, so example code will not function on this network. Check again soon +for updates about future testnet support on Polygon. + ## 2024-03-29 - Fantom support changed Creating new Fantom subscriptions in the [VRF Subscription Manager](https://vrf.chain.link/) is no longer supported. Existing Fantom subscriptions are still supported. diff --git a/src/content/vrf/v1/supported-networks.mdx b/src/content/vrf/v1/supported-networks.mdx index 04277580d2b..19e4fd87afa 100644 --- a/src/content/vrf/v1/supported-networks.mdx +++ b/src/content/vrf/v1/supported-networks.mdx @@ -35,20 +35,6 @@ For implementation details, read [Introduction to Chainlink VRF](/vrf/v1/introdu VRF responses are generated after 10 block confirmations on Polygon by default. -## Polygon (Matic) Mumbai Testnet - - - -| Item | Value | -| --------------- | -------------------------------------------------------------------- | -| LINK Token | `0x326C977E6efc84E512bB9C30f76E30c160eD06FB` | -| VRF Coordinator | `0x8C7382F9D8f56b33781fE506E897a4F1e2d17255` | -| Key Hash | `0x6e75b569a01ef56d18cab6a8e71e6600d6ce853834d4a5748b720d06f878b3a4` | -| Fee | 0.0001 LINK | - ## BNB Chain Mainnet