Skip to content
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

Add BASE to Automation #1683

Merged
merged 4 commits into from
Dec 11, 2023
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 @@ -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:

Expand All @@ -41,6 +42,13 @@ Chainlink Automation is available on the following networks. All networks operat
- [Optimism](#optimism)
- Mainnet
- Goerli testnet
- [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/).

<CcipCommon callout="thirdPartyApps" />
<ResourcesCallout callout="bridgeRisks" />

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.

Expand All @@ -57,6 +65,4 @@ If you are interested in using Chainlink Automation but need it on a different b

## Configurations

<ResourcesCallout callout="bridgeRisks" />

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

<Aside type="note" title="Talk to an expert">
<a href="https://chain.link/contact?ref_id=Contracts">Contact us</a> to talk to an expert about the networks that
Expand All @@ -21,6 +22,9 @@ LINK tokens are used to pay node operators for retrieving data for smart contrac

The LINK token is an ERC677 token that inherits functionality from the ERC20 token standard and allows token transfers to contain a data payload. Read more about the [ERC677 transferAndCall token standard](https://github.com/ethereum/EIPs/issues/677).

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/).

<CcipCommon callout="thirdPartyApps" />
<ResourcesCallout callout="bridgeRisks" />

## Ethereum
Expand Down
5 changes: 4 additions & 1 deletion src/features/ccip/CcipCommon.astro
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
---
const extraArgsCallout = await Astro.glob("./ExtraArgsCallout.mdx")
const ExtraArgsCalloutComponent = extraArgsCallout[0].Content
const thirdPartyApps = await Astro.glob("./third-party-apps.mdx")
const ThirdPartyAppsComponent = thirdPartyApps[0].Content

export type Props = {
callout?: "extraArgsCallout"
callout?: "extraArgsCallout" | "thirdPartyApps"
}
const { callout } = Astro.props as Props
---

{callout === "extraArgsCallout" && <ExtraArgsCalloutComponent />}
{callout === "thirdPartyApps" && <ThirdPartyAppsComponent />}
8 changes: 8 additions & 0 deletions src/features/ccip/third-party-apps.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { Aside } from "@components"

<Aside type="note" title="Interfaces and Applications">
Chainlink CCIP is a messaging protocol. Third parties may build user interfaces or other applications on top of CCIP.
Neither Chainlink Labs nor the Chainlink Foundation owns, controls, endorses, or assumes any responsibility for any
such interfaces or applications. You are solely responsible for your use of such interfaces or applications. Please
visit the Chainlink Foundation [Terms of Service](https://chain.link/terms) for more information.
</Aside>
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,9 @@
"OPTIMISM_GOERLI": {
"registryAddress": "0x500Fb2e3903D3f296a69E21EC95661db5FE7F31C",
"registrarAddress": "0xCA7A0b1F8153EcD3861899d468dC946F22B39114"
},
"BASE_MAINNET": {
"registryAddress": "0xE226D5aCae908252CcA3F6CEFa577527650a9e1e",
"registrarAddress": "0xD8983a340A96b9C2Bb6855E46847aE134Db71fB1"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Loading