Skip to content

CLA on Amoy #1903

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
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ whatsnext:

**Chainlink Automation Release Notes**

- [Automation on Polygon Amoy](#2024-04-23---automation-on-polygon-amoy)
- [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)
Expand All @@ -32,6 +33,10 @@ whatsnext:
- [Keepers v1.1 launch on Ethereum](#2021-08-05---keepers-v11-launch-on-ethereum)
- [Questions](#questions)

## 2024-04-23 - Automation on Polygon Amoy

Chainlink Automation is live on [Polygon Amoy](/chainlink-automation/overview/supported-networks#amoy-testnet).

## 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
"registryAddress": "0x08a8eea76D2395807Ce7D1FC942382515469cCA1",
"registrarAddress": "0x0Bc5EDC7219D272d9dEDd919CE2b4726129AC02B"
},
"POLYGON_AMOY": {
"registryAddress": "0x93C0e201f7B158F503a1265B6942088975f92ce7",
"registrarAddress": "0x99083A4bb154B0a3EC7a0D1eb40370C892Db4225"
},
"AVALANCHE_MAINNET": {
"registryAddress": "0x7f00a3Cd4590009C349192510D51F8e6312E08CB",
"registrarAddress": "0x5Cb7B29e621810Ce9a04Bee137F8427935795d00"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"paymentPremiumPPB": 700000000,
"blockCountPerTurn": "Not Applicable",
"maxCheckDataSize": 5000,
"checkGasLimit": 6500000,
"checkGasLimit": 10000000,
"gasCeilingMultiplier": 3,
"minUpkeepSpend": {
"type": "BigNumber",
Expand All @@ -122,7 +122,32 @@
"flatFeeMicroLink": 0,
"stalenessSeconds": 90000,
"registrar": "0x0Bc5EDC7219D272d9dEDd919CE2b4726129AC02B",
"transcoder": "0x0000000000000000000000000000000000000000"
"transcoder": "0xdCcBef386c2f9A8C8d38d33bCD424Ddbb064bb6d"
},
"POLYGON_AMOY": {
"paymentPremiumPPB": 300000000,
"blockCountPerTurn": "Not Applicable",
"maxCheckDataSize": 5000,
"checkGasLimit": 10000000,
"gasCeilingMultiplier": 3,
"minUpkeepSpend": {
"type": "BigNumber",
"hex": "0x016345785d8a0000"
},
"maxPerformGas": 5000000,
"fallbackGasPrice": {
"type": "BigNumber",
"hex": "0xe8d4a51000"
},
"fallbackLinkPrice": {
"type": "BigNumber",
"hex": "0x5c810d82e2bcd360"
},
"maxPerformDataSize": 5000,
"flatFeeMicroLink": 10000,
"stalenessSeconds": 360000,
"registrar": "0x99083A4bb154B0a3EC7a0D1eb40370C892Db4225",
"transcoder": "0x703C1d261a996755409c74d00871e7D6Af4d9896"
},
"AVALANCHE_MAINNET": {
"paymentPremiumPPB": 400000000,
Expand Down