Skip to content

Remove Polygon Mumbai #1888

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/config/data/chain-to-technology.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
10 changes: 0 additions & 10 deletions src/config/data/chains.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 0 additions & 1 deletion src/config/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export type SupportedChain =
| "BNB_MAINNET"
| "BNB_TESTNET"
| "POLYGON_MAINNET"
| "POLYGON_MUMBAI"
| "GNOSIS_MAINNET"
| "GNOSIS_CHIADO"
| "AVALANCHE_MAINNET"
Expand Down
1 change: 0 additions & 1 deletion src/config/web3Providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const chainToProvider: Record<SupportedChain, () => 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"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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`.
Expand Down Expand Up @@ -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

Expand Down
9 changes: 7 additions & 2 deletions src/content/chainlink-functions/resources/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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
20 changes: 0 additions & 20 deletions src/content/chainlink-functions/supported-networks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

<Aside type="note" title="Polygon Mumbai network status">
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.
</Aside>

| Item | Value |
| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Functions router | <Address contractUrl="https://mumbai.polygonscan.com/address/0x6E2dc0F9DB014aE19888F539E59285D2Ea04244C" /> |
| <DonId client:load/> | <CopyText text="fun-polygon-mumbai-1" code /> / <CopyText text="0x66756e2d706f6c79676f6e2d6d756d6261692d31000000000000000000000000"code format formatType="bytes32" /> |
| Encrypted secrets upload endpoints | <ul><li><CopyText text="https://01.functions-gateway.testnet.chain.link/" code /></li><li><CopyText text="https://02.functions-gateway.testnet.chain.link/" code /></li></ul> |

| 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
Expand Down
20 changes: 0 additions & 20 deletions src/content/resources/link-token-contracts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

<Aside type="note" title="Polygon Mumbai network status">
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.
</Aside>

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 | <Address contractUrl="https://mumbai.polygonscan.com/address/0x326C977E6efc84E512bB9C30f76E30c160eD06FB" urlId="80001_0x326C977E6efc84E512bB9C30f76E30c160eD06FB" urlClass="erc-token-address"/> |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io) |

## Gnosis Chain (xDai)

### Gnosis Chain mainnet
Expand Down
5 changes: 5 additions & 0 deletions src/content/vrf/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
14 changes: 0 additions & 14 deletions src/content/vrf/v1/supported-networks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
</Aside>

## Polygon (Matic) Mumbai Testnet

<Aside type="note" title="Polygon Mumbai network status">
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.
</Aside>

| Item | Value |
| --------------- | -------------------------------------------------------------------- |
| LINK Token | `0x326C977E6efc84E512bB9C30f76E30c160eD06FB` |
| VRF Coordinator | `0x8C7382F9D8f56b33781fE506E897a4F1e2d17255` |
| Key Hash | `0x6e75b569a01ef56d18cab6a8e71e6600d6ce853834d4a5748b720d06f878b3a4` |
| Fee | 0.0001 LINK |

## BNB Chain Mainnet

<Aside type="note" title="Important">
Expand Down
20 changes: 0 additions & 20 deletions src/content/vrf/v2/direct-funding/supported-networks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -146,26 +146,6 @@ VRF v2 coordinators for direct funding are available on several networks. To see
| Wrapper Gas overhead | 40000 |
| Coordinator Gas Overhead | 90000 |

### Polygon (Matic) Mumbai testnet

<Aside type="note" title="Polygon Mumbai network status">
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.
</Aside>

| Item | Value |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| LINK Token | <Address contractUrl="https://mumbai.polygonscan.com/address/0x326C977E6efc84E512bB9C30f76E30c160eD06FB" urlId="80001_0x326C977E6efc84E512bB9C30f76E30c160eD06FB" urlClass="erc-token-address"/> |
| VRF Wrapper | <Address contractUrl="https://mumbai.polygonscan.com/address/0x99aFAf084eBA697E584501b8Ed2c0B37Dd136693" /> |
| VRF Coordinator | <Address contractUrl="https://mumbai.polygonscan.com/address/0x7a1BaC17Ccc5b313516C5E16fb24f7659aA5ebed" /> |
| Wrapper Premium Percentage | 0 |
| Coordinator Flat Fee | 0.0005 LINK |
| Minimum Confirmations | 3 |
| Maximum Confirmations | 200 |
| Maximum Random Values | 10 |
| Wrapper Gas overhead | 40000 |
| Coordinator Gas Overhead | 90000 |

### Avalanche mainnet

| Item | Value |
Expand Down
18 changes: 0 additions & 18 deletions src/content/vrf/v2/subscription/supported-networks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -130,24 +130,6 @@ VRF v2 coordinators for subscription funding are available on several networks.
| Maximum Confirmations | 200 |
| Maximum Random Values | 500 |

### Polygon (Matic) Mumbai testnet

<Aside type="note" title="Polygon Mumbai network status">
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.
</Aside>

| Item | Value |
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| LINK Token | <Address contractUrl="https://mumbai.polygonscan.com/address/0x326C977E6efc84E512bB9C30f76E30c160eD06FB" urlId="80001_0x326C977E6efc84E512bB9C30f76E30c160eD06FB" urlClass="erc-token-address"/> |
| VRF Coordinator | <Address contractUrl="https://mumbai.polygonscan.com/address/0x7a1BaC17Ccc5b313516C5E16fb24f7659aA5ebed" /> |
| 500 gwei Key Hash | <CopyText text="0x4b09e658ed251bcafeebbc69400383d49f344ace09b9576fe248bb02c003fe9f" code /> |
| Premium | 0.0005 LINK |
| Max Gas Limit | 2,500,000 |
| Minimum Confirmations | 3 |
| Maximum Confirmations | 200 |
| Maximum Random Values | 500 |

### Avalanche mainnet

| Item | Value |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,18 +106,6 @@ export const AutomationConfigList = () => {
getExplorerAddressUrl={getExplorerAddressUrl(explorerUrl)}
/>
</>
) : title === "Mumbai testnet" ? (
<>
<TemporaryNote title="Polygon Mumbai network status">
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.
</TemporaryNote>
<AutomationConfig
config={config}
registryAddress={registryAddress}
getExplorerAddressUrl={getExplorerAddressUrl(explorerUrl)}
/>
</>
) : (
<AutomationConfig
config={config}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
"registryAddress": "0x08a8eea76D2395807Ce7D1FC942382515469cCA1",
"registrarAddress": "0x0Bc5EDC7219D272d9dEDd919CE2b4726129AC02B"
},
"POLYGON_MUMBAI": {
"registryAddress": "0xf97C091179A4A4d666da7a2764dDeD4F932FC14A",
"registrarAddress": "0xb58E509b59538256854b2a223289160F83B23F92"
},
"AVALANCHE_MAINNET": {
"registryAddress": "0x7f00a3Cd4590009C349192510D51F8e6312E08CB",
"registrarAddress": "0x5Cb7B29e621810Ce9a04Bee137F8427935795d00"
Expand Down
Loading
Loading