From 44b04efc1822190ee76098c5df5a26e5ae984330 Mon Sep 17 00:00:00 2001 From: ritika-b Date: Tue, 5 Dec 2023 09:52:55 -0500 Subject: [PATCH 1/2] add base --- .../overview/supported-networks.mdx | 2 ++ .../data/chainlink-automation-addresses.json | 4 +++ .../data/chainlink-automation-config.json | 25 +++++++++++++++++++ 3 files changed, 31 insertions(+) diff --git a/src/content/chainlink-automation/overview/supported-networks.mdx b/src/content/chainlink-automation/overview/supported-networks.mdx index bfbfd11dcde..e4e57483a0a 100644 --- a/src/content/chainlink-automation/overview/supported-networks.mdx +++ b/src/content/chainlink-automation/overview/supported-networks.mdx @@ -41,6 +41,8 @@ Chainlink Automation is available on the following networks. All networks operat - [Optimism](#optimism) - Mainnet - Goerli testnet +- [BASE](#base) + - Mainnet If you are interested in using Chainlink Automation but need it on a different blockchain or network, [contact us](https://forms.gle/WadxnzzjHPtta5Zd9) and let us know. diff --git a/src/features/chainlink-automation/data/chainlink-automation-addresses.json b/src/features/chainlink-automation/data/chainlink-automation-addresses.json index 2b7ca2b3bd2..c11e090dc30 100644 --- a/src/features/chainlink-automation/data/chainlink-automation-addresses.json +++ b/src/features/chainlink-automation/data/chainlink-automation-addresses.json @@ -62,5 +62,9 @@ "OPTIMISM_GOERLI": { "registryAddress": "0x500Fb2e3903D3f296a69E21EC95661db5FE7F31C", "registrarAddress": "0xCA7A0b1F8153EcD3861899d468dC946F22B39114" + }, + "BASE_MAINNET": { + "registryAddress": "0xE226D5aCae908252CcA3F6CEFa577527650a9e1e", + "registrarAddress": "0xD8983a340A96b9C2Bb6855E46847aE134Db71fB1" } } diff --git a/src/features/chainlink-automation/data/chainlink-automation-config.json b/src/features/chainlink-automation/data/chainlink-automation-config.json index b91898c3069..5e65347f840 100644 --- a/src/features/chainlink-automation/data/chainlink-automation-config.json +++ b/src/features/chainlink-automation/data/chainlink-automation-config.json @@ -398,5 +398,30 @@ "stalenessSeconds": 90000, "registrar": "0xCA7A0b1F8153EcD3861899d468dC946F22B39114", "transcoder": "0x395C8461299c9981E9D1A30d116F0c80a927d2A4" + }, + "BASE_MAINNET": { + "paymentPremiumPPB": 500000000, + "blockCountPerTurn": "Not Applicable", + "maxCheckDataSize": 5000, + "checkGasLimit": 10000000, + "gasCeilingMultiplier": 5, + "minUpkeepSpend": { + "type": "BigNumber", + "hex": "0x016345785d8a0000" + }, + "maxPerformGas": 5000000, + "fallbackGasPrice": { + "type": "BigNumber", + "hex": "0x3b9aca00" + }, + "fallbackLinkPrice": { + "type": "BigNumber", + "hex": "0x2386f26fc10000" + }, + "maxPerformDataSize": 2000, + "flatFeeMicroLink": 0, + "stalenessSeconds": 90000, + "registrar": "0xD8983a340A96b9C2Bb6855E46847aE134Db71fB1", + "transcoder": "0x395C8461299c9981E9D1A30d116F0c80a927d2A4" } } From a780a307ae02f485fe1decbc34737afa5c43bdb9 Mon Sep 17 00:00:00 2001 From: ritika-b Date: Wed, 6 Dec 2023 13:18:01 -0500 Subject: [PATCH 2/2] add callout --- .../chainlink-automation/overview/supported-networks.mdx | 8 ++++++-- src/content/resources/link-token-contracts.mdx | 4 ++++ src/features/ccip/CcipCommon.astro | 5 ++++- src/features/ccip/third-party-apps.mdx | 8 ++++++++ 4 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 src/features/ccip/third-party-apps.mdx diff --git a/src/content/chainlink-automation/overview/supported-networks.mdx b/src/content/chainlink-automation/overview/supported-networks.mdx index e4e57483a0a..c7215b114c1 100644 --- a/src/content/chainlink-automation/overview/supported-networks.mdx +++ b/src/content/chainlink-automation/overview/supported-networks.mdx @@ -15,6 +15,7 @@ whatsnext: import { AutomationConfigList } from "@features/chainlink-automation" import ResourcesCallout from "@features/resources/callouts/ResourcesCallout.astro" +import CcipCommon from "@features/ccip/CcipCommon.astro" Chainlink Automation is available on the following networks. All networks operate on v2.0 unless specified otherwise: @@ -44,6 +45,11 @@ Chainlink Automation is available on the following networks. All networks operat - [BASE](#base) - Mainnet +To use Chainlink Automation on certain networks, you may need to conduct token transfers. You can transfer tokens by using [Chainlink CCIP](/ccip/tutorials/cross-chain-tokens) or third-party applications such as [XSwap](https://xswap.link/). + + + + If you are interested in using Chainlink Automation but need it on a different blockchain or network, [contact us](https://forms.gle/WadxnzzjHPtta5Zd9) and let us know. ## Parameters @@ -59,6 +65,4 @@ If you are interested in using Chainlink Automation but need it on a different b ## Configurations - - diff --git a/src/content/resources/link-token-contracts.mdx b/src/content/resources/link-token-contracts.mdx index 09b6b39169e..99bf1918bbb 100644 --- a/src/content/resources/link-token-contracts.mdx +++ b/src/content/resources/link-token-contracts.mdx @@ -11,6 +11,7 @@ metadata: import { Aside, Address } from "@components" import ResourcesCallout from "@features/resources/callouts/ResourcesCallout.astro" +import CcipCommon from "@features/ccip/CcipCommon.astro"