# https://docs.chain.link/getting-started/conceptual-overview llms-full.txt
## Smart Contract Overview
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [Smart Contract Overview](https://docs.chain.link/getting-started/conceptual-overview\#overview)
Welcome to the Smart Contract Getting Started guide. This overview explains the basic concepts of smart contract development and oracle networks.
**Skip ahead:**
To get your hands on the code right away, you can skip this overview:
- [Deploy Your First Smart Contract](https://docs.chain.link/quickstarts/deploy-your-first-contract): If you are new to smart contracts, deploy your first smart contract in an interactive web development environment.
- [Learn how to use Data Feeds](https://docs.chain.link/data-feeds/getting-started): If you are already familiar with smart contracts and want to learn how to create _hybrid_ smart contracts, use Chainlink Data Feeds to get asset price data onchain.
Play
## [What is a smart contract? What is a hybrid smart contract?](https://docs.chain.link/getting-started/conceptual-overview\#what-is-a-smart-contract-what-is-a-hybrid-smart-contract)
When deployed to a blockchain, a _smart contract_ is a set of instructions that can be executed without intervention from third parties. The smart contract code defines how it responds to input, just like the code of any other computer program.
A valuable feature of smart contracts is that they can store and manage onchain assets (like [ETH or ERC20 tokens](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/)), just like you can with an Ethereum wallet. Because they have an onchain address like a wallet, they can do everything any other address can. This enables you to program automated actions when receiving and transferring assets.
Smart contracts can connect to real-world market prices of assets to produce powerful applications. Securely connecting smart contracts with offchain data and services is what makes them _hybrid_ smart contracts. This is done using oracles.
## [What language is a smart contract written in?](https://docs.chain.link/getting-started/conceptual-overview\#what-language-is-a-smart-contract-written-in)
The most popular language for writing smart contracts on Ethereum and EVM Chains is [Solidity](https://docs.soliditylang.org/en/latest/). It was created by the Ethereum Foundation specifically for smart contract development and is constantly being updated. Other languages exist for writing smart contracts on Ethereum and EVM Chains, but Solidity is the language used for Chainlink smart contracts.
If you've ever written Javascript, Java, or other object-oriented scripting languages, Solidity should be easy to understand. Similar to object-oriented languages, Solidity is considered to be a _contract_-oriented language.
Some networks are not EVM-compatible and use languages other than Solidity for smart contracts, such as [Solana in Rust](https://solana.com/docs/programs/rust) or Starknet in [Cairo](https://www.cairo-lang.org/).
## [What does a smart contract look like?](https://docs.chain.link/getting-started/conceptual-overview\#what-does-a-smart-contract-look-like)
The structure of a smart contract is similar to that of a class in Javascript, with a few differences. For example, the following `HelloWorld` contract is a simple smart contract that stores a single variable and includes a function to update the value of that variable.

```solidity
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/**
* THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE.
* DO NOT USE THIS CODE IN PRODUCTION.
*/
contract HelloWorld {
string public message;
constructor(string memory initialMessage) {
message = initialMessage;
}
function updateMessage(string memory newMessage) public {
message = newMessage;
}
}
```
[Open in Remix](https://remix.ethereum.org/#url=https://docs.chain.link/samples/Tutorials/HelloWorld.sol&autoCompile=true) [What is Remix?](https://docs.chain.link/getting-started/conceptual-overview#what-is-remix)
### [Solidity versions](https://docs.chain.link/getting-started/conceptual-overview\#solidity-versions)
The first thing that every Solidity file must have is the Solidity version definition. The `HelloWorld.sol` contract uses version `0.8.7`, which is defined in the contract as `pragma solidity 0.8.7;`
You can see the latest versions of the Solidity compiler [here](https://github.com/ethereum/solc-bin/blob/gh-pages/bin/list.txt/?target=_blank). You might also notice smart contracts that are compatible with a range of versions.

```solidity
pragma solidity >=0.7.0 <0.9.0;
```
This means that the code is written for Solidity version 0.7.0, or a newer version of the language up to, but not including version 0.9.0. The `pragma` selects the compiler, which defines how the code is treated.
### [Naming a Contract](https://docs.chain.link/getting-started/conceptual-overview\#naming-a-contract)
The `contract` keyword defines the name of the contract, which in this example is `HelloWorld`. This is similar to declaring a `class` in Javascript. The implementation of `HelloWorld` is inside this definition and denoted with curly braces.

```solidity
contract HelloWorld {
}
```
### [Variables](https://docs.chain.link/getting-started/conceptual-overview\#variables)
Like Javascript, contracts can have state variables and local variables. **State variables** are variables with values that are permanently stored in contract storage. The values of **local variables**, however, are present only until the function is executing. There are also different types of variables you can use within Solidity, such as `string`, `uint256`, etc. Check out the [Solidity documentation](https://docs.soliditylang.org/en/v0.8.7/) to learn more about the different kinds of variables and types.
_Visibility modifiers_ are used to define the level of access to these variables. Here are some examples of state variables with different visibility modifiers:

```solidity
string public message;
uint256 internal internalVar;
uint8 private privateVar;
```
Learn more about state variables visibility [here](https://docs.soliditylang.org/en/latest/contracts.html#state-variable-visibility).
### [Constructors](https://docs.chain.link/getting-started/conceptual-overview\#constructors)
Another familiar concept to programmers is the **constructor**. When you deploy a contract, the constructor sets the state of the contract when it is first created.
In `HelloWorld`, the constructor takes in a `string` as a parameter and sets the `message` state variable to that string.

```solidity
constructor(string memory initialMessage) {
message = initialMessage;
}
```
### [Functions](https://docs.chain.link/getting-started/conceptual-overview\#functions)
**Functions** can access and modify the state of the contract or call other functions on external contracts. `HelloWorld` has a function named `updateMessage`, which updates the current message stored in the state.

```solidity
constructor(string memory initialMessage) {
message = initialMessage;
}
function updateMessage(string memory newMessage) public {
message = newMessage;
}
```
Functions use visibility modifiers to define the access level. Learn more about functions visibility [here](https://docs.soliditylang.org/en/latest/contracts.html#function-visibility).
### [Interfaces](https://docs.chain.link/getting-started/conceptual-overview\#interfaces)
An **interface** is another concept that is familiar to programmers of other languages. Interfaces define functions without their implementation, which leaves inheriting contracts to define the actual implementation themselves. This makes it easier to know what functions to call in a contract. Here's an example of an interface:

```solidity
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/**
* THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE.
* DO NOT USE THIS CODE IN PRODUCTION.
*/
interface numberComparison {
function isSameNum(uint a, uint b) external view returns (bool);
}
contract Test is numberComparison {
constructor() {}
function isSameNum(uint a, uint b) external pure override returns (bool) {
if (a == b) {
return true;
} else {
return false;
}
}
}
```
[Open in Remix](https://remix.ethereum.org/#url=https://docs.chain.link/samples/Tutorials/Test.sol&autoCompile=true) [What is Remix?](https://docs.chain.link/getting-started/conceptual-overview#what-is-remix)
For this example, `override` is necessary in the `Test` contract function because it overrides the base function contained in the `numberComparison` interface. The contract uses `pure` instead of `view` because the `isSameNum` function in the `Test` contract does not return a storage variable.
## [What does "deploying" mean?](https://docs.chain.link/getting-started/conceptual-overview\#what-does-deploying-mean)
**Deploying** a smart contract is the process of pushing the code to the blockchain, at which point it resides with an onchain address. Once it's deployed, the code cannot be changed and is said to be _immutable_.
As long as the address is known, its functions can be called through an interface, on [Etherscan](https://etherscan.io/), or through a library like [web3js](https://web3js.readthedocs.io/), [web3py](https://web3py.readthedocs.io/), [ethers](https://docs.ethers.io/), and more. Contracts can also be written to interact with other contracts on the blockchain.
## [What is a LINK token?](https://docs.chain.link/getting-started/conceptual-overview\#what-is-a-link-token)
The LINK token is an ERC677 token that inherits functionality from the [ERC20 token standard](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/) and allows token transfers to contain a data payload. It is used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators.
Any wallet that handles ERC20 tokens can store LINK tokens. The ERC677 token standard that the LINK token implements still retains all functionality of ERC20 tokens.
## [What are oracles?](https://docs.chain.link/getting-started/conceptual-overview\#what-are-oracles)
**Oracles** provide a bridge between the real-world and onchain smart contracts by being a source of data that smart contracts can rely on, and act upon.
Oracles play a critical role in facilitating the full potential of smart contract utility. Without a reliable connection to real-world conditions, smart contracts cannot effectively serve the real-world.
## [How do smart contracts use oracles?](https://docs.chain.link/getting-started/conceptual-overview\#how-do-smart-contracts-use-oracles)
Oracles are most popularly used with [_Data Feeds_](https://docs.chain.link/data-feeds). DeFi platforms like [AAVE](https://aave.com/) and [Synthetix](https://www.synthetix.io/) use Chainlink data feed oracles to obtain accurate real-time asset prices in their smart contracts.
Chainlink data feeds are sources of data [aggregated from many independent Chainlink node operators](https://docs.chain.link/architecture-overview/architecture-decentralized-model). Each data feed has an onchain address and functions that enable contracts to read from that address. For example, the [ETH / USD feed](https://data.chain.link/feeds/ethereum/mainnet/eth-usd).

Smart contracts also use oracles to get other capabilities onchain:
- [Generate Verifiable Random Numbers (VRF)](https://docs.chain.link/vrf): Use Chainlink VRF to consume randomness in your smart contracts.
- [Call External APIs (Any API)](https://docs.chain.link/any-api/introduction): Request & Receive data from any API using the Chainlink contract library.
- [Automate Smart Contracts using Chainlink Automation](https://docs.chain.link/chainlink-automation): Automating smart contract functions and regular contract maintenance.
## [What is Remix?](https://docs.chain.link/getting-started/conceptual-overview\#what-is-remix)
Play
[Remix](https://remix.ethereum.org/) is a web IDE (integrated development environment) for creating, running, and debugging smart contracts in the browser. It is developed and maintained by the Ethereum foundation. Remix allows Solidity developers to write smart contracts without a development machine since everything required is included in the web interface. It allows for a simplified method of interacting with deployed contracts, without the need for a command line interface. Remix also has support for samples. This means that Remix can load code from Github.
To learn how to use Remix, see the [Deploying Your First Smart Contract](https://docs.chain.link/quickstarts/deploy-your-first-contract) guide.
[Deploy Your First Smart Contract](https://docs.chain.link/quickstarts/deploy-your-first-contract/)
## [What is MetaMask?](https://docs.chain.link/getting-started/conceptual-overview\#what-is-metamask)
Contracts are deployed by other addresses on the network. To deploy a smart contract, you need an address. Not only that, but you need an address which you can easily use with Remix. Fortunately, [MetaMask](https://metamask.io/) is just what is needed. **MetaMask** allows anyone to create an address, store funds, and interact with Ethereum compatible blockchains from a browser extension.
## What's next
- [\> Deploy Your First Smart Contract](https://docs.chain.link/quickstarts/deploy-your-first-contract)
- [\> Consuming Data Feeds](https://docs.chain.link/data-feeds/getting-started)
## Get the latest Chainlink content straight to your inbox.
Email Address
[iframe](https://td.doubleclick.net/td/rul/346357746?random=1748840084733&cv=11&fst=1748840084733&fmt=3&bg=ffffff&guid=ON&async=1&gcl_ctr=1>m=45be55s2v891173849z8847174275za200zb847174275&gcd=13l3l3l3l1l1&dma=0&tag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351866~103351868~104481633~104481635~104559073~104559075~104612245~104612247&ptag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&u_w=1280&u_h=1024&url=https%3A%2F%2Fdocs.chain.link%2Fgetting-started%2Fconceptual-overview&label=_duuCKn_k4cYEPL_k6UB&hn=www.googleadservices.com&frm=0&tiba=Smart%20Contract%20Overview%20%7C%20Chainlink%20Documentation&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=406462019.1748840084&uaa=x86&uab=64&uafvl=Google%2520Chrome%3B137.0.7151.55%7CChromium%3B137.0.7151.55%7CNot%252FA)Brand%3B24.0.0.0&uamb=0&uam=&uap=Linux%20x86_64&uapv=6.6.72&uaw=0&ec_mode=a&fledge=1&capi=1&_tu=Cg&em=tv.1&ct_cookie_present=0)
## Smart Contract Overview
[iframe](https://www.googletagmanager.com/ns.html?id=GTM-N6DQ47T)
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [Smart Contract Overview](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#overview)
Welcome to the Smart Contract Getting Started guide. This overview explains the basic concepts of smart contract development and oracle networks.
**Skip ahead:**
To get your hands on the code right away, you can skip this overview:
- [Deploy Your First Smart Contract](https://docs.chain.link/quickstarts/deploy-your-first-contract): If you are new to smart contracts, deploy your first smart contract in an interactive web development environment.
- [Learn how to use Data Feeds](https://docs.chain.link/data-feeds/getting-started): If you are already familiar with smart contracts and want to learn how to create _hybrid_ smart contracts, use Chainlink Data Feeds to get asset price data onchain.
Play
## [What is a smart contract? What is a hybrid smart contract?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#what-is-a-smart-contract-what-is-a-hybrid-smart-contract)
When deployed to a blockchain, a _smart contract_ is a set of instructions that can be executed without intervention from third parties. The smart contract code defines how it responds to input, just like the code of any other computer program.
A valuable feature of smart contracts is that they can store and manage onchain assets (like [ETH or ERC20 tokens](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/)), just like you can with an Ethereum wallet. Because they have an onchain address like a wallet, they can do everything any other address can. This enables you to program automated actions when receiving and transferring assets.
Smart contracts can connect to real-world market prices of assets to produce powerful applications. Securely connecting smart contracts with offchain data and services is what makes them _hybrid_ smart contracts. This is done using oracles.
## [What language is a smart contract written in?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#what-language-is-a-smart-contract-written-in)
The most popular language for writing smart contracts on Ethereum and EVM Chains is [Solidity](https://docs.soliditylang.org/en/latest/). It was created by the Ethereum Foundation specifically for smart contract development and is constantly being updated. Other languages exist for writing smart contracts on Ethereum and EVM Chains, but Solidity is the language used for Chainlink smart contracts.
If you've ever written Javascript, Java, or other object-oriented scripting languages, Solidity should be easy to understand. Similar to object-oriented languages, Solidity is considered to be a _contract_-oriented language.
Some networks are not EVM-compatible and use languages other than Solidity for smart contracts, such as [Solana in Rust](https://solana.com/docs/programs/rust) or Starknet in [Cairo](https://www.cairo-lang.org/).
## [What does a smart contract look like?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#what-does-a-smart-contract-look-like)
The structure of a smart contract is similar to that of a class in Javascript, with a few differences. For example, the following `HelloWorld` contract is a simple smart contract that stores a single variable and includes a function to update the value of that variable.

```solidity
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/**
* THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE.
* DO NOT USE THIS CODE IN PRODUCTION.
*/
contract HelloWorld {
string public message;
constructor(string memory initialMessage) {
message = initialMessage;
}
function updateMessage(string memory newMessage) public {
message = newMessage;
}
}
```
[Open in Remix](https://remix.ethereum.org/#url=https://docs.chain.link/samples/Tutorials/HelloWorld.sol&autoCompile=true) [What is Remix?](https://docs.chain.link/getting-started/conceptual-overview#what-is-remix)
### [Solidity versions](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#solidity-versions)
The first thing that every Solidity file must have is the Solidity version definition. The `HelloWorld.sol` contract uses version `0.8.7`, which is defined in the contract as `pragma solidity 0.8.7;`
You can see the latest versions of the Solidity compiler [here](https://github.com/ethereum/solc-bin/blob/gh-pages/bin/list.txt/?target=_blank). You might also notice smart contracts that are compatible with a range of versions.

```solidity
pragma solidity >=0.7.0 <0.9.0;
```
This means that the code is written for Solidity version 0.7.0, or a newer version of the language up to, but not including version 0.9.0. The `pragma` selects the compiler, which defines how the code is treated.
### [Naming a Contract](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#naming-a-contract)
The `contract` keyword defines the name of the contract, which in this example is `HelloWorld`. This is similar to declaring a `class` in Javascript. The implementation of `HelloWorld` is inside this definition and denoted with curly braces.

```solidity
contract HelloWorld {
}
```
### [Variables](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#variables)
Like Javascript, contracts can have state variables and local variables. **State variables** are variables with values that are permanently stored in contract storage. The values of **local variables**, however, are present only until the function is executing. There are also different types of variables you can use within Solidity, such as `string`, `uint256`, etc. Check out the [Solidity documentation](https://docs.soliditylang.org/en/v0.8.7/) to learn more about the different kinds of variables and types.
_Visibility modifiers_ are used to define the level of access to these variables. Here are some examples of state variables with different visibility modifiers:

```solidity
string public message;
uint256 internal internalVar;
uint8 private privateVar;
```
Learn more about state variables visibility [here](https://docs.soliditylang.org/en/latest/contracts.html#state-variable-visibility).
### [Constructors](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#constructors)
Another familiar concept to programmers is the **constructor**. When you deploy a contract, the constructor sets the state of the contract when it is first created.
In `HelloWorld`, the constructor takes in a `string` as a parameter and sets the `message` state variable to that string.

```solidity
constructor(string memory initialMessage) {
message = initialMessage;
}
```
### [Functions](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#functions)
**Functions** can access and modify the state of the contract or call other functions on external contracts. `HelloWorld` has a function named `updateMessage`, which updates the current message stored in the state.

```solidity
constructor(string memory initialMessage) {
message = initialMessage;
}
function updateMessage(string memory newMessage) public {
message = newMessage;
}
```
Functions use visibility modifiers to define the access level. Learn more about functions visibility [here](https://docs.soliditylang.org/en/latest/contracts.html#function-visibility).
### [Interfaces](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#interfaces)
An **interface** is another concept that is familiar to programmers of other languages. Interfaces define functions without their implementation, which leaves inheriting contracts to define the actual implementation themselves. This makes it easier to know what functions to call in a contract. Here's an example of an interface:

```solidity
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/**
* THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE.
* DO NOT USE THIS CODE IN PRODUCTION.
*/
interface numberComparison {
function isSameNum(uint a, uint b) external view returns (bool);
}
contract Test is numberComparison {
constructor() {}
function isSameNum(uint a, uint b) external pure override returns (bool) {
if (a == b) {
return true;
} else {
return false;
}
}
}
```
[Open in Remix](https://remix.ethereum.org/#url=https://docs.chain.link/samples/Tutorials/Test.sol&autoCompile=true) [What is Remix?](https://docs.chain.link/getting-started/conceptual-overview#what-is-remix)
For this example, `override` is necessary in the `Test` contract function because it overrides the base function contained in the `numberComparison` interface. The contract uses `pure` instead of `view` because the `isSameNum` function in the `Test` contract does not return a storage variable.
## [What does "deploying" mean?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#what-does-deploying-mean)
**Deploying** a smart contract is the process of pushing the code to the blockchain, at which point it resides with an onchain address. Once it's deployed, the code cannot be changed and is said to be _immutable_.
As long as the address is known, its functions can be called through an interface, on [Etherscan](https://etherscan.io/), or through a library like [web3js](https://web3js.readthedocs.io/), [web3py](https://web3py.readthedocs.io/), [ethers](https://docs.ethers.io/), and more. Contracts can also be written to interact with other contracts on the blockchain.
## [What is a LINK token?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#what-is-a-link-token)
The LINK token is an ERC677 token that inherits functionality from the [ERC20 token standard](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/) and allows token transfers to contain a data payload. It is used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators.
Any wallet that handles ERC20 tokens can store LINK tokens. The ERC677 token standard that the LINK token implements still retains all functionality of ERC20 tokens.
## [What are oracles?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#what-are-oracles)
**Oracles** provide a bridge between the real-world and onchain smart contracts by being a source of data that smart contracts can rely on, and act upon.
Oracles play a critical role in facilitating the full potential of smart contract utility. Without a reliable connection to real-world conditions, smart contracts cannot effectively serve the real-world.
## [How do smart contracts use oracles?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#how-do-smart-contracts-use-oracles)
Oracles are most popularly used with [_Data Feeds_](https://docs.chain.link/data-feeds). DeFi platforms like [AAVE](https://aave.com/) and [Synthetix](https://www.synthetix.io/) use Chainlink data feed oracles to obtain accurate real-time asset prices in their smart contracts.
Chainlink data feeds are sources of data [aggregated from many independent Chainlink node operators](https://docs.chain.link/architecture-overview/architecture-decentralized-model). Each data feed has an onchain address and functions that enable contracts to read from that address. For example, the [ETH / USD feed](https://data.chain.link/feeds/ethereum/mainnet/eth-usd).

Smart contracts also use oracles to get other capabilities onchain:
- [Generate Verifiable Random Numbers (VRF)](https://docs.chain.link/vrf): Use Chainlink VRF to consume randomness in your smart contracts.
- [Call External APIs (Any API)](https://docs.chain.link/any-api/introduction): Request & Receive data from any API using the Chainlink contract library.
- [Automate Smart Contracts using Chainlink Automation](https://docs.chain.link/chainlink-automation): Automating smart contract functions and regular contract maintenance.
## [What is Remix?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#what-is-remix)
Play
[Remix](https://remix.ethereum.org/) is a web IDE (integrated development environment) for creating, running, and debugging smart contracts in the browser. It is developed and maintained by the Ethereum foundation. Remix allows Solidity developers to write smart contracts without a development machine since everything required is included in the web interface. It allows for a simplified method of interacting with deployed contracts, without the need for a command line interface. Remix also has support for samples. This means that Remix can load code from Github.
To learn how to use Remix, see the [Deploying Your First Smart Contract](https://docs.chain.link/quickstarts/deploy-your-first-contract) guide.
[Deploy Your First Smart Contract](https://docs.chain.link/quickstarts/deploy-your-first-contract/)
## [What is MetaMask?](https://docs.chain.link/getting-started/conceptual-overview?parent=dataStreams\#what-is-metamask)
Contracts are deployed by other addresses on the network. To deploy a smart contract, you need an address. Not only that, but you need an address which you can easily use with Remix. Fortunately, [MetaMask](https://metamask.io/) is just what is needed. **MetaMask** allows anyone to create an address, store funds, and interact with Ethereum compatible blockchains from a browser extension.
## What's next
- [\> Deploy Your First Smart Contract](https://docs.chain.link/quickstarts/deploy-your-first-contract)
- [\> Consuming Data Feeds](https://docs.chain.link/data-feeds/getting-started)
# https://docs.chain.link/resources/link-token-contracts llms-full.txt
## LINK Token Contracts
[iframe](https://www.googletagmanager.com/ns.html?id=GTM-N6DQ47T)
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [LINK Token Contracts](https://docs.chain.link/resources/link-token-contracts\#overview)
* * *
LINK tokens are used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators. The smallest denomination of LINK is called a Juel, and 1,000,000,000,000,000,000 (1e18) Juels are equal to 1 LINK. This is similar to Wei, which is the [smallest denomination of ETH](https://ethereum.org/en/developers/docs/intro-to-ether/#denominations).
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 services on a given blockchain, it is necessary to use LINK tokens. You can transfer tokens across blockchains by using [Chainlink CCIP](https://docs.chain.link/ccip/tutorials/evm/transfer-tokens-from-contract) or applications such as [Transporter](https://app.transporter.io/) and [XSwap](https://xswap.link/).
## [Abstract](https://docs.chain.link/resources/link-token-contracts\#abstract)
### [Abstract Mainnet](https://docs.chain.link/resources/link-token-contracts\#abstract-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2741` |
| Address | [0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd](https://abscan.org/address/0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Abstract Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#abstract-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `11124` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia.abscan.org/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Apechain](https://docs.chain.link/resources/link-token-contracts\#apechain)
### [Apechain Mainnet](https://docs.chain.link/resources/link-token-contracts\#apechain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33139` |
| Address | [0xf575731b78981B86d34321d875A3D25a48479be6](https://apescan.io/address/0xf575731b78981B86d34321d875A3D25a48479be6 "0xf575731b78981B86d34321d875A3D25a48479be6") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Apechain Curtis Testnet](https://docs.chain.link/resources/link-token-contracts\#apechain-curtis-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33111` |
| Address | [0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E](https://explorer.curtis.apechain.com/address/0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E") |
| Name | Chainlink Token on Apechain Curtis Testnet |
| Symbol | LINK |
## [Arbitrum](https://docs.chain.link/resources/link-token-contracts\#arbitrum)
### [Arbitrum Mainnet](https://docs.chain.link/resources/link-token-contracts\#arbitrum-mainnet)
ETH is used to pay for transactions on the Arbitrum Mainnet.
You can use the [Arbitrum Bridge](https://bridge.arbitrum.io/) to transfer ETH and LINK from Ethereum Mainnet to Arbitrum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `42161` |
| Address | [0xf97f4df75117a78c1A5a0DBb814Af92458539FB4](https://explorer.arbitrum.io/address/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4 "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4") |
| Name | Chainlink Token on Arbitrum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
### [Arbitrum Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#arbitrum-sepolia-testnet)
Testnet ETH is used to pay for transactions on Arbitrum Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/arbitrum-sepolia](https://faucets.chain.link/arbitrum-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `421614` |
| Address | [0xb1D4538B4571d411F07960EF2838Ce337FE1E80E](https://sepolia.arbiscan.io/address/0xb1D4538B4571d411F07960EF2838Ce337FE1E80E "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E") |
| Name | Chainlink Token on Arbitrum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
## [Astar](https://docs.chain.link/resources/link-token-contracts\#astar)
### [Astar Mainnet](https://docs.chain.link/resources/link-token-contracts\#astar-mainnet)
ASTR is used to pay for transactions on Astar Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `592` |
| Address | [0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d](https://astar.blockscout.com/address/0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d") |
| Name | ChainLink Token on Astar Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/astar/dashboard](https://portal.astar.network/astar/dashboard) |
### [Astar Shibuya](https://docs.chain.link/resources/link-token-contracts\#astar-shibuya)
SBY is used to pay for transactions on Astar Shibuya. Testnet SBY is available at [Astar Shibuya Faucet](https://docs.astar.network/docs/build/environment/faucet/).
Testnet LINK is available at [faucets.chain.link/astar-shibuya](https://faucets.chain.link/astar-shibuya).
| Parameter | Value |
| --- | --- |
| Chain ID | `81` |
| Address | [0xe74037112db8807B3B4B3895F5790e5bc1866a29](https://shibuya.blockscout.com/address/0xe74037112db8807B3B4B3895F5790e5bc1866a29 "0xe74037112db8807B3B4B3895F5790e5bc1866a29") |
| Name | ChainLink Token on Astar Shibuya |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/shibuya-testnet/dashboard](https://portal.astar.network/shibuya-testnet/dashboard) |
## [Avalanche](https://docs.chain.link/resources/link-token-contracts\#avalanche)
### [Avalanche Mainnet](https://docs.chain.link/resources/link-token-contracts\#avalanche-mainnet)
AVAX is used to pay for transactions on Avalanche Mainnet. Use the [Avalanche Bridge](https://bridge.avax.network/) to transfer LINK from Ethereum Mainnet to Avalanche.
| Parameter | Value |
| --- | --- |
| Chain ID | `43114` |
| Address | [0x5947BB275c521040051D82396192181b413227A3](https://snowtrace.io/address/0x5947BB275c521040051D82396192181b413227A3 "0x5947BB275c521040051D82396192181b413227A3") |
| Name | Chainlink Token on Avalanche Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
### [Avalanche Fuji Testnet](https://docs.chain.link/resources/link-token-contracts\#avalanche-fuji-testnet)
Testnet AVAX is used to pay for transactions on Avalanche Fuji.
Testnet AVAX and LINK are available at [faucets.chain.link/fuji](https://faucets.chain.link/fuji). Testnet AVAX is also available at [core.app/tools/testnet-faucet](https://core.app/tools/testnet-faucet/).
| Parameter | Value |
| --- | --- |
| Chain ID | `43113` |
| Address | [0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846](https://testnet.snowtrace.io/address/0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846 "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846") |
| Name | Chainlink Token on Avalanche Fuji Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
## [BASE](https://docs.chain.link/resources/link-token-contracts\#base)
### [BASE Mainnet](https://docs.chain.link/resources/link-token-contracts\#base-mainnet)
ETH is used to pay for transactions on BASE. You can use the [BASE Bridge](https://bridge.base.org/deposit) to transfer ETH from Ethereum Mainnet to BASE Mainnet. To transfer LINK from Ethereum to Base, use [Transporter](https://app.transporter.io/) or [XSwap Bridge](https://xswap.link/bridge).
| Parameter | Value |
| --- | --- |
| Chain ID | `8453` |
| Address | [0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196](https://basescan.org/address/0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196 "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196") |
| Name | Chainlink Token on BASE Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [basescan.org](https://basescan.org/) |
### [BASE Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#base-sepolia-testnet)
Testnet ETH is used to pay for transactions on BASE Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/base-sepolia](https://faucets.chain.link/base-sepolia). Testnet ETH is also available from one of the [BASE Network Faucets](https://docs.base.org/tools/network-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `84532` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia.basescan.org/address/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on BASE Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.basescan.org](https://sepolia.basescan.org/) |
## [Berachain](https://docs.chain.link/resources/link-token-contracts\#berachain)
### [Berachain Mainnet](https://docs.chain.link/resources/link-token-contracts\#berachain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80094` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://berascan.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Berachain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Berachain Bartio Testnet](https://docs.chain.link/resources/link-token-contracts\#berachain-bartio-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80084` |
| Address | [0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271](https://bartio.beratrail.io/address/0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271 "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271") |
| Name | ChainLink Token on Berachain Bartio Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bitlayer](https://docs.chain.link/resources/link-token-contracts\#bitlayer)
### [Bitlayer Mainnet](https://docs.chain.link/resources/link-token-contracts\#bitlayer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `200901` |
| Address | [0x56B275c0Ec034a229a1deD8DB17089544bc276D9](https://www.btrscan.com/address/0x56B275c0Ec034a229a1deD8DB17089544bc276D9 "0x56B275c0Ec034a229a1deD8DB17089544bc276D9") |
| Name | Chainlink Token on Bitlayer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
### [Bitlayer Testnet](https://docs.chain.link/resources/link-token-contracts\#bitlayer-testnet)
Testnet LINK are available at [faucets.chain.link/bitlayer-testnet](https://faucets.chain.link/bitlayer-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `200810` |
| Address | [0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48](https://testnet.btrscan.com/address/0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48 "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48") |
| Name | Chainlink Token on Bitlayer Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
## [Blast](https://docs.chain.link/resources/link-token-contracts\#blast)
### [Blast Mainnet](https://docs.chain.link/resources/link-token-contracts\#blast-mainnet)
ETH is used to pay for transactions on Blast. You can use the [Blast Bridge](https://blast.io/en/bridge) to transfer ETH from Ethereum Mainnet to Blast Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `81457` |
| Address | [0x93202eC683288a9EA75BB829c6baCFb2BfeA9013](https://blastscan.io/address/0x93202eC683288a9EA75BB829c6baCFb2BfeA9013 "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013") |
| Name | Chainlink Token on Blast Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [blastscan.io](https://blastscan.io/) |
### [Blast Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#blast-sepolia-testnet)
Testnet ETH is used to pay for transactions on Blast Sepolia. Testnet ETH is available from one of the [Blast Network Faucets](https://docs.blast.io/tools/faucets). Testnet ETH and LINK are also available at [faucets.chain.link/blast-sepolia](https://faucets.chain.link/blast-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `168587773` |
| Address | [0x02c359ebf98fc8BF793F970F9B8302bb373BdF32](https://sepolia.blastscan.io/address/0x02c359ebf98fc8BF793F970F9B8302bb373BdF32 "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32") |
| Name | Chainlink Token on Blast Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.blastscan.io](https://sepolia.blastscan.io/) |
## [BNB Chain](https://docs.chain.link/resources/link-token-contracts\#bnb-chain)
### [BNB Chain Mainnet](https://docs.chain.link/resources/link-token-contracts\#bnb-chain-mainnet)
BNB is used to pay for transactions on the BNB Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `56` |
| Address | [0x404460C6A5EdE2D891e8297795264fDe62ADBB75](https://bscscan.com/token/0x404460C6A5EdE2D891e8297795264fDe62ADBB75 "0x404460C6A5EdE2D891e8297795264fDe62ADBB75") |
| Name | Chainlink Token on BNB Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
### [BNB Chain Testnet](https://docs.chain.link/resources/link-token-contracts\#bnb-chain-testnet)
Testnet BNB is used to pay for transactions on the BNB Chain testnet. Testnet BNB is available at [testnet.bnbchain.org/faucet-smart](https://testnet.bnbchain.org/faucet-smart).
Testnet Native and LINK is available at [faucets.chain.link/bnb-chain-testnet](https://faucets.chain.link/bnb-chain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `97` |
| Address | [0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06](https://testnet.bscscan.com/address/0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06 "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06") |
| Name | Chainlink Token on BNB Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
## [Bob](https://docs.chain.link/resources/link-token-contracts\#bob)
### [Bob Mainnet](https://docs.chain.link/resources/link-token-contracts\#bob-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `60808` |
| Address | [0x5aB885CDa7216b163fb6F813DEC1E1532516c833](https://explorer.gobob.xyz/address/0x5aB885CDa7216b163fb6F813DEC1E1532516c833 "0x5aB885CDa7216b163fb6F813DEC1E1532516c833") |
| Name | Chainlink Token on Bob Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
### [Bob Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#bob-sepolia-testnet)
Testnet ETH and LINK are available at [faucets.chain.link/bob-testnet](https://faucets.chain.link/bob-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `808813` |
| Address | [0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183](https://bob-sepolia.explorer.gobob.xyz/address/0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183 "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183") |
| Name | Chainlink Token on Bob Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
## [Botanix](https://docs.chain.link/resources/link-token-contracts\#botanix)
### [Botanix Testnet](https://docs.chain.link/resources/link-token-contracts\#botanix-testnet)
Testnet Native and LINK are available at [faucets.chain.link/botanix-testnet](https://faucets.chain.link/botanix-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `3636` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://testnet.botanixscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Botanix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bsquared](https://docs.chain.link/resources/link-token-contracts\#bsquared)
### [Bsquared Mainnet](https://docs.chain.link/resources/link-token-contracts\#bsquared-mainnet)
BTC is used to pay for transactions on Bsquared Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `223` |
| Address | [0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39](https://explorer.bsquared.network/address/0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39 "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39") |
| Name | Chainlink Token on Bsquared Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.bsquared.network](https://explorer.bsquared.network/) |
### [Bsquared Testnet](https://docs.chain.link/resources/link-token-contracts\#bsquared-testnet)
Testnet BTC is used to pay for transactions on Bsquared Testnet.
Testnet BTC and LINK are available at [faucets.chain.link/bsquared-testnet](https://faucet.chain.link/bsquared-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1123` |
| Address | [0x436a1907D9e6a65E6db73015F08f9C66F6B63E45](https://testnet-explorer.bsquared.network/address/0x436a1907D9e6a65E6db73015F08f9C66F6B63E45 "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45") |
| Name | Chainlink Token on Bsquared Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [testnet-explorer.bsquared.network](https://testnet-explorer.bsquared.network/) |
## [Celo](https://docs.chain.link/resources/link-token-contracts\#celo)
### [Celo Mainnet](https://docs.chain.link/resources/link-token-contracts\#celo-mainnet)
CELO is used to pay for transactions on the Celo network.
| Parameter | Value |
| --- | --- |
| Chain ID | `42220` |
| Address | [0xd07294e6E917e07dfDcee882dd1e2565085C2ae0](https://explorer.celo.org/mainnet/address/0xd07294e6E917e07dfDcee882dd1e2565085C2ae0 "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0") |
| Name | Chainlink Token on Celo Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org](https://explorer.celo.org/) |
### [Celo Alfajores Testnet](https://docs.chain.link/resources/link-token-contracts\#celo-alfajores-testnet)
Testnet CELO is used to pay for transactions on Celo Alfajores. Testnet CELO is available from the [Alfajores Token Faucet](https://faucet.celo.org/alfajores).
Testnet Native and LINK is available at [faucets.chain.link/celo-alfajores-testnet](https://faucets.chain.link/celo-alfajores-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `44787` |
| Address | [0x32E08557B14FaD8908025619797221281D439071](https://explorer.celo.org/alfajores/address/0x32E08557B14FaD8908025619797221281D439071 "0x32E08557B14FaD8908025619797221281D439071") |
| Name | Chainlink Token on Celo Alfajores Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org/alfajores](https://explorer.celo.org/alfajores/) |
## [Core](https://docs.chain.link/resources/link-token-contracts\#core)
### [Core Mainnet](https://docs.chain.link/resources/link-token-contracts\#core-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1116` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://scan.coredao.org/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Core Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Corn](https://docs.chain.link/resources/link-token-contracts\#corn)
### [Corn Mainnet](https://docs.chain.link/resources/link-token-contracts\#corn-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `21000000` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://cornscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Corn Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Corn Testnet](https://docs.chain.link/resources/link-token-contracts\#corn-testnet)
Testnet Native and LINK is available at [faucets.chain.link/corn-testnet](https://faucets.chain.link/corn-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `21000001` |
| Address | [0x996EfAb6011896Be832969D91E9bc1b3983cfdA1](https://testnet.cornscan.io/address/0x996EfAb6011896Be832969D91E9bc1b3983cfdA1 "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1") |
| Name | Chainlink Token on Corn Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos](https://docs.chain.link/resources/link-token-contracts\#cronos)
### [Cronos Mainnet](https://docs.chain.link/resources/link-token-contracts\#cronos-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `25` |
| Address | [0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85](https://explorer.cronos.org/address/0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85 "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos Testnet](https://docs.chain.link/resources/link-token-contracts\#cronos-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `338` |
| Address | [0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262](https://explorer.cronos.org/testnet/address/0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262 "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262") |
| Name | Chainlink Token on Cronos Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos zkEVM](https://docs.chain.link/resources/link-token-contracts\#cronos-zkevm)
### [Cronos zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts\#cronos-zkevm-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `388` |
| Address | [0x61170ca9fB9cF98d4c7d684e07be6D969D59667E](https://explorer.zkevm.cronos.org/address/0x61170ca9fB9cF98d4c7d684e07be6D969D59667E "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E") |
| Name | Chainlink Token on Cronos zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos zkEVM Testnet](https://docs.chain.link/resources/link-token-contracts\#cronos-zkevm-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `240` |
| Address | [0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827](https://explorer.zkevm.cronos.org/testnet/address/0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827 "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827") |
| Name | Chainlink Token on Cronos zkEVM Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ethereum](https://docs.chain.link/resources/link-token-contracts\#ethereum)
### [Ethereum Mainnet](https://docs.chain.link/resources/link-token-contracts\#ethereum-mainnet)
ETH is used to pay for transactions on Ethereum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1` |
| Address | [0x514910771AF9Ca656af840dff83E8264EcF986CA](https://etherscan.io/token/0x514910771AF9Ca656af840dff83E8264EcF986CA "0x514910771AF9Ca656af840dff83E8264EcF986CA") |
| Name | Chainlink Token on Ethereum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ethstats.dev](https://ethstats.dev/) |
### [Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#sepolia-testnet)
Testnet ETH is used to pay for transactions on Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `11155111` |
| Address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789 "0x779877A7B0D9E8603169DdbD7836e478b4624789") |
| Name | Chainlink Token on Ethereum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
### [Ethereum Holesky Testnet](https://docs.chain.link/resources/link-token-contracts\#ethereum-holesky-testnet)
Testnet ETH is used to pay for transactions on Holesky.
Testnet ETH and LINK are available at [faucets.chain.link/holesky](https://faucets.chain.link/holesky).
| Parameter | Value |
| --- | --- |
| Chain ID | `17000` |
| Address | [0x685cE6742351ae9b618F383883D6d1e0c5A31B4B](https://holesky.etherscan.io/token/0x685cE6742351ae9b618F383883D6d1e0c5A31B4B "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B") |
| Name | Chainlink Token on Ethereum Holesky Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
## [Etherlink](https://docs.chain.link/resources/link-token-contracts\#etherlink)
### [Etherlink Mainnet](https://docs.chain.link/resources/link-token-contracts\#etherlink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `42793` |
| Address | [0x8ce7618E8f8E514d13889283F58FF03B794e6CC3](https://explorer.etherlink.com/address/0x8ce7618E8f8E514d13889283F58FF03B794e6CC3 "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3") |
| Name | Chainlink Token on Etherlink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Etherlink Testnet](https://docs.chain.link/resources/link-token-contracts\#etherlink-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `128123` |
| Address | [0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950](https://testnet.explorer.etherlink.com/address/0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950 "0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950") |
| Name | Chainlink Token on Etherlink Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Fantom](https://docs.chain.link/resources/link-token-contracts\#fantom)
### [Fantom Mainnet](https://docs.chain.link/resources/link-token-contracts\#fantom-mainnet)
FTM is used to pay for transactions on Fantom Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `250` |
| Address | [0x6F43FF82CCA38001B6699a8AC47A2d0E66939407](https://ftmscan.com/address/0x6F43FF82CCA38001B6699a8AC47A2d0E66939407 "0x6F43FF82CCA38001B6699a8AC47A2d0E66939407") |
| Name | Chainlink Token on Fantom Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
### [Fantom Testnet](https://docs.chain.link/resources/link-token-contracts\#fantom-testnet)
Testnet FTM is used to pay for transactions on Fantom testnet. Testnet FTM is available at [faucet.fantom.network](https://faucet.fantom.network/).
Testnet LINK is available at [faucets.chain.link/fantom-testnet](https://faucets.chain.link/fantom-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `4002` |
| Address | [0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F](https://testnet.ftmscan.com/address/0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F "0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F") |
| Name | Chainlink Token on Fantom Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
## [Fraxtal](https://docs.chain.link/resources/link-token-contracts\#fraxtal)
### [Fraxtal Mainnet](https://docs.chain.link/resources/link-token-contracts\#fraxtal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `252` |
| Address | [0xd6A6ba37fAaC229B9665E86739ca501401f5a940](https://fraxscan.com/address/0xd6A6ba37fAaC229B9665E86739ca501401f5a940 "0xd6A6ba37fAaC229B9665E86739ca501401f5a940") |
| Name | Chainlink Token on Fraxtal Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Fraxtal Testnet](https://docs.chain.link/resources/link-token-contracts\#fraxtal-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2522` |
| Address | [0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF](https://holesky.fraxscan.com/address/0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF") |
| Name | Chainlink Token on Fraxtal Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Gnosis Chain (xDai)](https://docs.chain.link/resources/link-token-contracts\#gnosis-chain-xdai)
### [Gnosis Chain Mainnet](https://docs.chain.link/resources/link-token-contracts\#gnosis-chain-mainnet)
xDAI is used to pay for transactions on Gnosis Chain Mainnet. Use the [xDai Bridge](https://bridge.gnosischain.com/) to send DAI from Ethereum Mainnet to Gnosis Chain and convert it to xDAI. Use [OmniBridge](https://omni.gnosischain.com/bridge) to send LINK from Ethereum Mainnet to Gnosis Chain.
| Parameter | Value |
| --- | --- |
| Chain ID | `100` |
| Address | [0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2](https://gnosisscan.io/address/0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2 "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2") |
| Name | Chainlink Token on Gnosis Chain (xDai) Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
### [Gnosis Chiado Testnet](https://docs.chain.link/resources/link-token-contracts\#gnosis-chiado-testnet)
xDAI is used to pay for transactions on Gnosis Chiado testnet. Use the [Chiado faucet](https://faucet.chiadochain.net/) to get testnet xDAI.
Testnet Native and LINK is available at [faucets.chain.link/gnosis-chiado-testnet](https://faucets.chain.link/gnosis-chiado-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `10200` |
| Address | [0xDCA67FD8324990792C0bfaE95903B8A64097754F](https://gnosis-chiado.blockscout.com/address/0xDCA67FD8324990792C0bfaE95903B8A64097754F "0xDCA67FD8324990792C0bfaE95903B8A64097754F") |
| Name | Chainlink Token on Gnosis Chiado Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
## [HashKey](https://docs.chain.link/resources/link-token-contracts\#hashkey)
### [HashKey Chain Mainnet](https://docs.chain.link/resources/link-token-contracts\#hashkey-chain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `177` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://hashkey.blockscout.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on HashKey Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [HashKey Chain Testnet](https://docs.chain.link/resources/link-token-contracts\#hashkey-chain-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `133` |
| Address | [0x8418c4d7e8e17ab90232DC72150730E6c4b84F57](https://hashkeychain-testnet-explorer.alt.technology/address/0x8418c4d7e8e17ab90232DC72150730E6c4b84F57 "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57") |
| Name | Chainlink Token on HashKey Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hedera](https://docs.chain.link/resources/link-token-contracts\#hedera)
### [Hedera Mainnet](https://docs.chain.link/resources/link-token-contracts\#hedera-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98](https://hashscan.io/mainnet/contract/0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98 "0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hedera Testnet](https://docs.chain.link/resources/link-token-contracts\#hedera-testnet)
Testnet HBAR is used to pay for transactions on the Hedera testnet.
Testnet Native and LINK is available at [faucets.chain.link/hedera-testnet](https://faucets.chain.link/hedera-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6](https://hashscan.io/testnet/contract/0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6 "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6") |
| Name | Chainlink Token on Hedera Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hemi](https://docs.chain.link/resources/link-token-contracts\#hemi)
### [Hemi Mainnet](https://docs.chain.link/resources/link-token-contracts\#hemi-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `43111` |
| Address | [0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8](https://explorer.hemi.xyz/address/0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8 "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hemi Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#hemi-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `743111` |
| Address | [0x5246409a2e09134824c4E709602205B176491e57](https://testnet.explorer.hemi.xyz/address/0x5246409a2e09134824c4E709602205B176491e57 "0x5246409a2e09134824c4E709602205B176491e57") |
| Name | Chainlink Token on Hemi Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hyperliquid](https://docs.chain.link/resources/link-token-contracts\#hyperliquid)
### [Hyperliquid Mainnet](https://docs.chain.link/resources/link-token-contracts\#hyperliquid-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999` |
| Address | [0x1AC2EE68b8d038C982C1E1f73F596927dd70De59](https://app.hyperliquid.xyz/explorer/address/0x1AC2EE68b8d038C982C1E1f73F596927dd70De59 "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59") |
| Name | Chainlink Token on Hemi Mainnet Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ink](https://docs.chain.link/resources/link-token-contracts\#ink)
### [Ink Mainnet](https://docs.chain.link/resources/link-token-contracts\#ink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `57073` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.inkonchain.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Ink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Ink Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#ink-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `763373` |
| Address | [0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4](https://explorer-sepolia.inkonchain.com/address/0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4 "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4") |
| Name | Chainlink Token on Ink Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Kroma](https://docs.chain.link/resources/link-token-contracts\#kroma)
### [Kroma Mainnet](https://docs.chain.link/resources/link-token-contracts\#kroma-mainnet)
ETH is used to pay for transactions on the Kroma mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `255` |
| Address | [0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450](https://kromascan.xyz/address/0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450 "0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450") |
| Name | Chainlink Token on Kroma Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Kroma Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#kroma-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Kroma testnet.
Testnet Native and LINK are available at [faucets.chain.link/kroma-testnet](https://faucets.chain.link/kroma-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2358` |
| Address | [0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8](https://testnet.kromascan.xyz/address/0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8 "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8") |
| Name | Chainlink Token on Kroma Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Lens](https://docs.chain.link/resources/link-token-contracts\#lens)
### [Lens Mainnet](https://docs.chain.link/resources/link-token-contracts\#lens-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `232` |
| Address | [0x6e970e8d6758164798290c8db1D79a527ca6e1B2](https://explorer.lens.xyz/address/0x6e970e8d6758164798290c8db1D79a527ca6e1B2 "0x6e970e8d6758164798290c8db1D79a527ca6e1B2") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lens Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#lens-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `37111` |
| Address | [0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36](https://block-explorer.testnet.lens.dev/address/0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36 "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36") |
| Name | Chainlink Token on Lens Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Linea](https://docs.chain.link/resources/link-token-contracts\#linea)
### [Linea Mainnet](https://docs.chain.link/resources/link-token-contracts\#linea-mainnet)
ETH is used to pay for transactions on Linea Mainnet. Use the [Linea Bridge](https://bridge.linea.build/) to transfer ETH from Ethereum to Linea.
| Parameter | Value |
| --- | --- |
| Chain ID | `59144` |
| Address | [0xa18152629128738a5c081eb226335FEd4B9C95e9](https://lineascan.build/address/0xa18152629128738a5c081eb226335FEd4B9C95e9 "0xa18152629128738a5c081eb226335FEd4B9C95e9") |
| Name | Chainlink Token on Linea Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
### [Linea Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#linea-sepolia-testnet)
Testnet ETH is used to pay for transactions on Linea Sepolia. Testnet Native and LINK are available at [faucets.chain.link/linea-sepolia](https://faucets.chain.link/linea-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59141` |
| Address | [0xF64E6E064a71B45514691D397ad4204972cD6508](https://sepolia.lineascan.build/address/0xF64E6E064a71B45514691D397ad4204972cD6508 "0xF64E6E064a71B45514691D397ad4204972cD6508") |
| Name | Chainlink Token on Linea Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
## [Lisk](https://docs.chain.link/resources/link-token-contracts\#lisk)
### [Lisk Mainnet](https://docs.chain.link/resources/link-token-contracts\#lisk-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1135` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://blockscout.lisk.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lisk Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#lisk-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4202` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia-blockscout.lisk.com/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mantle](https://docs.chain.link/resources/link-token-contracts\#mantle)
### [Mantle Mainnet](https://docs.chain.link/resources/link-token-contracts\#mantle-mainnet)
MNT is used to pay for transactions on the Mantle mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5000` |
| Address | [0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043](https://mantlescan.xyz/address/0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043 "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043") |
| Name | ChainLink Token on Mantle Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mantle Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#mantle-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mantle Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/mantle-sepolia](https://faucets.chain.link/mantle-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5003` |
| Address | [0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04](https://sepolia.mantlescan.xyz/address/0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04 "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04") |
| Name | ChainLink Token on Mantle Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [MegaEth](https://docs.chain.link/resources/link-token-contracts\#megaeth)
### [MegaEth Testnet](https://docs.chain.link/resources/link-token-contracts\#megaeth-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `6342` |
| Address | [0x4d03398C2588D92B220578dAEde29814E41c8033](https://megaexplorer.xyz/address/0x4d03398C2588D92B220578dAEde29814E41c8033 "0x4d03398C2588D92B220578dAEde29814E41c8033") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Merlin](https://docs.chain.link/resources/link-token-contracts\#merlin)
### [Merlin Mainnet](https://docs.chain.link/resources/link-token-contracts\#merlin-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4200` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://scan.merlinchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Merlin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Merlin Testnet](https://docs.chain.link/resources/link-token-contracts\#merlin-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `686868` |
| Address | [0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50](https://testnet-scan.merlinchain.io//address/0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50 "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50") |
| Name | Chainlink Token on Merlin Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Metal](https://docs.chain.link/resources/link-token-contracts\#metal)
### [Metal Mainnet](https://docs.chain.link/resources/link-token-contracts\#metal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1750` |
| Address | [0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C](https://explorer.metall2.com/address/0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Metal L2 Testnet](https://docs.chain.link/resources/link-token-contracts\#metal-l2-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1740` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://testnet.explorer.metall2.com/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Metis](https://docs.chain.link/resources/link-token-contracts\#metis)
### [Metis Mainnet](https://docs.chain.link/resources/link-token-contracts\#metis-mainnet)
METIS is used to pay for transactions on Metis Mainnet. You can use the [Metis Bridge](https://bridge.metis.io/) to transfer METIS from Ethereum Mainnet to Metis Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1088` |
| Address | [0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353](https://explorer.metis.io/address/0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353 "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353") |
| Name | Chainlink Token on Metis Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.metis.io](https://explorer.metis.io/) |
### [Metis Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#metis-sepolia-testnet)
Testnet METIS is used to pay for transactions on Metis Sepolia.
Testnet METIS and LINK are available at [faucets.chain.link/metis-sepolia](https://faucets.chain.link/metis-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59902` |
| Address | [0x9870D6a0e05F867EAAe696e106741843F7fD116D](https://sepolia-explorer.metisdevops.link/address/0x9870D6a0e05F867EAAe696e106741843F7fD116D "0x9870D6a0e05F867EAAe696e106741843F7fD116D") |
| Name | Chainlink Token on Metis Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia-explorer.metisdevops.link](https://sepolia-explorer.metisdevops.link/) |
## [Mind Network](https://docs.chain.link/resources/link-token-contracts\#mind-network)
### [Mind Network Mainnet](https://docs.chain.link/resources/link-token-contracts\#mind-network-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `228` |
| Address | [0xd8A9246e84903e82CA01e42774b01A7CdD465BFa](https://explorer.mindnetwork.xyz/address/0xd8A9246e84903e82CA01e42774b01A7CdD465BFa "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mind Network Testnet](https://docs.chain.link/resources/link-token-contracts\#mind-network-testnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `192940` |
| Address | [0xE0352dEd874c3E72d922CE533E136385fBE4a9B4](https://explorer-testnet.mindnetwork.xyz/address/0xE0352dEd874c3E72d922CE533E136385fBE4a9B4 "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mint](https://docs.chain.link/resources/link-token-contracts\#mint)
### [Mint Mainnet](https://docs.chain.link/resources/link-token-contracts\#mint-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `185` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.mintchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mint Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#mint-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1687` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://sepolia-testnet-explorer.mintchain.io/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mode](https://docs.chain.link/resources/link-token-contracts\#mode)
### [Mode Mainnet](https://docs.chain.link/resources/link-token-contracts\#mode-mainnet)
ETH is used to pay for transactions on the Mode mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `34443` |
| Address | [0x183E3691EfF3524B2315D3703D94F922CbE51F54](https://explorer.mode.network/address/0x183E3691EfF3524B2315D3703D94F922CbE51F54 "0x183E3691EfF3524B2315D3703D94F922CbE51F54") |
| Name | Chainlink Token on Mode Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mode Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#mode-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mode testnet.
Testnet ETH and LINK are available at [faucets.chain.link/mode-sepolia](https://faucets.chain.link/mode-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `919` |
| Address | [0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d](https://sepolia.explorer.mode.network/address/0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d") |
| Name | Chainlink Token on Mode Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Monad](https://docs.chain.link/resources/link-token-contracts\#monad)
### [Monad Testnet](https://docs.chain.link/resources/link-token-contracts\#monad-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `10143` |
| Address | [0x6fE981Dbd557f81ff66836af0932cba535Cbc343](https://testnet.monadexplorer.com/address/0x6fE981Dbd557f81ff66836af0932cba535Cbc343 "0x6fE981Dbd557f81ff66836af0932cba535Cbc343") |
| Name | Chainlink Token on Monad Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Moonbeam](https://docs.chain.link/resources/link-token-contracts\#moonbeam)
### [Moonbeam Mainnet](https://docs.chain.link/resources/link-token-contracts\#moonbeam-mainnet)
GLMR is used to pay transaction fees on Moonbeam Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1284` |
| Address | [0x012414A392F9FA442a3109f1320c439C45518aC3](https://moonscan.io/address/0x012414A392F9FA442a3109f1320c439C45518aC3 "0x012414A392F9FA442a3109f1320c439C45518aC3") |
| Name | Chainlink Token on Moonbeam Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [Moonriver](https://docs.chain.link/resources/link-token-contracts\#moonriver)
### [Moonriver Mainnet](https://docs.chain.link/resources/link-token-contracts\#moonriver-mainnet)
MOVR is used to pay transaction fees on Moonriver Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1285` |
| Address | [0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e](https://moonriver.moonscan.io/address/0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e "0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e") |
| Name | Chainlink Token on Moonriver Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [OPBNB](https://docs.chain.link/resources/link-token-contracts\#opbnb)
### [OPBNB Mainnet](https://docs.chain.link/resources/link-token-contracts\#opbnb-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `204` |
| Address | [0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA](https://opbnbscan.com/address/0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [OPBNB Testnet](https://docs.chain.link/resources/link-token-contracts\#opbnb-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5611` |
| Address | [0x56E16E648c51609A14Eb14B99BAB771Bee797045](https://opbnb-testnet.bscscan.com/address/0x56E16E648c51609A14Eb14B99BAB771Bee797045 "0x56E16E648c51609A14Eb14B99BAB771Bee797045") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [OP](https://docs.chain.link/resources/link-token-contracts\#op)
### [OP Mainnet](https://docs.chain.link/resources/link-token-contracts\#op-mainnet)
ETH is used to pay for transactions on OP. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer ETH and LINK from Ethereum Mainnet to OP Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `10` |
| Address | [0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6](https://optimistic.etherscan.io/address/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6 "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6") |
| Name | Chainlink Token on OP Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
### [OP Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#op-sepolia-testnet)
Testnet ETH is used to pay for transactions on OP Sepolia. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer testnet ETH from Ethereum Sepolia to OP Sepolia. Testnet ETH is available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
Testnet Native and LINK is available at [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia). Testnet bridges might not transfer the correct type of LINK to OP Sepolia, so it is recommended to use only the LINK acquired from [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia) when developing applications on testnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `11155420` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia-optimism.etherscan.io/token/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on OP Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
## [Plume](https://docs.chain.link/resources/link-token-contracts\#plume)
### [Plume Mainnet](https://docs.chain.link/resources/link-token-contracts\#plume-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98866` |
| Address | [0xb549B375dA0c76f8b3877B9aDfDD28378f087A64](https://phoenix-explorer.plumenetwork.xyz/address/0xb549B375dA0c76f8b3877B9aDfDD28378f087A64 "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Plume Testnet](https://docs.chain.link/resources/link-token-contracts\#plume-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98867` |
| Address | [0xB97e3665AEAF96BDD6b300B2e0C93C662104A068](https://testnet-explorer.plumenetwork.xyz/address/0xB97e3665AEAF96BDD6b300B2e0C93C662104A068 "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
| | |
## [Polygon](https://docs.chain.link/resources/link-token-contracts\#polygon)
### [Polygon Mainnet](https://docs.chain.link/resources/link-token-contracts\#polygon-mainnet)
POL is used to pay for transactions on Polygon. You can use the [Polygon Bridge](https://wallet.polygon.technology/polygon/bridge/) to transfer tokens to Polygon Mainnet and then use [Polygon Gas Swap](https://wallet.polygon.technology/polygon/gas-swap/) to swap supported tokens to POL.
| Parameter | Value |
| --- | --- |
| Chain ID | `137` |
| Address | [0xb0897686c545045aFc77CF20eC7A532E3120E0F1](https://polygonscan.com/address/0xb0897686c545045aFc77CF20eC7A532E3120E0F1 "0xb0897686c545045aFc77CF20eC7A532E3120E0F1") |
| Name | Chainlink Token on Polygon Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
### [Polygon Amoy Testnet](https://docs.chain.link/resources/link-token-contracts\#polygon-amoy-testnet)
Testnet POL is used to pay for transactions on Polygon Amoy.
Testnet POL and LINK are available at [faucets.chain.link/polygon-amoy](https://faucets.chain.link/polygon-amoy).
| Parameter | Value |
| --- | --- |
| Chain ID | `80002` |
| Address | [0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904](https://amoy.polygonscan.com/address/0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904 "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904") |
| Name | Chainlink Token on Polygon Amoy Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
## [Polygon zkEVM](https://docs.chain.link/resources/link-token-contracts\#polygon-zkevm)
### [Polygon zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts\#polygon-zkevm-mainnet)
ETH is used to pay for transactions on Polygon zkEVM. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer ETH and LINK to Polygon zkEVM.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1101` |
| Address | [0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D](https://zkevm.polygonscan.com/address/0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D") |
| Name | Chainlink Token on Polygon zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Polygon zkEVM Cardona Testnet](https://docs.chain.link/resources/link-token-contracts\#polygon-zkevm-cardona-testnet)
Testnet ETH is used to pay for transactions on Polygon zkEVM Cardona testnet. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer testnet ETH to Polygon zkEVM testnet.
Testnet ETH and LINK are available at [faucets.chain.link/polygon-zkevm-cardona](https://faucets.chain.link/polygon-zkevm-cardona).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2442` |
| Address | [0x5576815a38A3706f37bf815b261cCc7cCA77e975](https://cardona-zkevm.polygonscan.com/address/0x5576815a38A3706f37bf815b261cCc7cCA77e975 "0x5576815a38A3706f37bf815b261cCc7cCA77e975") |
| Name | Chainlink Token on Polygon zkEVM Cardona Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ronin](https://docs.chain.link/resources/link-token-contracts\#ronin)
### [Ronin Mainnet](https://docs.chain.link/resources/link-token-contracts\#ronin-mainnet)
RON is used to pay for transactions on Ronin Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `2020` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://app.roninchain.com/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Ronin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://app.roninchain.com/) |
### [Ronin Saigon Testnet](https://docs.chain.link/resources/link-token-contracts\#ronin-saigon-testnet)
Testnet RON is used to pay for transactions on Ronin Saigon.
Testnet Native and LINK are available at [faucets.chain.link/ronin-saigon](https://faucets.chain.link/ronin-saigon).
| Parameter | Value |
| --- | --- |
| Chain ID | `2021` |
| Address | [0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15](https://saigon-app.roninchain.com/address/0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15 "0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15") |
| Name | Chainlink Token on Ronin Saigon Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://saigon-app.roninchain.com/) |
## [Rootstock](https://docs.chain.link/resources/link-token-contracts\#rootstock)
### [Rootstock Mainnet](https://docs.chain.link/resources/link-token-contracts\#rootstock-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `30` |
| Address | [0x938D84942f5D924070A6bb82F8e56a5E2b3098A4](https://explorer.rsk.co/address/0x938D84942f5D924070A6bb82F8e56a5E2b3098A4 "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4") |
| Name | Chainlink Token on Rootstock Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Rootstock Testnet](https://docs.chain.link/resources/link-token-contracts\#rootstock-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `31` |
| Address | [0x39dD98CcCC3a51b2c0007e23517488e363581264](https://explorer.testnet.rsk.co/address/0x39dD98CcCC3a51b2c0007e23517488e363581264 "0x39dD98CcCC3a51b2c0007e23517488e363581264") |
| Name | Chainlink Token on Rootstock Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Scroll](https://docs.chain.link/resources/link-token-contracts\#scroll)
### [Scroll Mainnet](https://docs.chain.link/resources/link-token-contracts\#scroll-mainnet)
ETH is used to pay for transactions on Scroll Mainnet. Use the [Scroll Bridge](https://scroll.io/bridge) to transfer ETH from Ethereum to Scroll.
| Parameter | Value |
| --- | --- |
| Chain ID | `534352` |
| Address | [0x548C6944cba02B9D1C0570102c89de64D258d3Ac](https://scrollscan.com/address/0x548C6944cba02B9D1C0570102c89de64D258d3Ac "0x548C6944cba02B9D1C0570102c89de64D258d3Ac") |
| Name | Chainlink Token on Scroll Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
### [Scroll Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#scroll-sepolia-testnet)
Testnet ETH is used to pay for transactions on Scroll testnet.
Testnet ETH and LINK are available at [faucets.chain.link/scroll-sepolia-testnet](https://faucets.chain.link/scroll-sepolia-testnet). Testnet ETH is also available from the [Scroll Sepolia Faucets](https://docs.scroll.io/en/user-guide/faucet/#scroll-sepolia-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `534351` |
| Address | [0x231d45b53C905c3d6201318156BDC725c9c3B9B1](https://sepolia-blockscout.scroll.io/address/0x231d45b53C905c3d6201318156BDC725c9c3B9B1 "0x231d45b53C905c3d6201318156BDC725c9c3B9B1") |
| Name | Chainlink Token on Scroll Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
## [Sei](https://docs.chain.link/resources/link-token-contracts\#sei)
### [Sei Network](https://docs.chain.link/resources/link-token-contracts\#sei-network)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1329` |
| Address | [?chain=pacific-1](https://seitrace.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F/?chain=pacific-1 "?chain=pacific-1") |
| Name | Chainlink Token on Sei Network |
| Symbol | LINK |
| Decimals | 18 |
### [Sei Testnet](https://docs.chain.link/resources/link-token-contracts\#sei-testnet)
Testnet Native and LINK are available at [faucets.chain.link/sei-testnet](https://faucets.chain.link/sei-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1328` |
| Address | [0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2](https://seitrace.com/token/0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2 "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2") |
| Name | Chainlink Token on Sei Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Shibarium](https://docs.chain.link/resources/link-token-contracts\#shibarium)
### [Shibarium Mainnet](https://docs.chain.link/resources/link-token-contracts\#shibarium-mainnet)
BONE is used to pay for transactions on Shibarium Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `109` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://www.shibariumscan.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Shibarium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.shibariumscan.io](https://explorer.shibariumscan.io/) |
### [Shibarium Puppynet](https://docs.chain.link/resources/link-token-contracts\#shibarium-puppynet)
Testnet BONE is used to pay for transactions on Shibarium Puppynet.
Testnet Native and LINK are available at [faucets.chain.link/shibarium-puppynet](https://faucet.chain.link/shibarium-puppynet).
| Parameter | Value |
| --- | --- |
| Chain ID | `157` |
| Address | [0x44637eEfD71A090990f89faEC7022fc74B2969aD](https://puppyscan.shib.io/address/0x44637eEfD71A090990f89faEC7022fc74B2969aD "0x44637eEfD71A090990f89faEC7022fc74B2969aD") |
| Name | Chainlink Token on Shibarium Puppynet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [puppyscan.shib.io](https://puppyscan.shib.io/) |
## [Solana](https://docs.chain.link/resources/link-token-contracts\#solana)
### [Solana Mainnet](https://docs.chain.link/resources/link-token-contracts\#solana-mainnet)
SOL is used to pay for transactions on the Solana network.
| Parameter | Value |
| --- | --- |
| Chain ID | `mainnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
| Network status | [status.solana.com/](https://status.solana.com/) |
### [Solana Devnet](https://docs.chain.link/resources/link-token-contracts\#solana-devnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `devnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L?cluster=devnet "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
## [Soneium](https://docs.chain.link/resources/link-token-contracts\#soneium)
### [Soneium Mainnet](https://docs.chain.link/resources/link-token-contracts\#soneium-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1868` |
| Address | [0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec](https://soneium.blockscout.com/address/0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec") |
| Name | Chainlink Token on Soneium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Soneium Minato Testnet](https://docs.chain.link/resources/link-token-contracts\#soneium-minato-testnet)
Testnet ETH is used to pay for transactions on the Soneium Minato testnet. Testnet Native and LINK are available at [faucets.chain.link/soneium-minato](https://faucets.chain.link/soneium-minato).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1946` |
| Address | [0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2](https://soneium-minato.blockscout.com/address/0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2 "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2") |
| Name | Chainlink Token on Soneium Minato Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Sonic](https://docs.chain.link/resources/link-token-contracts\#sonic)
### [Sonic Mainnet](https://docs.chain.link/resources/link-token-contracts\#sonic-mainnet)
S is used to pay for transactions on Sonic mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `146` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://sonicscan.org/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Sonic Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Sonic Blaze Testnet](https://docs.chain.link/resources/link-token-contracts\#sonic-blaze-testnet)
Testnet S is used to pay for transactions on Sonic Blaze testnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `57054` |
| Address | [0xd8C1eEE32341240A62eC8BC9988320bcC13c8580](https://testnet.sonicscan.org/address/0xd8C1eEE32341240A62eC8BC9988320bcC13c8580 "0xd8C1eEE32341240A62eC8BC9988320bcC13c8580") |
| Name | Chainlink Token on Sonice Blaze Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Starknet](https://docs.chain.link/resources/link-token-contracts\#starknet)
### [Starknet Mainnet](https://docs.chain.link/resources/link-token-contracts\#starknet-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `SN_MAIN` |
| Address | [0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9](https://voyager.online/contract/0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9 "0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9") |
| Name | Chainlink Token on Starknet Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Superseed](https://docs.chain.link/resources/link-token-contracts\#superseed)
### [Superseed Mainnet](https://docs.chain.link/resources/link-token-contracts\#superseed-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5330` |
| Address | [0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9](https://explorer.superseed.xyz/address/0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9 "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Superseed Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#superseed-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `53302` |
| Address | [0xA3063eE34d9B4E407DF0E153c9bE679680e3A956](https://sepolia-explorer.superseed.xyz/address/0xA3063eE34d9B4E407DF0E153c9bE679680e3A956 "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Taiko](https://docs.chain.link/resources/link-token-contracts\#taiko)
### [Taiko Alethia](https://docs.chain.link/resources/link-token-contracts\#taiko-alethia)
| Parameter | Value |
| --- | --- |
| Chain ID | `167000` |
| Address | [0x917a3964C37993e99a47C779bEb5Db1E9d13804d](https://taikoscan.io/address/0x917a3964C37993e99a47C779bEb5Db1E9d13804d "0x917a3964C37993e99a47C779bEb5Db1E9d13804d") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Taiko Hekla Testnet](https://docs.chain.link/resources/link-token-contracts\#taiko-hekla-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `167009` |
| Address | [0x01fcdEedbA59bc68b0914D92277678dAB6827e2c](https://hekla.taikoscan.io/address/0x01fcdEedbA59bc68b0914D92277678dAB6827e2c "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Treasure](https://docs.chain.link/resources/link-token-contracts\#treasure)
### [Treasure Mainnet](https://docs.chain.link/resources/link-token-contracts\#treasure-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `61166` |
| Address | [0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A](https://treasurescan.io/address/0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A "0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A") |
| Name | Chainlink Token on Treasure Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Treasure Topaz Testnet](https://docs.chain.link/resources/link-token-contracts\#treasure-topaz-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `978658` |
| Address | [0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5](https://topaz.treasurescan.io/address/0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5 "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5") |
| Name | Chainlink Token on Treasure Topaz Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Unichain](https://docs.chain.link/resources/link-token-contracts\#unichain)
### [Unichain Mainnet](https://docs.chain.link/resources/link-token-contracts\#unichain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `130` |
| Address | [0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A](https://uniscan.xyz//address/0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A") |
| Name | Chainlink Token on Unichain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Unichain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#unichain-sepolia-testnet)
Testnet Native and LINK are available at [faucets.chain.link/unichain-testnet](https://faucets.chain.link/unichain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1301` |
| Address | [0xda40816f278Cd049c137F6612822D181065EBfB4](https://sepolia.uniscan.xyz/address/0xda40816f278Cd049c137F6612822D181065EBfB4 "0xda40816f278Cd049c137F6612822D181065EBfB4") |
| Name | Chainlink Token on Unichain Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Wemix](https://docs.chain.link/resources/link-token-contracts\#wemix)
### [Wemix Mainnet](https://docs.chain.link/resources/link-token-contracts\#wemix-mainnet)
WEMIX is used to pay for transactions on the Wemix mainnet. To transfer LINK from Ethereum to Wemix, use [Transporter](https://app.transporter.io/).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1111` |
| Address | [0x80f1FcdC96B55e459BF52b998aBBE2c364935d69](https://wemixscan.com/address/0x80f1FcdC96B55e459BF52b998aBBE2c364935d69 "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69") |
| Name | Chainlink Token on Wemix Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Wemix Testnet](https://docs.chain.link/resources/link-token-contracts\#wemix-testnet)
Testnet WEMIX is used to pay for transactions on the Wemix testnet.
Testnet Native and LINK are available at [faucets.chain.link/wemix-testnet](https://faucets.chain.link/wemix-testnet). Testnet WEMIX is also available from the [WEMIX Faucet](https://wallet.test.wemix.com/faucet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1112` |
| Address | [0x3580c7A817cCD41f7e02143BFa411D4EeAE78093](https://testnet.wemixscan.com/address/0x3580c7A817cCD41f7e02143BFa411D4EeAE78093 "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093") |
| Name | Chainlink Token on Wemix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [World](https://docs.chain.link/resources/link-token-contracts\#world)
### [World Chain Mainnet](https://docs.chain.link/resources/link-token-contracts\#world-chain-mainnet)
ETH is used to pay for transactions on World Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `480` |
| Address | [0x915b648e994d5f31059B38223b9fbe98ae185473](https://worldscan.org/address/0x915b648e994d5f31059B38223b9fbe98ae185473 "0x915b648e994d5f31059B38223b9fbe98ae185473") |
| Name | Chainlink Token on World Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain/) |
### [World Chain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#world-chain-sepolia-testnet)
Testnet ETH is used to pay for transactions on World Chain Sepolia. Testnet Native and LINK are available at [faucets.chain.link/worldchain-testnet](https://faucets.chain.link/worldchain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `486` |
| Address | [0xC82Ea35634BcE95C394B6BC00626f827bB0F4801](https://sepolia.worldscan.org/address/0xC82Ea35634BcE95C394B6BC00626f827bB0F4801 "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801") |
| Name | Chainlink Token on World Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain) |
## [X Layer](https://docs.chain.link/resources/link-token-contracts\#x-layer)
### [X Layer Mainnet](https://docs.chain.link/resources/link-token-contracts\#x-layer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `196` |
| Address | [0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9](https://www.oklink.com/xlayer/address/0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9 "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9") |
| Name | Chainlink Token on X Layer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [X Layer Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#x-layer-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `195` |
| Address | [0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55](https://www.oklink.com/xlayer-test/address/0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55 "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55") |
| Name | Chainlink Token on X Layer Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Zircuit](https://docs.chain.link/resources/link-token-contracts\#zircuit)
### [Zircuit Mainnet](https://docs.chain.link/resources/link-token-contracts\#zircuit-mainnet)
ETH is used to pay for transactions on the Zircuit mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48900` |
| Address | [0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a](https://explorer.zircuit.com/address/0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a") |
| Name | Chainlink Token on Zircuit Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Zircuit Testnet](https://docs.chain.link/resources/link-token-contracts\#zircuit-testnet)
Testnet ETH is used to pay for transactions on the Zircuit testnet.
Testnet Native and LINK are available at [faucets.chain.link/zircuit-sepolia](https://faucets.chain.link/zircuit-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48899` |
| Address | [0xDEE94506570cA186BC1e3516fCf4fd719C312cCD](https://explorer.testnet.zircuit.com/address/0xDEE94506570cA186BC1e3516fCf4fd719C312cCD "0xDEE94506570cA186BC1e3516fCf4fd719C312cCD") |
| Name | Chainlink Token on Zircuit Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [ZKsync](https://docs.chain.link/resources/link-token-contracts\#zksync)
### [ZKsync Era Mainnet](https://docs.chain.link/resources/link-token-contracts\#zksync-era-mainnet)
ETH is used to pay for transactions on ZKsync Era Mainnet. Use the recommended [ZKsync Bridges](https://zksync.io/explore#bridges) to transfer ETH from Ethereum to ZKsync.
| Parameter | Value |
| --- | --- |
| Chain ID | `324` |
| Address | [0x52869bae3E091e36b0915941577F2D47d8d8B534](https://explorer.zksync.io/address/0x52869bae3E091e36b0915941577F2D47d8d8B534 "0x52869bae3E091e36b0915941577F2D47d8d8B534") |
| Name | Chainlink Token on ZKsync Era Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.zksync.io](https://explorer.zksync.io/) |
### [ZKsync Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts\#zksync-sepolia-testnet)
Testnet ETH is used to pay for transactions on ZKsync Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/zksync-sepolia](https://faucets.chain.link/zksync-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `300` |
| Address | [0x23A1aFD896c8c8876AF46aDc38521f4432658d1e](https://sepolia.explorer.zksync.io/address/0x23A1aFD896c8c8876AF46aDc38521f4432658d1e "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e") |
| Name | Chainlink Token on ZKsync Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [uptime.com/statuspage/zkSync](https://uptime.com/statuspage/zkSync) |
## [Zora](https://docs.chain.link/resources/link-token-contracts\#zora)
### [Zora Mainnet](https://docs.chain.link/resources/link-token-contracts\#zora-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `7777777` |
| Address | [0x3662B6f73c5560229D1a98aF6e59E6649D568374](https://explorer.zora.energy/address/0x3662B6f73c5560229D1a98aF6e59E6649D568374 "0x3662B6f73c5560229D1a98aF6e59E6649D568374") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Zora Testnet](https://docs.chain.link/resources/link-token-contracts\#zora-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999999999` |
| Address | [0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e](https://sepolia.explorer.zora.energy/address/0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## Get the latest Chainlink content straight to your inbox.
Email Address
[iframe](https://td.doubleclick.net/td/rul/346357746?random=1748840472867&cv=11&fst=1748840472867&fmt=3&bg=ffffff&guid=ON&async=1&gcl_ctr=1>m=45be55s2v891173849z8847174275za200zb847174275&gcd=13l3l3l3l1l1&dma=0&tag_exp=101509157~102015666~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&ptag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&u_w=1280&u_h=1024&url=https%3A%2F%2Fdocs.chain.link%2Fresources%2Flink-token-contracts&_ng=1&label=_duuCKn_k4cYEPL_k6UB&hn=www.googleadservices.com&frm=0&tiba=LINK%20Token%20Contracts%20%7C%20Chainlink%20Documentation&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=2069166540.1748840472&uaa=x86&uab=64&uafvl=Google%2520Chrome%3B137.0.7151.55%7CChromium%3B137.0.7151.55%7CNot%252FA)Brand%3B24.0.0.0&uamb=0&uam=&uap=Linux%20x86_64&uapv=6.6.72&uaw=0&ec_mode=a&fledge=1&capi=1&_tu=Cg&em=tv.1&ct_cookie_present=0)
## LINK Token Contracts
[iframe](https://www.googletagmanager.com/ns.html?id=GTM-N6DQ47T)
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [LINK Token Contracts](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#overview)
* * *
LINK tokens are used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators. The smallest denomination of LINK is called a Juel, and 1,000,000,000,000,000,000 (1e18) Juels are equal to 1 LINK. This is similar to Wei, which is the [smallest denomination of ETH](https://ethereum.org/en/developers/docs/intro-to-ether/#denominations).
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 services on a given blockchain, it is necessary to use LINK tokens. You can transfer tokens across blockchains by using [Chainlink CCIP](https://docs.chain.link/ccip/tutorials/evm/transfer-tokens-from-contract) or applications such as [Transporter](https://app.transporter.io/) and [XSwap](https://xswap.link/).
## [Abstract](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#abstract)
### [Abstract Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#abstract-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2741` |
| Address | [0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd](https://abscan.org/address/0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Abstract Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#abstract-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `11124` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia.abscan.org/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Apechain](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#apechain)
### [Apechain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#apechain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33139` |
| Address | [0xf575731b78981B86d34321d875A3D25a48479be6](https://apescan.io/address/0xf575731b78981B86d34321d875A3D25a48479be6 "0xf575731b78981B86d34321d875A3D25a48479be6") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Apechain Curtis Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#apechain-curtis-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33111` |
| Address | [0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E](https://explorer.curtis.apechain.com/address/0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E") |
| Name | Chainlink Token on Apechain Curtis Testnet |
| Symbol | LINK |
## [Arbitrum](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#arbitrum)
### [Arbitrum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#arbitrum-mainnet)
ETH is used to pay for transactions on the Arbitrum Mainnet.
You can use the [Arbitrum Bridge](https://bridge.arbitrum.io/) to transfer ETH and LINK from Ethereum Mainnet to Arbitrum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `42161` |
| Address | [0xf97f4df75117a78c1A5a0DBb814Af92458539FB4](https://explorer.arbitrum.io/address/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4 "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4") |
| Name | Chainlink Token on Arbitrum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
### [Arbitrum Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#arbitrum-sepolia-testnet)
Testnet ETH is used to pay for transactions on Arbitrum Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/arbitrum-sepolia](https://faucets.chain.link/arbitrum-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `421614` |
| Address | [0xb1D4538B4571d411F07960EF2838Ce337FE1E80E](https://sepolia.arbiscan.io/address/0xb1D4538B4571d411F07960EF2838Ce337FE1E80E "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E") |
| Name | Chainlink Token on Arbitrum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
## [Astar](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#astar)
### [Astar Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#astar-mainnet)
ASTR is used to pay for transactions on Astar Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `592` |
| Address | [0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d](https://astar.blockscout.com/address/0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d") |
| Name | ChainLink Token on Astar Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/astar/dashboard](https://portal.astar.network/astar/dashboard) |
### [Astar Shibuya](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#astar-shibuya)
SBY is used to pay for transactions on Astar Shibuya. Testnet SBY is available at [Astar Shibuya Faucet](https://docs.astar.network/docs/build/environment/faucet/).
Testnet LINK is available at [faucets.chain.link/astar-shibuya](https://faucets.chain.link/astar-shibuya).
| Parameter | Value |
| --- | --- |
| Chain ID | `81` |
| Address | [0xe74037112db8807B3B4B3895F5790e5bc1866a29](https://shibuya.blockscout.com/address/0xe74037112db8807B3B4B3895F5790e5bc1866a29 "0xe74037112db8807B3B4B3895F5790e5bc1866a29") |
| Name | ChainLink Token on Astar Shibuya |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/shibuya-testnet/dashboard](https://portal.astar.network/shibuya-testnet/dashboard) |
## [Avalanche](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#avalanche)
### [Avalanche Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#avalanche-mainnet)
AVAX is used to pay for transactions on Avalanche Mainnet. Use the [Avalanche Bridge](https://bridge.avax.network/) to transfer LINK from Ethereum Mainnet to Avalanche.
| Parameter | Value |
| --- | --- |
| Chain ID | `43114` |
| Address | [0x5947BB275c521040051D82396192181b413227A3](https://snowtrace.io/address/0x5947BB275c521040051D82396192181b413227A3 "0x5947BB275c521040051D82396192181b413227A3") |
| Name | Chainlink Token on Avalanche Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
### [Avalanche Fuji Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#avalanche-fuji-testnet)
Testnet AVAX is used to pay for transactions on Avalanche Fuji.
Testnet AVAX and LINK are available at [faucets.chain.link/fuji](https://faucets.chain.link/fuji). Testnet AVAX is also available at [core.app/tools/testnet-faucet](https://core.app/tools/testnet-faucet/).
| Parameter | Value |
| --- | --- |
| Chain ID | `43113` |
| Address | [0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846](https://testnet.snowtrace.io/address/0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846 "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846") |
| Name | Chainlink Token on Avalanche Fuji Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
## [BASE](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#base)
### [BASE Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#base-mainnet)
ETH is used to pay for transactions on BASE. You can use the [BASE Bridge](https://bridge.base.org/deposit) to transfer ETH from Ethereum Mainnet to BASE Mainnet. To transfer LINK from Ethereum to Base, use [Transporter](https://app.transporter.io/) or [XSwap Bridge](https://xswap.link/bridge).
| Parameter | Value |
| --- | --- |
| Chain ID | `8453` |
| Address | [0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196](https://basescan.org/address/0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196 "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196") |
| Name | Chainlink Token on BASE Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [basescan.org](https://basescan.org/) |
### [BASE Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#base-sepolia-testnet)
Testnet ETH is used to pay for transactions on BASE Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/base-sepolia](https://faucets.chain.link/base-sepolia). Testnet ETH is also available from one of the [BASE Network Faucets](https://docs.base.org/tools/network-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `84532` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia.basescan.org/address/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on BASE Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.basescan.org](https://sepolia.basescan.org/) |
## [Berachain](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#berachain)
### [Berachain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#berachain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80094` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://berascan.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Berachain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Berachain Bartio Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#berachain-bartio-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80084` |
| Address | [0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271](https://bartio.beratrail.io/address/0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271 "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271") |
| Name | ChainLink Token on Berachain Bartio Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bitlayer](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bitlayer)
### [Bitlayer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bitlayer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `200901` |
| Address | [0x56B275c0Ec034a229a1deD8DB17089544bc276D9](https://www.btrscan.com/address/0x56B275c0Ec034a229a1deD8DB17089544bc276D9 "0x56B275c0Ec034a229a1deD8DB17089544bc276D9") |
| Name | Chainlink Token on Bitlayer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
### [Bitlayer Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bitlayer-testnet)
Testnet LINK are available at [faucets.chain.link/bitlayer-testnet](https://faucets.chain.link/bitlayer-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `200810` |
| Address | [0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48](https://testnet.btrscan.com/address/0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48 "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48") |
| Name | Chainlink Token on Bitlayer Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
## [Blast](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#blast)
### [Blast Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#blast-mainnet)
ETH is used to pay for transactions on Blast. You can use the [Blast Bridge](https://blast.io/en/bridge) to transfer ETH from Ethereum Mainnet to Blast Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `81457` |
| Address | [0x93202eC683288a9EA75BB829c6baCFb2BfeA9013](https://blastscan.io/address/0x93202eC683288a9EA75BB829c6baCFb2BfeA9013 "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013") |
| Name | Chainlink Token on Blast Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [blastscan.io](https://blastscan.io/) |
### [Blast Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#blast-sepolia-testnet)
Testnet ETH is used to pay for transactions on Blast Sepolia. Testnet ETH is available from one of the [Blast Network Faucets](https://docs.blast.io/tools/faucets). Testnet ETH and LINK are also available at [faucets.chain.link/blast-sepolia](https://faucets.chain.link/blast-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `168587773` |
| Address | [0x02c359ebf98fc8BF793F970F9B8302bb373BdF32](https://sepolia.blastscan.io/address/0x02c359ebf98fc8BF793F970F9B8302bb373BdF32 "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32") |
| Name | Chainlink Token on Blast Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.blastscan.io](https://sepolia.blastscan.io/) |
## [BNB Chain](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bnb-chain)
### [BNB Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bnb-chain-mainnet)
BNB is used to pay for transactions on the BNB Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `56` |
| Address | [0x404460C6A5EdE2D891e8297795264fDe62ADBB75](https://bscscan.com/token/0x404460C6A5EdE2D891e8297795264fDe62ADBB75 "0x404460C6A5EdE2D891e8297795264fDe62ADBB75") |
| Name | Chainlink Token on BNB Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
### [BNB Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bnb-chain-testnet)
Testnet BNB is used to pay for transactions on the BNB Chain testnet. Testnet BNB is available at [testnet.bnbchain.org/faucet-smart](https://testnet.bnbchain.org/faucet-smart).
Testnet Native and LINK is available at [faucets.chain.link/bnb-chain-testnet](https://faucets.chain.link/bnb-chain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `97` |
| Address | [0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06](https://testnet.bscscan.com/address/0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06 "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06") |
| Name | Chainlink Token on BNB Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
## [Bob](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bob)
### [Bob Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bob-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `60808` |
| Address | [0x5aB885CDa7216b163fb6F813DEC1E1532516c833](https://explorer.gobob.xyz/address/0x5aB885CDa7216b163fb6F813DEC1E1532516c833 "0x5aB885CDa7216b163fb6F813DEC1E1532516c833") |
| Name | Chainlink Token on Bob Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
### [Bob Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bob-sepolia-testnet)
Testnet ETH and LINK are available at [faucets.chain.link/bob-testnet](https://faucets.chain.link/bob-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `808813` |
| Address | [0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183](https://bob-sepolia.explorer.gobob.xyz/address/0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183 "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183") |
| Name | Chainlink Token on Bob Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
## [Botanix](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#botanix)
### [Botanix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#botanix-testnet)
Testnet Native and LINK are available at [faucets.chain.link/botanix-testnet](https://faucets.chain.link/botanix-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `3636` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://testnet.botanixscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Botanix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bsquared](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bsquared)
### [Bsquared Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bsquared-mainnet)
BTC is used to pay for transactions on Bsquared Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `223` |
| Address | [0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39](https://explorer.bsquared.network/address/0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39 "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39") |
| Name | Chainlink Token on Bsquared Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.bsquared.network](https://explorer.bsquared.network/) |
### [Bsquared Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#bsquared-testnet)
Testnet BTC is used to pay for transactions on Bsquared Testnet.
Testnet BTC and LINK are available at [faucets.chain.link/bsquared-testnet](https://faucet.chain.link/bsquared-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1123` |
| Address | [0x436a1907D9e6a65E6db73015F08f9C66F6B63E45](https://testnet-explorer.bsquared.network/address/0x436a1907D9e6a65E6db73015F08f9C66F6B63E45 "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45") |
| Name | Chainlink Token on Bsquared Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [testnet-explorer.bsquared.network](https://testnet-explorer.bsquared.network/) |
## [Celo](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#celo)
### [Celo Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#celo-mainnet)
CELO is used to pay for transactions on the Celo network.
| Parameter | Value |
| --- | --- |
| Chain ID | `42220` |
| Address | [0xd07294e6E917e07dfDcee882dd1e2565085C2ae0](https://explorer.celo.org/mainnet/address/0xd07294e6E917e07dfDcee882dd1e2565085C2ae0 "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0") |
| Name | Chainlink Token on Celo Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org](https://explorer.celo.org/) |
### [Celo Alfajores Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#celo-alfajores-testnet)
Testnet CELO is used to pay for transactions on Celo Alfajores. Testnet CELO is available from the [Alfajores Token Faucet](https://faucet.celo.org/alfajores).
Testnet Native and LINK is available at [faucets.chain.link/celo-alfajores-testnet](https://faucets.chain.link/celo-alfajores-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `44787` |
| Address | [0x32E08557B14FaD8908025619797221281D439071](https://explorer.celo.org/alfajores/address/0x32E08557B14FaD8908025619797221281D439071 "0x32E08557B14FaD8908025619797221281D439071") |
| Name | Chainlink Token on Celo Alfajores Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org/alfajores](https://explorer.celo.org/alfajores/) |
## [Core](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#core)
### [Core Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#core-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1116` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://scan.coredao.org/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Core Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Corn](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#corn)
### [Corn Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#corn-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `21000000` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://cornscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Corn Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Corn Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#corn-testnet)
Testnet Native and LINK is available at [faucets.chain.link/corn-testnet](https://faucets.chain.link/corn-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `21000001` |
| Address | [0x996EfAb6011896Be832969D91E9bc1b3983cfdA1](https://testnet.cornscan.io/address/0x996EfAb6011896Be832969D91E9bc1b3983cfdA1 "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1") |
| Name | Chainlink Token on Corn Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#cronos)
### [Cronos Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#cronos-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `25` |
| Address | [0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85](https://explorer.cronos.org/address/0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85 "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#cronos-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `338` |
| Address | [0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262](https://explorer.cronos.org/testnet/address/0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262 "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262") |
| Name | Chainlink Token on Cronos Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#cronos-zkevm)
### [Cronos zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#cronos-zkevm-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `388` |
| Address | [0x61170ca9fB9cF98d4c7d684e07be6D969D59667E](https://explorer.zkevm.cronos.org/address/0x61170ca9fB9cF98d4c7d684e07be6D969D59667E "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E") |
| Name | Chainlink Token on Cronos zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos zkEVM Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#cronos-zkevm-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `240` |
| Address | [0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827](https://explorer.zkevm.cronos.org/testnet/address/0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827 "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827") |
| Name | Chainlink Token on Cronos zkEVM Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ethereum](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ethereum)
### [Ethereum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ethereum-mainnet)
ETH is used to pay for transactions on Ethereum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1` |
| Address | [0x514910771AF9Ca656af840dff83E8264EcF986CA](https://etherscan.io/token/0x514910771AF9Ca656af840dff83E8264EcF986CA "0x514910771AF9Ca656af840dff83E8264EcF986CA") |
| Name | Chainlink Token on Ethereum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ethstats.dev](https://ethstats.dev/) |
### [Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#sepolia-testnet)
Testnet ETH is used to pay for transactions on Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `11155111` |
| Address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789 "0x779877A7B0D9E8603169DdbD7836e478b4624789") |
| Name | Chainlink Token on Ethereum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
### [Ethereum Holesky Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ethereum-holesky-testnet)
Testnet ETH is used to pay for transactions on Holesky.
Testnet ETH and LINK are available at [faucets.chain.link/holesky](https://faucets.chain.link/holesky).
| Parameter | Value |
| --- | --- |
| Chain ID | `17000` |
| Address | [0x685cE6742351ae9b618F383883D6d1e0c5A31B4B](https://holesky.etherscan.io/token/0x685cE6742351ae9b618F383883D6d1e0c5A31B4B "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B") |
| Name | Chainlink Token on Ethereum Holesky Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
## [Etherlink](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#etherlink)
### [Etherlink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#etherlink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `42793` |
| Address | [0x8ce7618E8f8E514d13889283F58FF03B794e6CC3](https://explorer.etherlink.com/address/0x8ce7618E8f8E514d13889283F58FF03B794e6CC3 "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3") |
| Name | Chainlink Token on Etherlink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Etherlink Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#etherlink-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `128123` |
| Address | [0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950](https://testnet.explorer.etherlink.com/address/0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950 "0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950") |
| Name | Chainlink Token on Etherlink Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Fantom](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#fantom)
### [Fantom Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#fantom-mainnet)
FTM is used to pay for transactions on Fantom Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `250` |
| Address | [0x6F43FF82CCA38001B6699a8AC47A2d0E66939407](https://ftmscan.com/address/0x6F43FF82CCA38001B6699a8AC47A2d0E66939407 "0x6F43FF82CCA38001B6699a8AC47A2d0E66939407") |
| Name | Chainlink Token on Fantom Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
### [Fantom Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#fantom-testnet)
Testnet FTM is used to pay for transactions on Fantom testnet. Testnet FTM is available at [faucet.fantom.network](https://faucet.fantom.network/).
Testnet LINK is available at [faucets.chain.link/fantom-testnet](https://faucets.chain.link/fantom-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `4002` |
| Address | [0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F](https://testnet.ftmscan.com/address/0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F "0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F") |
| Name | Chainlink Token on Fantom Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
## [Fraxtal](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#fraxtal)
### [Fraxtal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#fraxtal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `252` |
| Address | [0xd6A6ba37fAaC229B9665E86739ca501401f5a940](https://fraxscan.com/address/0xd6A6ba37fAaC229B9665E86739ca501401f5a940 "0xd6A6ba37fAaC229B9665E86739ca501401f5a940") |
| Name | Chainlink Token on Fraxtal Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Fraxtal Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#fraxtal-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2522` |
| Address | [0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF](https://holesky.fraxscan.com/address/0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF") |
| Name | Chainlink Token on Fraxtal Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Gnosis Chain (xDai)](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#gnosis-chain-xdai)
### [Gnosis Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#gnosis-chain-mainnet)
xDAI is used to pay for transactions on Gnosis Chain Mainnet. Use the [xDai Bridge](https://bridge.gnosischain.com/) to send DAI from Ethereum Mainnet to Gnosis Chain and convert it to xDAI. Use [OmniBridge](https://omni.gnosischain.com/bridge) to send LINK from Ethereum Mainnet to Gnosis Chain.
| Parameter | Value |
| --- | --- |
| Chain ID | `100` |
| Address | [0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2](https://gnosisscan.io/address/0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2 "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2") |
| Name | Chainlink Token on Gnosis Chain (xDai) Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
### [Gnosis Chiado Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#gnosis-chiado-testnet)
xDAI is used to pay for transactions on Gnosis Chiado testnet. Use the [Chiado faucet](https://faucet.chiadochain.net/) to get testnet xDAI.
Testnet Native and LINK is available at [faucets.chain.link/gnosis-chiado-testnet](https://faucets.chain.link/gnosis-chiado-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `10200` |
| Address | [0xDCA67FD8324990792C0bfaE95903B8A64097754F](https://gnosis-chiado.blockscout.com/address/0xDCA67FD8324990792C0bfaE95903B8A64097754F "0xDCA67FD8324990792C0bfaE95903B8A64097754F") |
| Name | Chainlink Token on Gnosis Chiado Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
## [HashKey](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hashkey)
### [HashKey Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hashkey-chain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `177` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://hashkey.blockscout.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on HashKey Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [HashKey Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hashkey-chain-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `133` |
| Address | [0x8418c4d7e8e17ab90232DC72150730E6c4b84F57](https://hashkeychain-testnet-explorer.alt.technology/address/0x8418c4d7e8e17ab90232DC72150730E6c4b84F57 "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57") |
| Name | Chainlink Token on HashKey Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hedera](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hedera)
### [Hedera Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hedera-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98](https://hashscan.io/mainnet/contract/0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98 "0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hedera Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hedera-testnet)
Testnet HBAR is used to pay for transactions on the Hedera testnet.
Testnet Native and LINK is available at [faucets.chain.link/hedera-testnet](https://faucets.chain.link/hedera-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6](https://hashscan.io/testnet/contract/0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6 "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6") |
| Name | Chainlink Token on Hedera Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hemi](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hemi)
### [Hemi Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hemi-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `43111` |
| Address | [0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8](https://explorer.hemi.xyz/address/0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8 "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hemi Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hemi-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `743111` |
| Address | [0x5246409a2e09134824c4E709602205B176491e57](https://testnet.explorer.hemi.xyz/address/0x5246409a2e09134824c4E709602205B176491e57 "0x5246409a2e09134824c4E709602205B176491e57") |
| Name | Chainlink Token on Hemi Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hyperliquid](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hyperliquid)
### [Hyperliquid Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#hyperliquid-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999` |
| Address | [0x1AC2EE68b8d038C982C1E1f73F596927dd70De59](https://app.hyperliquid.xyz/explorer/address/0x1AC2EE68b8d038C982C1E1f73F596927dd70De59 "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59") |
| Name | Chainlink Token on Hemi Mainnet Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ink](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ink)
### [Ink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `57073` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.inkonchain.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Ink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Ink Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ink-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `763373` |
| Address | [0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4](https://explorer-sepolia.inkonchain.com/address/0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4 "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4") |
| Name | Chainlink Token on Ink Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Kroma](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#kroma)
### [Kroma Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#kroma-mainnet)
ETH is used to pay for transactions on the Kroma mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `255` |
| Address | [0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450](https://kromascan.xyz/address/0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450 "0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450") |
| Name | Chainlink Token on Kroma Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Kroma Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#kroma-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Kroma testnet.
Testnet Native and LINK are available at [faucets.chain.link/kroma-testnet](https://faucets.chain.link/kroma-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2358` |
| Address | [0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8](https://testnet.kromascan.xyz/address/0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8 "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8") |
| Name | Chainlink Token on Kroma Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Lens](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#lens)
### [Lens Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#lens-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `232` |
| Address | [0x6e970e8d6758164798290c8db1D79a527ca6e1B2](https://explorer.lens.xyz/address/0x6e970e8d6758164798290c8db1D79a527ca6e1B2 "0x6e970e8d6758164798290c8db1D79a527ca6e1B2") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lens Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#lens-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `37111` |
| Address | [0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36](https://block-explorer.testnet.lens.dev/address/0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36 "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36") |
| Name | Chainlink Token on Lens Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Linea](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#linea)
### [Linea Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#linea-mainnet)
ETH is used to pay for transactions on Linea Mainnet. Use the [Linea Bridge](https://bridge.linea.build/) to transfer ETH from Ethereum to Linea.
| Parameter | Value |
| --- | --- |
| Chain ID | `59144` |
| Address | [0xa18152629128738a5c081eb226335FEd4B9C95e9](https://lineascan.build/address/0xa18152629128738a5c081eb226335FEd4B9C95e9 "0xa18152629128738a5c081eb226335FEd4B9C95e9") |
| Name | Chainlink Token on Linea Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
### [Linea Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#linea-sepolia-testnet)
Testnet ETH is used to pay for transactions on Linea Sepolia. Testnet Native and LINK are available at [faucets.chain.link/linea-sepolia](https://faucets.chain.link/linea-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59141` |
| Address | [0xF64E6E064a71B45514691D397ad4204972cD6508](https://sepolia.lineascan.build/address/0xF64E6E064a71B45514691D397ad4204972cD6508 "0xF64E6E064a71B45514691D397ad4204972cD6508") |
| Name | Chainlink Token on Linea Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
## [Lisk](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#lisk)
### [Lisk Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#lisk-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1135` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://blockscout.lisk.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lisk Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#lisk-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4202` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia-blockscout.lisk.com/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mantle](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mantle)
### [Mantle Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mantle-mainnet)
MNT is used to pay for transactions on the Mantle mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5000` |
| Address | [0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043](https://mantlescan.xyz/address/0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043 "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043") |
| Name | ChainLink Token on Mantle Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mantle Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mantle-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mantle Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/mantle-sepolia](https://faucets.chain.link/mantle-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5003` |
| Address | [0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04](https://sepolia.mantlescan.xyz/address/0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04 "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04") |
| Name | ChainLink Token on Mantle Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [MegaEth](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#megaeth)
### [MegaEth Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#megaeth-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `6342` |
| Address | [0x4d03398C2588D92B220578dAEde29814E41c8033](https://megaexplorer.xyz/address/0x4d03398C2588D92B220578dAEde29814E41c8033 "0x4d03398C2588D92B220578dAEde29814E41c8033") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Merlin](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#merlin)
### [Merlin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#merlin-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4200` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://scan.merlinchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Merlin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Merlin Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#merlin-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `686868` |
| Address | [0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50](https://testnet-scan.merlinchain.io//address/0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50 "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50") |
| Name | Chainlink Token on Merlin Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Metal](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#metal)
### [Metal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#metal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1750` |
| Address | [0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C](https://explorer.metall2.com/address/0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Metal L2 Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#metal-l2-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1740` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://testnet.explorer.metall2.com/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Metis](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#metis)
### [Metis Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#metis-mainnet)
METIS is used to pay for transactions on Metis Mainnet. You can use the [Metis Bridge](https://bridge.metis.io/) to transfer METIS from Ethereum Mainnet to Metis Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1088` |
| Address | [0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353](https://explorer.metis.io/address/0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353 "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353") |
| Name | Chainlink Token on Metis Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.metis.io](https://explorer.metis.io/) |
### [Metis Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#metis-sepolia-testnet)
Testnet METIS is used to pay for transactions on Metis Sepolia.
Testnet METIS and LINK are available at [faucets.chain.link/metis-sepolia](https://faucets.chain.link/metis-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59902` |
| Address | [0x9870D6a0e05F867EAAe696e106741843F7fD116D](https://sepolia-explorer.metisdevops.link/address/0x9870D6a0e05F867EAAe696e106741843F7fD116D "0x9870D6a0e05F867EAAe696e106741843F7fD116D") |
| Name | Chainlink Token on Metis Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia-explorer.metisdevops.link](https://sepolia-explorer.metisdevops.link/) |
## [Mind Network](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mind-network)
### [Mind Network Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mind-network-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `228` |
| Address | [0xd8A9246e84903e82CA01e42774b01A7CdD465BFa](https://explorer.mindnetwork.xyz/address/0xd8A9246e84903e82CA01e42774b01A7CdD465BFa "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mind Network Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mind-network-testnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `192940` |
| Address | [0xE0352dEd874c3E72d922CE533E136385fBE4a9B4](https://explorer-testnet.mindnetwork.xyz/address/0xE0352dEd874c3E72d922CE533E136385fBE4a9B4 "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mint](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mint)
### [Mint Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mint-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `185` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.mintchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mint Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mint-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1687` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://sepolia-testnet-explorer.mintchain.io/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mode](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mode)
### [Mode Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mode-mainnet)
ETH is used to pay for transactions on the Mode mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `34443` |
| Address | [0x183E3691EfF3524B2315D3703D94F922CbE51F54](https://explorer.mode.network/address/0x183E3691EfF3524B2315D3703D94F922CbE51F54 "0x183E3691EfF3524B2315D3703D94F922CbE51F54") |
| Name | Chainlink Token on Mode Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mode Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#mode-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mode testnet.
Testnet ETH and LINK are available at [faucets.chain.link/mode-sepolia](https://faucets.chain.link/mode-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `919` |
| Address | [0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d](https://sepolia.explorer.mode.network/address/0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d") |
| Name | Chainlink Token on Mode Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Monad](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#monad)
### [Monad Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#monad-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `10143` |
| Address | [0x6fE981Dbd557f81ff66836af0932cba535Cbc343](https://testnet.monadexplorer.com/address/0x6fE981Dbd557f81ff66836af0932cba535Cbc343 "0x6fE981Dbd557f81ff66836af0932cba535Cbc343") |
| Name | Chainlink Token on Monad Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Moonbeam](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#moonbeam)
### [Moonbeam Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#moonbeam-mainnet)
GLMR is used to pay transaction fees on Moonbeam Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1284` |
| Address | [0x012414A392F9FA442a3109f1320c439C45518aC3](https://moonscan.io/address/0x012414A392F9FA442a3109f1320c439C45518aC3 "0x012414A392F9FA442a3109f1320c439C45518aC3") |
| Name | Chainlink Token on Moonbeam Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [Moonriver](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#moonriver)
### [Moonriver Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#moonriver-mainnet)
MOVR is used to pay transaction fees on Moonriver Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1285` |
| Address | [0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e](https://moonriver.moonscan.io/address/0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e "0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e") |
| Name | Chainlink Token on Moonriver Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [OPBNB](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#opbnb)
### [OPBNB Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#opbnb-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `204` |
| Address | [0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA](https://opbnbscan.com/address/0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [OPBNB Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#opbnb-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5611` |
| Address | [0x56E16E648c51609A14Eb14B99BAB771Bee797045](https://opbnb-testnet.bscscan.com/address/0x56E16E648c51609A14Eb14B99BAB771Bee797045 "0x56E16E648c51609A14Eb14B99BAB771Bee797045") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [OP](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#op)
### [OP Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#op-mainnet)
ETH is used to pay for transactions on OP. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer ETH and LINK from Ethereum Mainnet to OP Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `10` |
| Address | [0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6](https://optimistic.etherscan.io/address/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6 "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6") |
| Name | Chainlink Token on OP Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
### [OP Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#op-sepolia-testnet)
Testnet ETH is used to pay for transactions on OP Sepolia. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer testnet ETH from Ethereum Sepolia to OP Sepolia. Testnet ETH is available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
Testnet Native and LINK is available at [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia). Testnet bridges might not transfer the correct type of LINK to OP Sepolia, so it is recommended to use only the LINK acquired from [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia) when developing applications on testnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `11155420` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia-optimism.etherscan.io/token/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on OP Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
## [Plume](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#plume)
### [Plume Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#plume-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98866` |
| Address | [0xb549B375dA0c76f8b3877B9aDfDD28378f087A64](https://phoenix-explorer.plumenetwork.xyz/address/0xb549B375dA0c76f8b3877B9aDfDD28378f087A64 "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Plume Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#plume-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98867` |
| Address | [0xB97e3665AEAF96BDD6b300B2e0C93C662104A068](https://testnet-explorer.plumenetwork.xyz/address/0xB97e3665AEAF96BDD6b300B2e0C93C662104A068 "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
| | |
## [Polygon](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#polygon)
### [Polygon Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#polygon-mainnet)
POL is used to pay for transactions on Polygon. You can use the [Polygon Bridge](https://wallet.polygon.technology/polygon/bridge/) to transfer tokens to Polygon Mainnet and then use [Polygon Gas Swap](https://wallet.polygon.technology/polygon/gas-swap/) to swap supported tokens to POL.
| Parameter | Value |
| --- | --- |
| Chain ID | `137` |
| Address | [0xb0897686c545045aFc77CF20eC7A532E3120E0F1](https://polygonscan.com/address/0xb0897686c545045aFc77CF20eC7A532E3120E0F1 "0xb0897686c545045aFc77CF20eC7A532E3120E0F1") |
| Name | Chainlink Token on Polygon Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
### [Polygon Amoy Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#polygon-amoy-testnet)
Testnet POL is used to pay for transactions on Polygon Amoy.
Testnet POL and LINK are available at [faucets.chain.link/polygon-amoy](https://faucets.chain.link/polygon-amoy).
| Parameter | Value |
| --- | --- |
| Chain ID | `80002` |
| Address | [0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904](https://amoy.polygonscan.com/address/0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904 "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904") |
| Name | Chainlink Token on Polygon Amoy Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
## [Polygon zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#polygon-zkevm)
### [Polygon zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#polygon-zkevm-mainnet)
ETH is used to pay for transactions on Polygon zkEVM. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer ETH and LINK to Polygon zkEVM.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1101` |
| Address | [0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D](https://zkevm.polygonscan.com/address/0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D") |
| Name | Chainlink Token on Polygon zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Polygon zkEVM Cardona Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#polygon-zkevm-cardona-testnet)
Testnet ETH is used to pay for transactions on Polygon zkEVM Cardona testnet. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer testnet ETH to Polygon zkEVM testnet.
Testnet ETH and LINK are available at [faucets.chain.link/polygon-zkevm-cardona](https://faucets.chain.link/polygon-zkevm-cardona).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2442` |
| Address | [0x5576815a38A3706f37bf815b261cCc7cCA77e975](https://cardona-zkevm.polygonscan.com/address/0x5576815a38A3706f37bf815b261cCc7cCA77e975 "0x5576815a38A3706f37bf815b261cCc7cCA77e975") |
| Name | Chainlink Token on Polygon zkEVM Cardona Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ronin](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ronin)
### [Ronin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ronin-mainnet)
RON is used to pay for transactions on Ronin Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `2020` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://app.roninchain.com/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Ronin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://app.roninchain.com/) |
### [Ronin Saigon Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#ronin-saigon-testnet)
Testnet RON is used to pay for transactions on Ronin Saigon.
Testnet Native and LINK are available at [faucets.chain.link/ronin-saigon](https://faucets.chain.link/ronin-saigon).
| Parameter | Value |
| --- | --- |
| Chain ID | `2021` |
| Address | [0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15](https://saigon-app.roninchain.com/address/0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15 "0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15") |
| Name | Chainlink Token on Ronin Saigon Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://saigon-app.roninchain.com/) |
## [Rootstock](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#rootstock)
### [Rootstock Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#rootstock-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `30` |
| Address | [0x938D84942f5D924070A6bb82F8e56a5E2b3098A4](https://explorer.rsk.co/address/0x938D84942f5D924070A6bb82F8e56a5E2b3098A4 "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4") |
| Name | Chainlink Token on Rootstock Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Rootstock Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#rootstock-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `31` |
| Address | [0x39dD98CcCC3a51b2c0007e23517488e363581264](https://explorer.testnet.rsk.co/address/0x39dD98CcCC3a51b2c0007e23517488e363581264 "0x39dD98CcCC3a51b2c0007e23517488e363581264") |
| Name | Chainlink Token on Rootstock Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Scroll](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#scroll)
### [Scroll Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#scroll-mainnet)
ETH is used to pay for transactions on Scroll Mainnet. Use the [Scroll Bridge](https://scroll.io/bridge) to transfer ETH from Ethereum to Scroll.
| Parameter | Value |
| --- | --- |
| Chain ID | `534352` |
| Address | [0x548C6944cba02B9D1C0570102c89de64D258d3Ac](https://scrollscan.com/address/0x548C6944cba02B9D1C0570102c89de64D258d3Ac "0x548C6944cba02B9D1C0570102c89de64D258d3Ac") |
| Name | Chainlink Token on Scroll Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
### [Scroll Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#scroll-sepolia-testnet)
Testnet ETH is used to pay for transactions on Scroll testnet.
Testnet ETH and LINK are available at [faucets.chain.link/scroll-sepolia-testnet](https://faucets.chain.link/scroll-sepolia-testnet). Testnet ETH is also available from the [Scroll Sepolia Faucets](https://docs.scroll.io/en/user-guide/faucet/#scroll-sepolia-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `534351` |
| Address | [0x231d45b53C905c3d6201318156BDC725c9c3B9B1](https://sepolia-blockscout.scroll.io/address/0x231d45b53C905c3d6201318156BDC725c9c3B9B1 "0x231d45b53C905c3d6201318156BDC725c9c3B9B1") |
| Name | Chainlink Token on Scroll Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
## [Sei](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#sei)
### [Sei Network](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#sei-network)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1329` |
| Address | [?chain=pacific-1](https://seitrace.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F/?chain=pacific-1 "?chain=pacific-1") |
| Name | Chainlink Token on Sei Network |
| Symbol | LINK |
| Decimals | 18 |
### [Sei Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#sei-testnet)
Testnet Native and LINK are available at [faucets.chain.link/sei-testnet](https://faucets.chain.link/sei-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1328` |
| Address | [0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2](https://seitrace.com/token/0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2 "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2") |
| Name | Chainlink Token on Sei Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Shibarium](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#shibarium)
### [Shibarium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#shibarium-mainnet)
BONE is used to pay for transactions on Shibarium Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `109` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://www.shibariumscan.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Shibarium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.shibariumscan.io](https://explorer.shibariumscan.io/) |
### [Shibarium Puppynet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#shibarium-puppynet)
Testnet BONE is used to pay for transactions on Shibarium Puppynet.
Testnet Native and LINK are available at [faucets.chain.link/shibarium-puppynet](https://faucet.chain.link/shibarium-puppynet).
| Parameter | Value |
| --- | --- |
| Chain ID | `157` |
| Address | [0x44637eEfD71A090990f89faEC7022fc74B2969aD](https://puppyscan.shib.io/address/0x44637eEfD71A090990f89faEC7022fc74B2969aD "0x44637eEfD71A090990f89faEC7022fc74B2969aD") |
| Name | Chainlink Token on Shibarium Puppynet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [puppyscan.shib.io](https://puppyscan.shib.io/) |
## [Solana](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#solana)
### [Solana Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#solana-mainnet)
SOL is used to pay for transactions on the Solana network.
| Parameter | Value |
| --- | --- |
| Chain ID | `mainnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
| Network status | [status.solana.com/](https://status.solana.com/) |
### [Solana Devnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#solana-devnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `devnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L?cluster=devnet "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
## [Soneium](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#soneium)
### [Soneium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#soneium-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1868` |
| Address | [0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec](https://soneium.blockscout.com/address/0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec") |
| Name | Chainlink Token on Soneium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Soneium Minato Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#soneium-minato-testnet)
Testnet ETH is used to pay for transactions on the Soneium Minato testnet. Testnet Native and LINK are available at [faucets.chain.link/soneium-minato](https://faucets.chain.link/soneium-minato).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1946` |
| Address | [0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2](https://soneium-minato.blockscout.com/address/0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2 "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2") |
| Name | Chainlink Token on Soneium Minato Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Sonic](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#sonic)
### [Sonic Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#sonic-mainnet)
S is used to pay for transactions on Sonic mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `146` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://sonicscan.org/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Sonic Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Sonic Blaze Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#sonic-blaze-testnet)
Testnet S is used to pay for transactions on Sonic Blaze testnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `57054` |
| Address | [0xd8C1eEE32341240A62eC8BC9988320bcC13c8580](https://testnet.sonicscan.org/address/0xd8C1eEE32341240A62eC8BC9988320bcC13c8580 "0xd8C1eEE32341240A62eC8BC9988320bcC13c8580") |
| Name | Chainlink Token on Sonice Blaze Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Starknet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#starknet)
### [Starknet Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#starknet-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `SN_MAIN` |
| Address | [0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9](https://voyager.online/contract/0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9 "0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9") |
| Name | Chainlink Token on Starknet Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Superseed](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#superseed)
### [Superseed Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#superseed-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5330` |
| Address | [0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9](https://explorer.superseed.xyz/address/0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9 "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Superseed Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#superseed-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `53302` |
| Address | [0xA3063eE34d9B4E407DF0E153c9bE679680e3A956](https://sepolia-explorer.superseed.xyz/address/0xA3063eE34d9B4E407DF0E153c9bE679680e3A956 "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Taiko](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#taiko)
### [Taiko Alethia](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#taiko-alethia)
| Parameter | Value |
| --- | --- |
| Chain ID | `167000` |
| Address | [0x917a3964C37993e99a47C779bEb5Db1E9d13804d](https://taikoscan.io/address/0x917a3964C37993e99a47C779bEb5Db1E9d13804d "0x917a3964C37993e99a47C779bEb5Db1E9d13804d") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Taiko Hekla Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#taiko-hekla-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `167009` |
| Address | [0x01fcdEedbA59bc68b0914D92277678dAB6827e2c](https://hekla.taikoscan.io/address/0x01fcdEedbA59bc68b0914D92277678dAB6827e2c "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Treasure](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#treasure)
### [Treasure Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#treasure-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `61166` |
| Address | [0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A](https://treasurescan.io/address/0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A "0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A") |
| Name | Chainlink Token on Treasure Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Treasure Topaz Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#treasure-topaz-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `978658` |
| Address | [0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5](https://topaz.treasurescan.io/address/0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5 "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5") |
| Name | Chainlink Token on Treasure Topaz Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Unichain](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#unichain)
### [Unichain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#unichain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `130` |
| Address | [0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A](https://uniscan.xyz//address/0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A") |
| Name | Chainlink Token on Unichain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Unichain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#unichain-sepolia-testnet)
Testnet Native and LINK are available at [faucets.chain.link/unichain-testnet](https://faucets.chain.link/unichain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1301` |
| Address | [0xda40816f278Cd049c137F6612822D181065EBfB4](https://sepolia.uniscan.xyz/address/0xda40816f278Cd049c137F6612822D181065EBfB4 "0xda40816f278Cd049c137F6612822D181065EBfB4") |
| Name | Chainlink Token on Unichain Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Wemix](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#wemix)
### [Wemix Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#wemix-mainnet)
WEMIX is used to pay for transactions on the Wemix mainnet. To transfer LINK from Ethereum to Wemix, use [Transporter](https://app.transporter.io/).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1111` |
| Address | [0x80f1FcdC96B55e459BF52b998aBBE2c364935d69](https://wemixscan.com/address/0x80f1FcdC96B55e459BF52b998aBBE2c364935d69 "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69") |
| Name | Chainlink Token on Wemix Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Wemix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#wemix-testnet)
Testnet WEMIX is used to pay for transactions on the Wemix testnet.
Testnet Native and LINK are available at [faucets.chain.link/wemix-testnet](https://faucets.chain.link/wemix-testnet). Testnet WEMIX is also available from the [WEMIX Faucet](https://wallet.test.wemix.com/faucet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1112` |
| Address | [0x3580c7A817cCD41f7e02143BFa411D4EeAE78093](https://testnet.wemixscan.com/address/0x3580c7A817cCD41f7e02143BFa411D4EeAE78093 "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093") |
| Name | Chainlink Token on Wemix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [World](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#world)
### [World Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#world-chain-mainnet)
ETH is used to pay for transactions on World Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `480` |
| Address | [0x915b648e994d5f31059B38223b9fbe98ae185473](https://worldscan.org/address/0x915b648e994d5f31059B38223b9fbe98ae185473 "0x915b648e994d5f31059B38223b9fbe98ae185473") |
| Name | Chainlink Token on World Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain/) |
### [World Chain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#world-chain-sepolia-testnet)
Testnet ETH is used to pay for transactions on World Chain Sepolia. Testnet Native and LINK are available at [faucets.chain.link/worldchain-testnet](https://faucets.chain.link/worldchain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `486` |
| Address | [0xC82Ea35634BcE95C394B6BC00626f827bB0F4801](https://sepolia.worldscan.org/address/0xC82Ea35634BcE95C394B6BC00626f827bB0F4801 "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801") |
| Name | Chainlink Token on World Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain) |
## [X Layer](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#x-layer)
### [X Layer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#x-layer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `196` |
| Address | [0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9](https://www.oklink.com/xlayer/address/0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9 "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9") |
| Name | Chainlink Token on X Layer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [X Layer Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#x-layer-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `195` |
| Address | [0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55](https://www.oklink.com/xlayer-test/address/0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55 "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55") |
| Name | Chainlink Token on X Layer Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Zircuit](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zircuit)
### [Zircuit Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zircuit-mainnet)
ETH is used to pay for transactions on the Zircuit mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48900` |
| Address | [0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a](https://explorer.zircuit.com/address/0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a") |
| Name | Chainlink Token on Zircuit Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Zircuit Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zircuit-testnet)
Testnet ETH is used to pay for transactions on the Zircuit testnet.
Testnet Native and LINK are available at [faucets.chain.link/zircuit-sepolia](https://faucets.chain.link/zircuit-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48899` |
| Address | [0xDEE94506570cA186BC1e3516fCf4fd719C312cCD](https://explorer.testnet.zircuit.com/address/0xDEE94506570cA186BC1e3516fCf4fd719C312cCD "0xDEE94506570cA186BC1e3516fCf4fd719C312cCD") |
| Name | Chainlink Token on Zircuit Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [ZKsync](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zksync)
### [ZKsync Era Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zksync-era-mainnet)
ETH is used to pay for transactions on ZKsync Era Mainnet. Use the recommended [ZKsync Bridges](https://zksync.io/explore#bridges) to transfer ETH from Ethereum to ZKsync.
| Parameter | Value |
| --- | --- |
| Chain ID | `324` |
| Address | [0x52869bae3E091e36b0915941577F2D47d8d8B534](https://explorer.zksync.io/address/0x52869bae3E091e36b0915941577F2D47d8d8B534 "0x52869bae3E091e36b0915941577F2D47d8d8B534") |
| Name | Chainlink Token on ZKsync Era Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.zksync.io](https://explorer.zksync.io/) |
### [ZKsync Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zksync-sepolia-testnet)
Testnet ETH is used to pay for transactions on ZKsync Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/zksync-sepolia](https://faucets.chain.link/zksync-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `300` |
| Address | [0x23A1aFD896c8c8876AF46aDc38521f4432658d1e](https://sepolia.explorer.zksync.io/address/0x23A1aFD896c8c8876AF46aDc38521f4432658d1e "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e") |
| Name | Chainlink Token on ZKsync Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [uptime.com/statuspage/zkSync](https://uptime.com/statuspage/zkSync) |
## [Zora](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zora)
### [Zora Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zora-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `7777777` |
| Address | [0x3662B6f73c5560229D1a98aF6e59E6649D568374](https://explorer.zora.energy/address/0x3662B6f73c5560229D1a98aF6e59E6649D568374 "0x3662B6f73c5560229D1a98aF6e59E6649D568374") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Zora Testnet](https://docs.chain.link/resources/link-token-contracts?parent=ccip\#zora-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999999999` |
| Address | [0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e](https://sepolia.explorer.zora.energy/address/0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## Get the latest Chainlink content straight to your inbox.
Email Address
[iframe](https://td.doubleclick.net/td/rul/346357746?random=1748840470469&cv=11&fst=1748840470469&fmt=3&bg=ffffff&guid=ON&async=1&gcl_ctr=1>m=45be55t0h2v891173849z8847174275za200zb847174275&gcd=13l3l3l3l1l1&dma=0&tag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&ptag_exp=101509157~103116026~103200004~103211513~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&u_w=1280&u_h=1024&url=https%3A%2F%2Fdocs.chain.link%2Fresources%2Flink-token-contracts%3Fparent%3Dccip&_ng=1&label=_duuCKn_k4cYEPL_k6UB&hn=www.googleadservices.com&frm=0&tiba=LINK%20Token%20Contracts%20%7C%20Chainlink%20Documentation&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=1121247847.1748840470&uaa=x86&uab=64&uafvl=Google%2520Chrome%3B137.0.7151.55%7CChromium%3B137.0.7151.55%7CNot%252FA)Brand%3B24.0.0.0&uamb=0&uam=&uap=Linux%20x86_64&uapv=6.6.72&uaw=0&ec_mode=a&fledge=1&capi=1&_tu=Cg&em=tv.1&ct_cookie_present=0)
## LINK Token Contracts
[iframe](https://www.googletagmanager.com/ns.html?id=GTM-N6DQ47T)
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [LINK Token Contracts](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#overview)
* * *
LINK tokens are used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators. The smallest denomination of LINK is called a Juel, and 1,000,000,000,000,000,000 (1e18) Juels are equal to 1 LINK. This is similar to Wei, which is the [smallest denomination of ETH](https://ethereum.org/en/developers/docs/intro-to-ether/#denominations).
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 services on a given blockchain, it is necessary to use LINK tokens. You can transfer tokens across blockchains by using [Chainlink CCIP](https://docs.chain.link/ccip/tutorials/evm/transfer-tokens-from-contract) or applications such as [Transporter](https://app.transporter.io/) and [XSwap](https://xswap.link/).
## [Abstract](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#abstract)
### [Abstract Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#abstract-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2741` |
| Address | [0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd](https://abscan.org/address/0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Abstract Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#abstract-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `11124` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia.abscan.org/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Apechain](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#apechain)
### [Apechain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#apechain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33139` |
| Address | [0xf575731b78981B86d34321d875A3D25a48479be6](https://apescan.io/address/0xf575731b78981B86d34321d875A3D25a48479be6 "0xf575731b78981B86d34321d875A3D25a48479be6") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Apechain Curtis Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#apechain-curtis-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33111` |
| Address | [0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E](https://explorer.curtis.apechain.com/address/0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E") |
| Name | Chainlink Token on Apechain Curtis Testnet |
| Symbol | LINK |
## [Arbitrum](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#arbitrum)
### [Arbitrum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#arbitrum-mainnet)
ETH is used to pay for transactions on the Arbitrum Mainnet.
You can use the [Arbitrum Bridge](https://bridge.arbitrum.io/) to transfer ETH and LINK from Ethereum Mainnet to Arbitrum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `42161` |
| Address | [0xf97f4df75117a78c1A5a0DBb814Af92458539FB4](https://explorer.arbitrum.io/address/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4 "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4") |
| Name | Chainlink Token on Arbitrum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
### [Arbitrum Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#arbitrum-sepolia-testnet)
Testnet ETH is used to pay for transactions on Arbitrum Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/arbitrum-sepolia](https://faucets.chain.link/arbitrum-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `421614` |
| Address | [0xb1D4538B4571d411F07960EF2838Ce337FE1E80E](https://sepolia.arbiscan.io/address/0xb1D4538B4571d411F07960EF2838Ce337FE1E80E "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E") |
| Name | Chainlink Token on Arbitrum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
## [Astar](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#astar)
### [Astar Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#astar-mainnet)
ASTR is used to pay for transactions on Astar Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `592` |
| Address | [0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d](https://astar.blockscout.com/address/0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d") |
| Name | ChainLink Token on Astar Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/astar/dashboard](https://portal.astar.network/astar/dashboard) |
### [Astar Shibuya](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#astar-shibuya)
SBY is used to pay for transactions on Astar Shibuya. Testnet SBY is available at [Astar Shibuya Faucet](https://docs.astar.network/docs/build/environment/faucet/).
Testnet LINK is available at [faucets.chain.link/astar-shibuya](https://faucets.chain.link/astar-shibuya).
| Parameter | Value |
| --- | --- |
| Chain ID | `81` |
| Address | [0xe74037112db8807B3B4B3895F5790e5bc1866a29](https://shibuya.blockscout.com/address/0xe74037112db8807B3B4B3895F5790e5bc1866a29 "0xe74037112db8807B3B4B3895F5790e5bc1866a29") |
| Name | ChainLink Token on Astar Shibuya |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/shibuya-testnet/dashboard](https://portal.astar.network/shibuya-testnet/dashboard) |
## [Avalanche](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#avalanche)
### [Avalanche Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#avalanche-mainnet)
AVAX is used to pay for transactions on Avalanche Mainnet. Use the [Avalanche Bridge](https://bridge.avax.network/) to transfer LINK from Ethereum Mainnet to Avalanche.
| Parameter | Value |
| --- | --- |
| Chain ID | `43114` |
| Address | [0x5947BB275c521040051D82396192181b413227A3](https://snowtrace.io/address/0x5947BB275c521040051D82396192181b413227A3 "0x5947BB275c521040051D82396192181b413227A3") |
| Name | Chainlink Token on Avalanche Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
### [Avalanche Fuji Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#avalanche-fuji-testnet)
Testnet AVAX is used to pay for transactions on Avalanche Fuji.
Testnet AVAX and LINK are available at [faucets.chain.link/fuji](https://faucets.chain.link/fuji). Testnet AVAX is also available at [core.app/tools/testnet-faucet](https://core.app/tools/testnet-faucet/).
| Parameter | Value |
| --- | --- |
| Chain ID | `43113` |
| Address | [0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846](https://testnet.snowtrace.io/address/0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846 "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846") |
| Name | Chainlink Token on Avalanche Fuji Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
## [BASE](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#base)
### [BASE Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#base-mainnet)
ETH is used to pay for transactions on BASE. You can use the [BASE Bridge](https://bridge.base.org/deposit) to transfer ETH from Ethereum Mainnet to BASE Mainnet. To transfer LINK from Ethereum to Base, use [Transporter](https://app.transporter.io/) or [XSwap Bridge](https://xswap.link/bridge).
| Parameter | Value |
| --- | --- |
| Chain ID | `8453` |
| Address | [0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196](https://basescan.org/address/0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196 "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196") |
| Name | Chainlink Token on BASE Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [basescan.org](https://basescan.org/) |
### [BASE Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#base-sepolia-testnet)
Testnet ETH is used to pay for transactions on BASE Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/base-sepolia](https://faucets.chain.link/base-sepolia). Testnet ETH is also available from one of the [BASE Network Faucets](https://docs.base.org/tools/network-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `84532` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia.basescan.org/address/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on BASE Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.basescan.org](https://sepolia.basescan.org/) |
## [Berachain](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#berachain)
### [Berachain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#berachain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80094` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://berascan.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Berachain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Berachain Bartio Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#berachain-bartio-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80084` |
| Address | [0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271](https://bartio.beratrail.io/address/0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271 "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271") |
| Name | ChainLink Token on Berachain Bartio Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bitlayer](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bitlayer)
### [Bitlayer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bitlayer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `200901` |
| Address | [0x56B275c0Ec034a229a1deD8DB17089544bc276D9](https://www.btrscan.com/address/0x56B275c0Ec034a229a1deD8DB17089544bc276D9 "0x56B275c0Ec034a229a1deD8DB17089544bc276D9") |
| Name | Chainlink Token on Bitlayer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
### [Bitlayer Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bitlayer-testnet)
Testnet LINK are available at [faucets.chain.link/bitlayer-testnet](https://faucets.chain.link/bitlayer-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `200810` |
| Address | [0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48](https://testnet.btrscan.com/address/0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48 "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48") |
| Name | Chainlink Token on Bitlayer Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
## [Blast](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#blast)
### [Blast Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#blast-mainnet)
ETH is used to pay for transactions on Blast. You can use the [Blast Bridge](https://blast.io/en/bridge) to transfer ETH from Ethereum Mainnet to Blast Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `81457` |
| Address | [0x93202eC683288a9EA75BB829c6baCFb2BfeA9013](https://blastscan.io/address/0x93202eC683288a9EA75BB829c6baCFb2BfeA9013 "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013") |
| Name | Chainlink Token on Blast Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [blastscan.io](https://blastscan.io/) |
### [Blast Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#blast-sepolia-testnet)
Testnet ETH is used to pay for transactions on Blast Sepolia. Testnet ETH is available from one of the [Blast Network Faucets](https://docs.blast.io/tools/faucets). Testnet ETH and LINK are also available at [faucets.chain.link/blast-sepolia](https://faucets.chain.link/blast-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `168587773` |
| Address | [0x02c359ebf98fc8BF793F970F9B8302bb373BdF32](https://sepolia.blastscan.io/address/0x02c359ebf98fc8BF793F970F9B8302bb373BdF32 "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32") |
| Name | Chainlink Token on Blast Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.blastscan.io](https://sepolia.blastscan.io/) |
## [BNB Chain](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bnb-chain)
### [BNB Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bnb-chain-mainnet)
BNB is used to pay for transactions on the BNB Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `56` |
| Address | [0x404460C6A5EdE2D891e8297795264fDe62ADBB75](https://bscscan.com/token/0x404460C6A5EdE2D891e8297795264fDe62ADBB75 "0x404460C6A5EdE2D891e8297795264fDe62ADBB75") |
| Name | Chainlink Token on BNB Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
### [BNB Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bnb-chain-testnet)
Testnet BNB is used to pay for transactions on the BNB Chain testnet. Testnet BNB is available at [testnet.bnbchain.org/faucet-smart](https://testnet.bnbchain.org/faucet-smart).
Testnet Native and LINK is available at [faucets.chain.link/bnb-chain-testnet](https://faucets.chain.link/bnb-chain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `97` |
| Address | [0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06](https://testnet.bscscan.com/address/0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06 "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06") |
| Name | Chainlink Token on BNB Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
## [Bob](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bob)
### [Bob Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bob-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `60808` |
| Address | [0x5aB885CDa7216b163fb6F813DEC1E1532516c833](https://explorer.gobob.xyz/address/0x5aB885CDa7216b163fb6F813DEC1E1532516c833 "0x5aB885CDa7216b163fb6F813DEC1E1532516c833") |
| Name | Chainlink Token on Bob Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
### [Bob Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bob-sepolia-testnet)
Testnet ETH and LINK are available at [faucets.chain.link/bob-testnet](https://faucets.chain.link/bob-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `808813` |
| Address | [0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183](https://bob-sepolia.explorer.gobob.xyz/address/0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183 "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183") |
| Name | Chainlink Token on Bob Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
## [Botanix](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#botanix)
### [Botanix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#botanix-testnet)
Testnet Native and LINK are available at [faucets.chain.link/botanix-testnet](https://faucets.chain.link/botanix-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `3636` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://testnet.botanixscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Botanix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bsquared](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bsquared)
### [Bsquared Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bsquared-mainnet)
BTC is used to pay for transactions on Bsquared Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `223` |
| Address | [0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39](https://explorer.bsquared.network/address/0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39 "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39") |
| Name | Chainlink Token on Bsquared Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.bsquared.network](https://explorer.bsquared.network/) |
### [Bsquared Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#bsquared-testnet)
Testnet BTC is used to pay for transactions on Bsquared Testnet.
Testnet BTC and LINK are available at [faucets.chain.link/bsquared-testnet](https://faucet.chain.link/bsquared-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1123` |
| Address | [0x436a1907D9e6a65E6db73015F08f9C66F6B63E45](https://testnet-explorer.bsquared.network/address/0x436a1907D9e6a65E6db73015F08f9C66F6B63E45 "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45") |
| Name | Chainlink Token on Bsquared Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [testnet-explorer.bsquared.network](https://testnet-explorer.bsquared.network/) |
## [Celo](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#celo)
### [Celo Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#celo-mainnet)
CELO is used to pay for transactions on the Celo network.
| Parameter | Value |
| --- | --- |
| Chain ID | `42220` |
| Address | [0xd07294e6E917e07dfDcee882dd1e2565085C2ae0](https://explorer.celo.org/mainnet/address/0xd07294e6E917e07dfDcee882dd1e2565085C2ae0 "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0") |
| Name | Chainlink Token on Celo Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org](https://explorer.celo.org/) |
### [Celo Alfajores Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#celo-alfajores-testnet)
Testnet CELO is used to pay for transactions on Celo Alfajores. Testnet CELO is available from the [Alfajores Token Faucet](https://faucet.celo.org/alfajores).
Testnet Native and LINK is available at [faucets.chain.link/celo-alfajores-testnet](https://faucets.chain.link/celo-alfajores-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `44787` |
| Address | [0x32E08557B14FaD8908025619797221281D439071](https://explorer.celo.org/alfajores/address/0x32E08557B14FaD8908025619797221281D439071 "0x32E08557B14FaD8908025619797221281D439071") |
| Name | Chainlink Token on Celo Alfajores Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org/alfajores](https://explorer.celo.org/alfajores/) |
## [Core](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#core)
### [Core Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#core-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1116` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://scan.coredao.org/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Core Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Corn](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#corn)
### [Corn Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#corn-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `21000000` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://cornscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Corn Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Corn Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#corn-testnet)
Testnet Native and LINK is available at [faucets.chain.link/corn-testnet](https://faucets.chain.link/corn-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `21000001` |
| Address | [0x996EfAb6011896Be832969D91E9bc1b3983cfdA1](https://testnet.cornscan.io/address/0x996EfAb6011896Be832969D91E9bc1b3983cfdA1 "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1") |
| Name | Chainlink Token on Corn Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#cronos)
### [Cronos Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#cronos-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `25` |
| Address | [0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85](https://explorer.cronos.org/address/0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85 "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#cronos-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `338` |
| Address | [0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262](https://explorer.cronos.org/testnet/address/0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262 "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262") |
| Name | Chainlink Token on Cronos Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#cronos-zkevm)
### [Cronos zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#cronos-zkevm-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `388` |
| Address | [0x61170ca9fB9cF98d4c7d684e07be6D969D59667E](https://explorer.zkevm.cronos.org/address/0x61170ca9fB9cF98d4c7d684e07be6D969D59667E "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E") |
| Name | Chainlink Token on Cronos zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos zkEVM Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#cronos-zkevm-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `240` |
| Address | [0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827](https://explorer.zkevm.cronos.org/testnet/address/0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827 "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827") |
| Name | Chainlink Token on Cronos zkEVM Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ethereum](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ethereum)
### [Ethereum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ethereum-mainnet)
ETH is used to pay for transactions on Ethereum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1` |
| Address | [0x514910771AF9Ca656af840dff83E8264EcF986CA](https://etherscan.io/token/0x514910771AF9Ca656af840dff83E8264EcF986CA "0x514910771AF9Ca656af840dff83E8264EcF986CA") |
| Name | Chainlink Token on Ethereum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ethstats.dev](https://ethstats.dev/) |
### [Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#sepolia-testnet)
Testnet ETH is used to pay for transactions on Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `11155111` |
| Address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789 "0x779877A7B0D9E8603169DdbD7836e478b4624789") |
| Name | Chainlink Token on Ethereum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
### [Ethereum Holesky Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ethereum-holesky-testnet)
Testnet ETH is used to pay for transactions on Holesky.
Testnet ETH and LINK are available at [faucets.chain.link/holesky](https://faucets.chain.link/holesky).
| Parameter | Value |
| --- | --- |
| Chain ID | `17000` |
| Address | [0x685cE6742351ae9b618F383883D6d1e0c5A31B4B](https://holesky.etherscan.io/token/0x685cE6742351ae9b618F383883D6d1e0c5A31B4B "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B") |
| Name | Chainlink Token on Ethereum Holesky Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
## [Etherlink](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#etherlink)
### [Etherlink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#etherlink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `42793` |
| Address | [0x8ce7618E8f8E514d13889283F58FF03B794e6CC3](https://explorer.etherlink.com/address/0x8ce7618E8f8E514d13889283F58FF03B794e6CC3 "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3") |
| Name | Chainlink Token on Etherlink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Etherlink Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#etherlink-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `128123` |
| Address | [0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950](https://testnet.explorer.etherlink.com/address/0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950 "0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950") |
| Name | Chainlink Token on Etherlink Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Fantom](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#fantom)
### [Fantom Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#fantom-mainnet)
FTM is used to pay for transactions on Fantom Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `250` |
| Address | [0x6F43FF82CCA38001B6699a8AC47A2d0E66939407](https://ftmscan.com/address/0x6F43FF82CCA38001B6699a8AC47A2d0E66939407 "0x6F43FF82CCA38001B6699a8AC47A2d0E66939407") |
| Name | Chainlink Token on Fantom Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
### [Fantom Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#fantom-testnet)
Testnet FTM is used to pay for transactions on Fantom testnet. Testnet FTM is available at [faucet.fantom.network](https://faucet.fantom.network/).
Testnet LINK is available at [faucets.chain.link/fantom-testnet](https://faucets.chain.link/fantom-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `4002` |
| Address | [0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F](https://testnet.ftmscan.com/address/0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F "0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F") |
| Name | Chainlink Token on Fantom Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
## [Fraxtal](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#fraxtal)
### [Fraxtal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#fraxtal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `252` |
| Address | [0xd6A6ba37fAaC229B9665E86739ca501401f5a940](https://fraxscan.com/address/0xd6A6ba37fAaC229B9665E86739ca501401f5a940 "0xd6A6ba37fAaC229B9665E86739ca501401f5a940") |
| Name | Chainlink Token on Fraxtal Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Fraxtal Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#fraxtal-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2522` |
| Address | [0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF](https://holesky.fraxscan.com/address/0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF") |
| Name | Chainlink Token on Fraxtal Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Gnosis Chain (xDai)](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#gnosis-chain-xdai)
### [Gnosis Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#gnosis-chain-mainnet)
xDAI is used to pay for transactions on Gnosis Chain Mainnet. Use the [xDai Bridge](https://bridge.gnosischain.com/) to send DAI from Ethereum Mainnet to Gnosis Chain and convert it to xDAI. Use [OmniBridge](https://omni.gnosischain.com/bridge) to send LINK from Ethereum Mainnet to Gnosis Chain.
| Parameter | Value |
| --- | --- |
| Chain ID | `100` |
| Address | [0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2](https://gnosisscan.io/address/0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2 "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2") |
| Name | Chainlink Token on Gnosis Chain (xDai) Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
### [Gnosis Chiado Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#gnosis-chiado-testnet)
xDAI is used to pay for transactions on Gnosis Chiado testnet. Use the [Chiado faucet](https://faucet.chiadochain.net/) to get testnet xDAI.
Testnet Native and LINK is available at [faucets.chain.link/gnosis-chiado-testnet](https://faucets.chain.link/gnosis-chiado-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `10200` |
| Address | [0xDCA67FD8324990792C0bfaE95903B8A64097754F](https://gnosis-chiado.blockscout.com/address/0xDCA67FD8324990792C0bfaE95903B8A64097754F "0xDCA67FD8324990792C0bfaE95903B8A64097754F") |
| Name | Chainlink Token on Gnosis Chiado Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
## [HashKey](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hashkey)
### [HashKey Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hashkey-chain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `177` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://hashkey.blockscout.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on HashKey Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [HashKey Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hashkey-chain-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `133` |
| Address | [0x8418c4d7e8e17ab90232DC72150730E6c4b84F57](https://hashkeychain-testnet-explorer.alt.technology/address/0x8418c4d7e8e17ab90232DC72150730E6c4b84F57 "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57") |
| Name | Chainlink Token on HashKey Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hedera](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hedera)
### [Hedera Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hedera-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98](https://hashscan.io/mainnet/contract/0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98 "0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hedera Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hedera-testnet)
Testnet HBAR is used to pay for transactions on the Hedera testnet.
Testnet Native and LINK is available at [faucets.chain.link/hedera-testnet](https://faucets.chain.link/hedera-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6](https://hashscan.io/testnet/contract/0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6 "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6") |
| Name | Chainlink Token on Hedera Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hemi](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hemi)
### [Hemi Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hemi-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `43111` |
| Address | [0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8](https://explorer.hemi.xyz/address/0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8 "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hemi Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hemi-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `743111` |
| Address | [0x5246409a2e09134824c4E709602205B176491e57](https://testnet.explorer.hemi.xyz/address/0x5246409a2e09134824c4E709602205B176491e57 "0x5246409a2e09134824c4E709602205B176491e57") |
| Name | Chainlink Token on Hemi Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hyperliquid](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hyperliquid)
### [Hyperliquid Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#hyperliquid-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999` |
| Address | [0x1AC2EE68b8d038C982C1E1f73F596927dd70De59](https://app.hyperliquid.xyz/explorer/address/0x1AC2EE68b8d038C982C1E1f73F596927dd70De59 "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59") |
| Name | Chainlink Token on Hemi Mainnet Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ink](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ink)
### [Ink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `57073` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.inkonchain.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Ink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Ink Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ink-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `763373` |
| Address | [0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4](https://explorer-sepolia.inkonchain.com/address/0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4 "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4") |
| Name | Chainlink Token on Ink Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Kroma](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#kroma)
### [Kroma Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#kroma-mainnet)
ETH is used to pay for transactions on the Kroma mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `255` |
| Address | [0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450](https://kromascan.xyz/address/0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450 "0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450") |
| Name | Chainlink Token on Kroma Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Kroma Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#kroma-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Kroma testnet.
Testnet Native and LINK are available at [faucets.chain.link/kroma-testnet](https://faucets.chain.link/kroma-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2358` |
| Address | [0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8](https://testnet.kromascan.xyz/address/0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8 "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8") |
| Name | Chainlink Token on Kroma Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Lens](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#lens)
### [Lens Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#lens-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `232` |
| Address | [0x6e970e8d6758164798290c8db1D79a527ca6e1B2](https://explorer.lens.xyz/address/0x6e970e8d6758164798290c8db1D79a527ca6e1B2 "0x6e970e8d6758164798290c8db1D79a527ca6e1B2") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lens Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#lens-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `37111` |
| Address | [0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36](https://block-explorer.testnet.lens.dev/address/0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36 "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36") |
| Name | Chainlink Token on Lens Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Linea](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#linea)
### [Linea Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#linea-mainnet)
ETH is used to pay for transactions on Linea Mainnet. Use the [Linea Bridge](https://bridge.linea.build/) to transfer ETH from Ethereum to Linea.
| Parameter | Value |
| --- | --- |
| Chain ID | `59144` |
| Address | [0xa18152629128738a5c081eb226335FEd4B9C95e9](https://lineascan.build/address/0xa18152629128738a5c081eb226335FEd4B9C95e9 "0xa18152629128738a5c081eb226335FEd4B9C95e9") |
| Name | Chainlink Token on Linea Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
### [Linea Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#linea-sepolia-testnet)
Testnet ETH is used to pay for transactions on Linea Sepolia. Testnet Native and LINK are available at [faucets.chain.link/linea-sepolia](https://faucets.chain.link/linea-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59141` |
| Address | [0xF64E6E064a71B45514691D397ad4204972cD6508](https://sepolia.lineascan.build/address/0xF64E6E064a71B45514691D397ad4204972cD6508 "0xF64E6E064a71B45514691D397ad4204972cD6508") |
| Name | Chainlink Token on Linea Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
## [Lisk](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#lisk)
### [Lisk Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#lisk-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1135` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://blockscout.lisk.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lisk Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#lisk-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4202` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia-blockscout.lisk.com/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mantle](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mantle)
### [Mantle Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mantle-mainnet)
MNT is used to pay for transactions on the Mantle mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5000` |
| Address | [0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043](https://mantlescan.xyz/address/0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043 "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043") |
| Name | ChainLink Token on Mantle Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mantle Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mantle-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mantle Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/mantle-sepolia](https://faucets.chain.link/mantle-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5003` |
| Address | [0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04](https://sepolia.mantlescan.xyz/address/0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04 "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04") |
| Name | ChainLink Token on Mantle Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [MegaEth](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#megaeth)
### [MegaEth Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#megaeth-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `6342` |
| Address | [0x4d03398C2588D92B220578dAEde29814E41c8033](https://megaexplorer.xyz/address/0x4d03398C2588D92B220578dAEde29814E41c8033 "0x4d03398C2588D92B220578dAEde29814E41c8033") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Merlin](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#merlin)
### [Merlin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#merlin-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4200` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://scan.merlinchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Merlin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Merlin Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#merlin-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `686868` |
| Address | [0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50](https://testnet-scan.merlinchain.io//address/0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50 "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50") |
| Name | Chainlink Token on Merlin Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Metal](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#metal)
### [Metal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#metal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1750` |
| Address | [0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C](https://explorer.metall2.com/address/0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Metal L2 Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#metal-l2-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1740` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://testnet.explorer.metall2.com/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Metis](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#metis)
### [Metis Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#metis-mainnet)
METIS is used to pay for transactions on Metis Mainnet. You can use the [Metis Bridge](https://bridge.metis.io/) to transfer METIS from Ethereum Mainnet to Metis Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1088` |
| Address | [0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353](https://explorer.metis.io/address/0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353 "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353") |
| Name | Chainlink Token on Metis Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.metis.io](https://explorer.metis.io/) |
### [Metis Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#metis-sepolia-testnet)
Testnet METIS is used to pay for transactions on Metis Sepolia.
Testnet METIS and LINK are available at [faucets.chain.link/metis-sepolia](https://faucets.chain.link/metis-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59902` |
| Address | [0x9870D6a0e05F867EAAe696e106741843F7fD116D](https://sepolia-explorer.metisdevops.link/address/0x9870D6a0e05F867EAAe696e106741843F7fD116D "0x9870D6a0e05F867EAAe696e106741843F7fD116D") |
| Name | Chainlink Token on Metis Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia-explorer.metisdevops.link](https://sepolia-explorer.metisdevops.link/) |
## [Mind Network](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mind-network)
### [Mind Network Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mind-network-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `228` |
| Address | [0xd8A9246e84903e82CA01e42774b01A7CdD465BFa](https://explorer.mindnetwork.xyz/address/0xd8A9246e84903e82CA01e42774b01A7CdD465BFa "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mind Network Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mind-network-testnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `192940` |
| Address | [0xE0352dEd874c3E72d922CE533E136385fBE4a9B4](https://explorer-testnet.mindnetwork.xyz/address/0xE0352dEd874c3E72d922CE533E136385fBE4a9B4 "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mint](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mint)
### [Mint Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mint-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `185` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.mintchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mint Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mint-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1687` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://sepolia-testnet-explorer.mintchain.io/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mode](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mode)
### [Mode Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mode-mainnet)
ETH is used to pay for transactions on the Mode mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `34443` |
| Address | [0x183E3691EfF3524B2315D3703D94F922CbE51F54](https://explorer.mode.network/address/0x183E3691EfF3524B2315D3703D94F922CbE51F54 "0x183E3691EfF3524B2315D3703D94F922CbE51F54") |
| Name | Chainlink Token on Mode Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mode Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#mode-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mode testnet.
Testnet ETH and LINK are available at [faucets.chain.link/mode-sepolia](https://faucets.chain.link/mode-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `919` |
| Address | [0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d](https://sepolia.explorer.mode.network/address/0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d") |
| Name | Chainlink Token on Mode Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Monad](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#monad)
### [Monad Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#monad-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `10143` |
| Address | [0x6fE981Dbd557f81ff66836af0932cba535Cbc343](https://testnet.monadexplorer.com/address/0x6fE981Dbd557f81ff66836af0932cba535Cbc343 "0x6fE981Dbd557f81ff66836af0932cba535Cbc343") |
| Name | Chainlink Token on Monad Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Moonbeam](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#moonbeam)
### [Moonbeam Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#moonbeam-mainnet)
GLMR is used to pay transaction fees on Moonbeam Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1284` |
| Address | [0x012414A392F9FA442a3109f1320c439C45518aC3](https://moonscan.io/address/0x012414A392F9FA442a3109f1320c439C45518aC3 "0x012414A392F9FA442a3109f1320c439C45518aC3") |
| Name | Chainlink Token on Moonbeam Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [Moonriver](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#moonriver)
### [Moonriver Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#moonriver-mainnet)
MOVR is used to pay transaction fees on Moonriver Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1285` |
| Address | [0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e](https://moonriver.moonscan.io/address/0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e "0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e") |
| Name | Chainlink Token on Moonriver Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [OPBNB](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#opbnb)
### [OPBNB Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#opbnb-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `204` |
| Address | [0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA](https://opbnbscan.com/address/0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [OPBNB Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#opbnb-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5611` |
| Address | [0x56E16E648c51609A14Eb14B99BAB771Bee797045](https://opbnb-testnet.bscscan.com/address/0x56E16E648c51609A14Eb14B99BAB771Bee797045 "0x56E16E648c51609A14Eb14B99BAB771Bee797045") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [OP](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#op)
### [OP Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#op-mainnet)
ETH is used to pay for transactions on OP. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer ETH and LINK from Ethereum Mainnet to OP Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `10` |
| Address | [0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6](https://optimistic.etherscan.io/address/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6 "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6") |
| Name | Chainlink Token on OP Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
### [OP Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#op-sepolia-testnet)
Testnet ETH is used to pay for transactions on OP Sepolia. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer testnet ETH from Ethereum Sepolia to OP Sepolia. Testnet ETH is available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
Testnet Native and LINK is available at [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia). Testnet bridges might not transfer the correct type of LINK to OP Sepolia, so it is recommended to use only the LINK acquired from [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia) when developing applications on testnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `11155420` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia-optimism.etherscan.io/token/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on OP Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
## [Plume](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#plume)
### [Plume Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#plume-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98866` |
| Address | [0xb549B375dA0c76f8b3877B9aDfDD28378f087A64](https://phoenix-explorer.plumenetwork.xyz/address/0xb549B375dA0c76f8b3877B9aDfDD28378f087A64 "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Plume Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#plume-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98867` |
| Address | [0xB97e3665AEAF96BDD6b300B2e0C93C662104A068](https://testnet-explorer.plumenetwork.xyz/address/0xB97e3665AEAF96BDD6b300B2e0C93C662104A068 "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
| | |
## [Polygon](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#polygon)
### [Polygon Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#polygon-mainnet)
POL is used to pay for transactions on Polygon. You can use the [Polygon Bridge](https://wallet.polygon.technology/polygon/bridge/) to transfer tokens to Polygon Mainnet and then use [Polygon Gas Swap](https://wallet.polygon.technology/polygon/gas-swap/) to swap supported tokens to POL.
| Parameter | Value |
| --- | --- |
| Chain ID | `137` |
| Address | [0xb0897686c545045aFc77CF20eC7A532E3120E0F1](https://polygonscan.com/address/0xb0897686c545045aFc77CF20eC7A532E3120E0F1 "0xb0897686c545045aFc77CF20eC7A532E3120E0F1") |
| Name | Chainlink Token on Polygon Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
### [Polygon Amoy Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#polygon-amoy-testnet)
Testnet POL is used to pay for transactions on Polygon Amoy.
Testnet POL and LINK are available at [faucets.chain.link/polygon-amoy](https://faucets.chain.link/polygon-amoy).
| Parameter | Value |
| --- | --- |
| Chain ID | `80002` |
| Address | [0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904](https://amoy.polygonscan.com/address/0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904 "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904") |
| Name | Chainlink Token on Polygon Amoy Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
## [Polygon zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#polygon-zkevm)
### [Polygon zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#polygon-zkevm-mainnet)
ETH is used to pay for transactions on Polygon zkEVM. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer ETH and LINK to Polygon zkEVM.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1101` |
| Address | [0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D](https://zkevm.polygonscan.com/address/0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D") |
| Name | Chainlink Token on Polygon zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Polygon zkEVM Cardona Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#polygon-zkevm-cardona-testnet)
Testnet ETH is used to pay for transactions on Polygon zkEVM Cardona testnet. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer testnet ETH to Polygon zkEVM testnet.
Testnet ETH and LINK are available at [faucets.chain.link/polygon-zkevm-cardona](https://faucets.chain.link/polygon-zkevm-cardona).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2442` |
| Address | [0x5576815a38A3706f37bf815b261cCc7cCA77e975](https://cardona-zkevm.polygonscan.com/address/0x5576815a38A3706f37bf815b261cCc7cCA77e975 "0x5576815a38A3706f37bf815b261cCc7cCA77e975") |
| Name | Chainlink Token on Polygon zkEVM Cardona Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ronin](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ronin)
### [Ronin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ronin-mainnet)
RON is used to pay for transactions on Ronin Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `2020` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://app.roninchain.com/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Ronin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://app.roninchain.com/) |
### [Ronin Saigon Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#ronin-saigon-testnet)
Testnet RON is used to pay for transactions on Ronin Saigon.
Testnet Native and LINK are available at [faucets.chain.link/ronin-saigon](https://faucets.chain.link/ronin-saigon).
| Parameter | Value |
| --- | --- |
| Chain ID | `2021` |
| Address | [0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15](https://saigon-app.roninchain.com/address/0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15 "0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15") |
| Name | Chainlink Token on Ronin Saigon Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://saigon-app.roninchain.com/) |
## [Rootstock](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#rootstock)
### [Rootstock Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#rootstock-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `30` |
| Address | [0x938D84942f5D924070A6bb82F8e56a5E2b3098A4](https://explorer.rsk.co/address/0x938D84942f5D924070A6bb82F8e56a5E2b3098A4 "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4") |
| Name | Chainlink Token on Rootstock Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Rootstock Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#rootstock-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `31` |
| Address | [0x39dD98CcCC3a51b2c0007e23517488e363581264](https://explorer.testnet.rsk.co/address/0x39dD98CcCC3a51b2c0007e23517488e363581264 "0x39dD98CcCC3a51b2c0007e23517488e363581264") |
| Name | Chainlink Token on Rootstock Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Scroll](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#scroll)
### [Scroll Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#scroll-mainnet)
ETH is used to pay for transactions on Scroll Mainnet. Use the [Scroll Bridge](https://scroll.io/bridge) to transfer ETH from Ethereum to Scroll.
| Parameter | Value |
| --- | --- |
| Chain ID | `534352` |
| Address | [0x548C6944cba02B9D1C0570102c89de64D258d3Ac](https://scrollscan.com/address/0x548C6944cba02B9D1C0570102c89de64D258d3Ac "0x548C6944cba02B9D1C0570102c89de64D258d3Ac") |
| Name | Chainlink Token on Scroll Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
### [Scroll Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#scroll-sepolia-testnet)
Testnet ETH is used to pay for transactions on Scroll testnet.
Testnet ETH and LINK are available at [faucets.chain.link/scroll-sepolia-testnet](https://faucets.chain.link/scroll-sepolia-testnet). Testnet ETH is also available from the [Scroll Sepolia Faucets](https://docs.scroll.io/en/user-guide/faucet/#scroll-sepolia-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `534351` |
| Address | [0x231d45b53C905c3d6201318156BDC725c9c3B9B1](https://sepolia-blockscout.scroll.io/address/0x231d45b53C905c3d6201318156BDC725c9c3B9B1 "0x231d45b53C905c3d6201318156BDC725c9c3B9B1") |
| Name | Chainlink Token on Scroll Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
## [Sei](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#sei)
### [Sei Network](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#sei-network)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1329` |
| Address | [?chain=pacific-1](https://seitrace.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F/?chain=pacific-1 "?chain=pacific-1") |
| Name | Chainlink Token on Sei Network |
| Symbol | LINK |
| Decimals | 18 |
### [Sei Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#sei-testnet)
Testnet Native and LINK are available at [faucets.chain.link/sei-testnet](https://faucets.chain.link/sei-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1328` |
| Address | [0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2](https://seitrace.com/token/0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2 "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2") |
| Name | Chainlink Token on Sei Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Shibarium](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#shibarium)
### [Shibarium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#shibarium-mainnet)
BONE is used to pay for transactions on Shibarium Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `109` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://www.shibariumscan.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Shibarium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.shibariumscan.io](https://explorer.shibariumscan.io/) |
### [Shibarium Puppynet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#shibarium-puppynet)
Testnet BONE is used to pay for transactions on Shibarium Puppynet.
Testnet Native and LINK are available at [faucets.chain.link/shibarium-puppynet](https://faucet.chain.link/shibarium-puppynet).
| Parameter | Value |
| --- | --- |
| Chain ID | `157` |
| Address | [0x44637eEfD71A090990f89faEC7022fc74B2969aD](https://puppyscan.shib.io/address/0x44637eEfD71A090990f89faEC7022fc74B2969aD "0x44637eEfD71A090990f89faEC7022fc74B2969aD") |
| Name | Chainlink Token on Shibarium Puppynet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [puppyscan.shib.io](https://puppyscan.shib.io/) |
## [Solana](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#solana)
### [Solana Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#solana-mainnet)
SOL is used to pay for transactions on the Solana network.
| Parameter | Value |
| --- | --- |
| Chain ID | `mainnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
| Network status | [status.solana.com/](https://status.solana.com/) |
### [Solana Devnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#solana-devnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `devnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L?cluster=devnet "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
## [Soneium](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#soneium)
### [Soneium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#soneium-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1868` |
| Address | [0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec](https://soneium.blockscout.com/address/0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec") |
| Name | Chainlink Token on Soneium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Soneium Minato Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#soneium-minato-testnet)
Testnet ETH is used to pay for transactions on the Soneium Minato testnet. Testnet Native and LINK are available at [faucets.chain.link/soneium-minato](https://faucets.chain.link/soneium-minato).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1946` |
| Address | [0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2](https://soneium-minato.blockscout.com/address/0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2 "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2") |
| Name | Chainlink Token on Soneium Minato Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Sonic](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#sonic)
### [Sonic Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#sonic-mainnet)
S is used to pay for transactions on Sonic mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `146` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://sonicscan.org/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Sonic Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Sonic Blaze Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#sonic-blaze-testnet)
Testnet S is used to pay for transactions on Sonic Blaze testnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `57054` |
| Address | [0xd8C1eEE32341240A62eC8BC9988320bcC13c8580](https://testnet.sonicscan.org/address/0xd8C1eEE32341240A62eC8BC9988320bcC13c8580 "0xd8C1eEE32341240A62eC8BC9988320bcC13c8580") |
| Name | Chainlink Token on Sonice Blaze Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Starknet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#starknet)
### [Starknet Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#starknet-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `SN_MAIN` |
| Address | [0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9](https://voyager.online/contract/0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9 "0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9") |
| Name | Chainlink Token on Starknet Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Superseed](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#superseed)
### [Superseed Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#superseed-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5330` |
| Address | [0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9](https://explorer.superseed.xyz/address/0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9 "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Superseed Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#superseed-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `53302` |
| Address | [0xA3063eE34d9B4E407DF0E153c9bE679680e3A956](https://sepolia-explorer.superseed.xyz/address/0xA3063eE34d9B4E407DF0E153c9bE679680e3A956 "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Taiko](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#taiko)
### [Taiko Alethia](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#taiko-alethia)
| Parameter | Value |
| --- | --- |
| Chain ID | `167000` |
| Address | [0x917a3964C37993e99a47C779bEb5Db1E9d13804d](https://taikoscan.io/address/0x917a3964C37993e99a47C779bEb5Db1E9d13804d "0x917a3964C37993e99a47C779bEb5Db1E9d13804d") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Taiko Hekla Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#taiko-hekla-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `167009` |
| Address | [0x01fcdEedbA59bc68b0914D92277678dAB6827e2c](https://hekla.taikoscan.io/address/0x01fcdEedbA59bc68b0914D92277678dAB6827e2c "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Treasure](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#treasure)
### [Treasure Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#treasure-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `61166` |
| Address | [0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A](https://treasurescan.io/address/0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A "0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A") |
| Name | Chainlink Token on Treasure Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Treasure Topaz Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#treasure-topaz-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `978658` |
| Address | [0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5](https://topaz.treasurescan.io/address/0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5 "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5") |
| Name | Chainlink Token on Treasure Topaz Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Unichain](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#unichain)
### [Unichain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#unichain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `130` |
| Address | [0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A](https://uniscan.xyz//address/0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A") |
| Name | Chainlink Token on Unichain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Unichain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#unichain-sepolia-testnet)
Testnet Native and LINK are available at [faucets.chain.link/unichain-testnet](https://faucets.chain.link/unichain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1301` |
| Address | [0xda40816f278Cd049c137F6612822D181065EBfB4](https://sepolia.uniscan.xyz/address/0xda40816f278Cd049c137F6612822D181065EBfB4 "0xda40816f278Cd049c137F6612822D181065EBfB4") |
| Name | Chainlink Token on Unichain Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Wemix](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#wemix)
### [Wemix Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#wemix-mainnet)
WEMIX is used to pay for transactions on the Wemix mainnet. To transfer LINK from Ethereum to Wemix, use [Transporter](https://app.transporter.io/).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1111` |
| Address | [0x80f1FcdC96B55e459BF52b998aBBE2c364935d69](https://wemixscan.com/address/0x80f1FcdC96B55e459BF52b998aBBE2c364935d69 "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69") |
| Name | Chainlink Token on Wemix Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Wemix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#wemix-testnet)
Testnet WEMIX is used to pay for transactions on the Wemix testnet.
Testnet Native and LINK are available at [faucets.chain.link/wemix-testnet](https://faucets.chain.link/wemix-testnet). Testnet WEMIX is also available from the [WEMIX Faucet](https://wallet.test.wemix.com/faucet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1112` |
| Address | [0x3580c7A817cCD41f7e02143BFa411D4EeAE78093](https://testnet.wemixscan.com/address/0x3580c7A817cCD41f7e02143BFa411D4EeAE78093 "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093") |
| Name | Chainlink Token on Wemix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [World](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#world)
### [World Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#world-chain-mainnet)
ETH is used to pay for transactions on World Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `480` |
| Address | [0x915b648e994d5f31059B38223b9fbe98ae185473](https://worldscan.org/address/0x915b648e994d5f31059B38223b9fbe98ae185473 "0x915b648e994d5f31059B38223b9fbe98ae185473") |
| Name | Chainlink Token on World Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain/) |
### [World Chain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#world-chain-sepolia-testnet)
Testnet ETH is used to pay for transactions on World Chain Sepolia. Testnet Native and LINK are available at [faucets.chain.link/worldchain-testnet](https://faucets.chain.link/worldchain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `486` |
| Address | [0xC82Ea35634BcE95C394B6BC00626f827bB0F4801](https://sepolia.worldscan.org/address/0xC82Ea35634BcE95C394B6BC00626f827bB0F4801 "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801") |
| Name | Chainlink Token on World Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain) |
## [X Layer](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#x-layer)
### [X Layer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#x-layer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `196` |
| Address | [0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9](https://www.oklink.com/xlayer/address/0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9 "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9") |
| Name | Chainlink Token on X Layer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [X Layer Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#x-layer-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `195` |
| Address | [0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55](https://www.oklink.com/xlayer-test/address/0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55 "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55") |
| Name | Chainlink Token on X Layer Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Zircuit](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zircuit)
### [Zircuit Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zircuit-mainnet)
ETH is used to pay for transactions on the Zircuit mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48900` |
| Address | [0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a](https://explorer.zircuit.com/address/0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a") |
| Name | Chainlink Token on Zircuit Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Zircuit Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zircuit-testnet)
Testnet ETH is used to pay for transactions on the Zircuit testnet.
Testnet Native and LINK are available at [faucets.chain.link/zircuit-sepolia](https://faucets.chain.link/zircuit-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48899` |
| Address | [0xDEE94506570cA186BC1e3516fCf4fd719C312cCD](https://explorer.testnet.zircuit.com/address/0xDEE94506570cA186BC1e3516fCf4fd719C312cCD "0xDEE94506570cA186BC1e3516fCf4fd719C312cCD") |
| Name | Chainlink Token on Zircuit Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [ZKsync](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zksync)
### [ZKsync Era Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zksync-era-mainnet)
ETH is used to pay for transactions on ZKsync Era Mainnet. Use the recommended [ZKsync Bridges](https://zksync.io/explore#bridges) to transfer ETH from Ethereum to ZKsync.
| Parameter | Value |
| --- | --- |
| Chain ID | `324` |
| Address | [0x52869bae3E091e36b0915941577F2D47d8d8B534](https://explorer.zksync.io/address/0x52869bae3E091e36b0915941577F2D47d8d8B534 "0x52869bae3E091e36b0915941577F2D47d8d8B534") |
| Name | Chainlink Token on ZKsync Era Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.zksync.io](https://explorer.zksync.io/) |
### [ZKsync Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zksync-sepolia-testnet)
Testnet ETH is used to pay for transactions on ZKsync Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/zksync-sepolia](https://faucets.chain.link/zksync-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `300` |
| Address | [0x23A1aFD896c8c8876AF46aDc38521f4432658d1e](https://sepolia.explorer.zksync.io/address/0x23A1aFD896c8c8876AF46aDc38521f4432658d1e "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e") |
| Name | Chainlink Token on ZKsync Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [uptime.com/statuspage/zkSync](https://uptime.com/statuspage/zkSync) |
## [Zora](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zora)
### [Zora Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zora-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `7777777` |
| Address | [0x3662B6f73c5560229D1a98aF6e59E6649D568374](https://explorer.zora.energy/address/0x3662B6f73c5560229D1a98aF6e59E6649D568374 "0x3662B6f73c5560229D1a98aF6e59E6649D568374") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Zora Testnet](https://docs.chain.link/resources/link-token-contracts?parent=chainlinkFunctions\#zora-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999999999` |
| Address | [0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e](https://sepolia.explorer.zora.energy/address/0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## Get the latest Chainlink content straight to your inbox.
Email Address
[iframe](https://td.doubleclick.net/td/rul/346357746?random=1748840470806&cv=11&fst=1748840470806&fmt=3&bg=ffffff&guid=ON&async=1&gcl_ctr=1>m=45be55s2v891173849z8847174275za200zb847174275&gcd=13l3l3l3l1l1&dma=0&tag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&ptag_exp=101509157~103116026~103200004~103211513~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&u_w=1280&u_h=1024&url=https%3A%2F%2Fdocs.chain.link%2Fresources%2Flink-token-contracts%3Fparent%3DchainlinkFunctions&_ng=1&label=_duuCKn_k4cYEPL_k6UB&hn=www.googleadservices.com&frm=0&tiba=LINK%20Token%20Contracts%20%7C%20Chainlink%20Documentation&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=1343382440.1748840469&uaa=x86&uab=64&uafvl=Google%2520Chrome%3B137.0.7151.55%7CChromium%3B137.0.7151.55%7CNot%252FA)Brand%3B24.0.0.0&uamb=0&uam=&uap=Linux%20x86_64&uapv=6.6.72&uaw=0&ec_mode=a&fledge=1&capi=1&_tu=Cg&em=tv.1&ct_cookie_present=0)
## LINK Token Contracts
[iframe](https://www.googletagmanager.com/ns.html?id=GTM-N6DQ47T)
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [LINK Token Contracts](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#overview)
* * *
LINK tokens are used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators. The smallest denomination of LINK is called a Juel, and 1,000,000,000,000,000,000 (1e18) Juels are equal to 1 LINK. This is similar to Wei, which is the [smallest denomination of ETH](https://ethereum.org/en/developers/docs/intro-to-ether/#denominations).
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 services on a given blockchain, it is necessary to use LINK tokens. You can transfer tokens across blockchains by using [Chainlink CCIP](https://docs.chain.link/ccip/tutorials/evm/transfer-tokens-from-contract) or applications such as [Transporter](https://app.transporter.io/) and [XSwap](https://xswap.link/).
## [Abstract](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#abstract)
### [Abstract Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#abstract-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2741` |
| Address | [0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd](https://abscan.org/address/0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Abstract Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#abstract-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `11124` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia.abscan.org/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Apechain](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#apechain)
### [Apechain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#apechain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33139` |
| Address | [0xf575731b78981B86d34321d875A3D25a48479be6](https://apescan.io/address/0xf575731b78981B86d34321d875A3D25a48479be6 "0xf575731b78981B86d34321d875A3D25a48479be6") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Apechain Curtis Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#apechain-curtis-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33111` |
| Address | [0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E](https://explorer.curtis.apechain.com/address/0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E") |
| Name | Chainlink Token on Apechain Curtis Testnet |
| Symbol | LINK |
## [Arbitrum](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#arbitrum)
### [Arbitrum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#arbitrum-mainnet)
ETH is used to pay for transactions on the Arbitrum Mainnet.
You can use the [Arbitrum Bridge](https://bridge.arbitrum.io/) to transfer ETH and LINK from Ethereum Mainnet to Arbitrum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `42161` |
| Address | [0xf97f4df75117a78c1A5a0DBb814Af92458539FB4](https://explorer.arbitrum.io/address/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4 "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4") |
| Name | Chainlink Token on Arbitrum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
### [Arbitrum Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#arbitrum-sepolia-testnet)
Testnet ETH is used to pay for transactions on Arbitrum Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/arbitrum-sepolia](https://faucets.chain.link/arbitrum-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `421614` |
| Address | [0xb1D4538B4571d411F07960EF2838Ce337FE1E80E](https://sepolia.arbiscan.io/address/0xb1D4538B4571d411F07960EF2838Ce337FE1E80E "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E") |
| Name | Chainlink Token on Arbitrum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
## [Astar](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#astar)
### [Astar Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#astar-mainnet)
ASTR is used to pay for transactions on Astar Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `592` |
| Address | [0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d](https://astar.blockscout.com/address/0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d") |
| Name | ChainLink Token on Astar Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/astar/dashboard](https://portal.astar.network/astar/dashboard) |
### [Astar Shibuya](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#astar-shibuya)
SBY is used to pay for transactions on Astar Shibuya. Testnet SBY is available at [Astar Shibuya Faucet](https://docs.astar.network/docs/build/environment/faucet/).
Testnet LINK is available at [faucets.chain.link/astar-shibuya](https://faucets.chain.link/astar-shibuya).
| Parameter | Value |
| --- | --- |
| Chain ID | `81` |
| Address | [0xe74037112db8807B3B4B3895F5790e5bc1866a29](https://shibuya.blockscout.com/address/0xe74037112db8807B3B4B3895F5790e5bc1866a29 "0xe74037112db8807B3B4B3895F5790e5bc1866a29") |
| Name | ChainLink Token on Astar Shibuya |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/shibuya-testnet/dashboard](https://portal.astar.network/shibuya-testnet/dashboard) |
## [Avalanche](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#avalanche)
### [Avalanche Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#avalanche-mainnet)
AVAX is used to pay for transactions on Avalanche Mainnet. Use the [Avalanche Bridge](https://bridge.avax.network/) to transfer LINK from Ethereum Mainnet to Avalanche.
| Parameter | Value |
| --- | --- |
| Chain ID | `43114` |
| Address | [0x5947BB275c521040051D82396192181b413227A3](https://snowtrace.io/address/0x5947BB275c521040051D82396192181b413227A3 "0x5947BB275c521040051D82396192181b413227A3") |
| Name | Chainlink Token on Avalanche Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
### [Avalanche Fuji Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#avalanche-fuji-testnet)
Testnet AVAX is used to pay for transactions on Avalanche Fuji.
Testnet AVAX and LINK are available at [faucets.chain.link/fuji](https://faucets.chain.link/fuji). Testnet AVAX is also available at [core.app/tools/testnet-faucet](https://core.app/tools/testnet-faucet/).
| Parameter | Value |
| --- | --- |
| Chain ID | `43113` |
| Address | [0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846](https://testnet.snowtrace.io/address/0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846 "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846") |
| Name | Chainlink Token on Avalanche Fuji Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
## [BASE](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#base)
### [BASE Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#base-mainnet)
ETH is used to pay for transactions on BASE. You can use the [BASE Bridge](https://bridge.base.org/deposit) to transfer ETH from Ethereum Mainnet to BASE Mainnet. To transfer LINK from Ethereum to Base, use [Transporter](https://app.transporter.io/) or [XSwap Bridge](https://xswap.link/bridge).
| Parameter | Value |
| --- | --- |
| Chain ID | `8453` |
| Address | [0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196](https://basescan.org/address/0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196 "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196") |
| Name | Chainlink Token on BASE Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [basescan.org](https://basescan.org/) |
### [BASE Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#base-sepolia-testnet)
Testnet ETH is used to pay for transactions on BASE Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/base-sepolia](https://faucets.chain.link/base-sepolia). Testnet ETH is also available from one of the [BASE Network Faucets](https://docs.base.org/tools/network-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `84532` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia.basescan.org/address/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on BASE Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.basescan.org](https://sepolia.basescan.org/) |
## [Berachain](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#berachain)
### [Berachain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#berachain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80094` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://berascan.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Berachain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Berachain Bartio Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#berachain-bartio-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80084` |
| Address | [0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271](https://bartio.beratrail.io/address/0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271 "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271") |
| Name | ChainLink Token on Berachain Bartio Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bitlayer](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bitlayer)
### [Bitlayer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bitlayer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `200901` |
| Address | [0x56B275c0Ec034a229a1deD8DB17089544bc276D9](https://www.btrscan.com/address/0x56B275c0Ec034a229a1deD8DB17089544bc276D9 "0x56B275c0Ec034a229a1deD8DB17089544bc276D9") |
| Name | Chainlink Token on Bitlayer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
### [Bitlayer Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bitlayer-testnet)
Testnet LINK are available at [faucets.chain.link/bitlayer-testnet](https://faucets.chain.link/bitlayer-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `200810` |
| Address | [0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48](https://testnet.btrscan.com/address/0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48 "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48") |
| Name | Chainlink Token on Bitlayer Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
## [Blast](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#blast)
### [Blast Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#blast-mainnet)
ETH is used to pay for transactions on Blast. You can use the [Blast Bridge](https://blast.io/en/bridge) to transfer ETH from Ethereum Mainnet to Blast Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `81457` |
| Address | [0x93202eC683288a9EA75BB829c6baCFb2BfeA9013](https://blastscan.io/address/0x93202eC683288a9EA75BB829c6baCFb2BfeA9013 "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013") |
| Name | Chainlink Token on Blast Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [blastscan.io](https://blastscan.io/) |
### [Blast Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#blast-sepolia-testnet)
Testnet ETH is used to pay for transactions on Blast Sepolia. Testnet ETH is available from one of the [Blast Network Faucets](https://docs.blast.io/tools/faucets). Testnet ETH and LINK are also available at [faucets.chain.link/blast-sepolia](https://faucets.chain.link/blast-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `168587773` |
| Address | [0x02c359ebf98fc8BF793F970F9B8302bb373BdF32](https://sepolia.blastscan.io/address/0x02c359ebf98fc8BF793F970F9B8302bb373BdF32 "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32") |
| Name | Chainlink Token on Blast Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.blastscan.io](https://sepolia.blastscan.io/) |
## [BNB Chain](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bnb-chain)
### [BNB Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bnb-chain-mainnet)
BNB is used to pay for transactions on the BNB Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `56` |
| Address | [0x404460C6A5EdE2D891e8297795264fDe62ADBB75](https://bscscan.com/token/0x404460C6A5EdE2D891e8297795264fDe62ADBB75 "0x404460C6A5EdE2D891e8297795264fDe62ADBB75") |
| Name | Chainlink Token on BNB Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
### [BNB Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bnb-chain-testnet)
Testnet BNB is used to pay for transactions on the BNB Chain testnet. Testnet BNB is available at [testnet.bnbchain.org/faucet-smart](https://testnet.bnbchain.org/faucet-smart).
Testnet Native and LINK is available at [faucets.chain.link/bnb-chain-testnet](https://faucets.chain.link/bnb-chain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `97` |
| Address | [0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06](https://testnet.bscscan.com/address/0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06 "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06") |
| Name | Chainlink Token on BNB Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
## [Bob](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bob)
### [Bob Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bob-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `60808` |
| Address | [0x5aB885CDa7216b163fb6F813DEC1E1532516c833](https://explorer.gobob.xyz/address/0x5aB885CDa7216b163fb6F813DEC1E1532516c833 "0x5aB885CDa7216b163fb6F813DEC1E1532516c833") |
| Name | Chainlink Token on Bob Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
### [Bob Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bob-sepolia-testnet)
Testnet ETH and LINK are available at [faucets.chain.link/bob-testnet](https://faucets.chain.link/bob-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `808813` |
| Address | [0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183](https://bob-sepolia.explorer.gobob.xyz/address/0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183 "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183") |
| Name | Chainlink Token on Bob Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
## [Botanix](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#botanix)
### [Botanix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#botanix-testnet)
Testnet Native and LINK are available at [faucets.chain.link/botanix-testnet](https://faucets.chain.link/botanix-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `3636` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://testnet.botanixscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Botanix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bsquared](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bsquared)
### [Bsquared Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bsquared-mainnet)
BTC is used to pay for transactions on Bsquared Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `223` |
| Address | [0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39](https://explorer.bsquared.network/address/0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39 "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39") |
| Name | Chainlink Token on Bsquared Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.bsquared.network](https://explorer.bsquared.network/) |
### [Bsquared Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#bsquared-testnet)
Testnet BTC is used to pay for transactions on Bsquared Testnet.
Testnet BTC and LINK are available at [faucets.chain.link/bsquared-testnet](https://faucet.chain.link/bsquared-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1123` |
| Address | [0x436a1907D9e6a65E6db73015F08f9C66F6B63E45](https://testnet-explorer.bsquared.network/address/0x436a1907D9e6a65E6db73015F08f9C66F6B63E45 "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45") |
| Name | Chainlink Token on Bsquared Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [testnet-explorer.bsquared.network](https://testnet-explorer.bsquared.network/) |
## [Celo](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#celo)
### [Celo Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#celo-mainnet)
CELO is used to pay for transactions on the Celo network.
| Parameter | Value |
| --- | --- |
| Chain ID | `42220` |
| Address | [0xd07294e6E917e07dfDcee882dd1e2565085C2ae0](https://explorer.celo.org/mainnet/address/0xd07294e6E917e07dfDcee882dd1e2565085C2ae0 "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0") |
| Name | Chainlink Token on Celo Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org](https://explorer.celo.org/) |
### [Celo Alfajores Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#celo-alfajores-testnet)
Testnet CELO is used to pay for transactions on Celo Alfajores. Testnet CELO is available from the [Alfajores Token Faucet](https://faucet.celo.org/alfajores).
Testnet Native and LINK is available at [faucets.chain.link/celo-alfajores-testnet](https://faucets.chain.link/celo-alfajores-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `44787` |
| Address | [0x32E08557B14FaD8908025619797221281D439071](https://explorer.celo.org/alfajores/address/0x32E08557B14FaD8908025619797221281D439071 "0x32E08557B14FaD8908025619797221281D439071") |
| Name | Chainlink Token on Celo Alfajores Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org/alfajores](https://explorer.celo.org/alfajores/) |
## [Core](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#core)
### [Core Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#core-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1116` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://scan.coredao.org/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Core Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Corn](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#corn)
### [Corn Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#corn-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `21000000` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://cornscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Corn Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Corn Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#corn-testnet)
Testnet Native and LINK is available at [faucets.chain.link/corn-testnet](https://faucets.chain.link/corn-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `21000001` |
| Address | [0x996EfAb6011896Be832969D91E9bc1b3983cfdA1](https://testnet.cornscan.io/address/0x996EfAb6011896Be832969D91E9bc1b3983cfdA1 "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1") |
| Name | Chainlink Token on Corn Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#cronos)
### [Cronos Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#cronos-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `25` |
| Address | [0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85](https://explorer.cronos.org/address/0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85 "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#cronos-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `338` |
| Address | [0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262](https://explorer.cronos.org/testnet/address/0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262 "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262") |
| Name | Chainlink Token on Cronos Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#cronos-zkevm)
### [Cronos zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#cronos-zkevm-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `388` |
| Address | [0x61170ca9fB9cF98d4c7d684e07be6D969D59667E](https://explorer.zkevm.cronos.org/address/0x61170ca9fB9cF98d4c7d684e07be6D969D59667E "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E") |
| Name | Chainlink Token on Cronos zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos zkEVM Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#cronos-zkevm-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `240` |
| Address | [0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827](https://explorer.zkevm.cronos.org/testnet/address/0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827 "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827") |
| Name | Chainlink Token on Cronos zkEVM Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ethereum](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ethereum)
### [Ethereum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ethereum-mainnet)
ETH is used to pay for transactions on Ethereum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1` |
| Address | [0x514910771AF9Ca656af840dff83E8264EcF986CA](https://etherscan.io/token/0x514910771AF9Ca656af840dff83E8264EcF986CA "0x514910771AF9Ca656af840dff83E8264EcF986CA") |
| Name | Chainlink Token on Ethereum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ethstats.dev](https://ethstats.dev/) |
### [Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#sepolia-testnet)
Testnet ETH is used to pay for transactions on Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `11155111` |
| Address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789 "0x779877A7B0D9E8603169DdbD7836e478b4624789") |
| Name | Chainlink Token on Ethereum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
### [Ethereum Holesky Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ethereum-holesky-testnet)
Testnet ETH is used to pay for transactions on Holesky.
Testnet ETH and LINK are available at [faucets.chain.link/holesky](https://faucets.chain.link/holesky).
| Parameter | Value |
| --- | --- |
| Chain ID | `17000` |
| Address | [0x685cE6742351ae9b618F383883D6d1e0c5A31B4B](https://holesky.etherscan.io/token/0x685cE6742351ae9b618F383883D6d1e0c5A31B4B "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B") |
| Name | Chainlink Token on Ethereum Holesky Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
## [Etherlink](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#etherlink)
### [Etherlink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#etherlink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `42793` |
| Address | [0x8ce7618E8f8E514d13889283F58FF03B794e6CC3](https://explorer.etherlink.com/address/0x8ce7618E8f8E514d13889283F58FF03B794e6CC3 "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3") |
| Name | Chainlink Token on Etherlink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Etherlink Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#etherlink-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `128123` |
| Address | [0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950](https://testnet.explorer.etherlink.com/address/0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950 "0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950") |
| Name | Chainlink Token on Etherlink Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Fantom](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#fantom)
### [Fantom Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#fantom-mainnet)
FTM is used to pay for transactions on Fantom Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `250` |
| Address | [0x6F43FF82CCA38001B6699a8AC47A2d0E66939407](https://ftmscan.com/address/0x6F43FF82CCA38001B6699a8AC47A2d0E66939407 "0x6F43FF82CCA38001B6699a8AC47A2d0E66939407") |
| Name | Chainlink Token on Fantom Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
### [Fantom Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#fantom-testnet)
Testnet FTM is used to pay for transactions on Fantom testnet. Testnet FTM is available at [faucet.fantom.network](https://faucet.fantom.network/).
Testnet LINK is available at [faucets.chain.link/fantom-testnet](https://faucets.chain.link/fantom-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `4002` |
| Address | [0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F](https://testnet.ftmscan.com/address/0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F "0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F") |
| Name | Chainlink Token on Fantom Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
## [Fraxtal](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#fraxtal)
### [Fraxtal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#fraxtal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `252` |
| Address | [0xd6A6ba37fAaC229B9665E86739ca501401f5a940](https://fraxscan.com/address/0xd6A6ba37fAaC229B9665E86739ca501401f5a940 "0xd6A6ba37fAaC229B9665E86739ca501401f5a940") |
| Name | Chainlink Token on Fraxtal Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Fraxtal Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#fraxtal-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2522` |
| Address | [0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF](https://holesky.fraxscan.com/address/0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF") |
| Name | Chainlink Token on Fraxtal Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Gnosis Chain (xDai)](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#gnosis-chain-xdai)
### [Gnosis Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#gnosis-chain-mainnet)
xDAI is used to pay for transactions on Gnosis Chain Mainnet. Use the [xDai Bridge](https://bridge.gnosischain.com/) to send DAI from Ethereum Mainnet to Gnosis Chain and convert it to xDAI. Use [OmniBridge](https://omni.gnosischain.com/bridge) to send LINK from Ethereum Mainnet to Gnosis Chain.
| Parameter | Value |
| --- | --- |
| Chain ID | `100` |
| Address | [0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2](https://gnosisscan.io/address/0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2 "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2") |
| Name | Chainlink Token on Gnosis Chain (xDai) Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
### [Gnosis Chiado Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#gnosis-chiado-testnet)
xDAI is used to pay for transactions on Gnosis Chiado testnet. Use the [Chiado faucet](https://faucet.chiadochain.net/) to get testnet xDAI.
Testnet Native and LINK is available at [faucets.chain.link/gnosis-chiado-testnet](https://faucets.chain.link/gnosis-chiado-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `10200` |
| Address | [0xDCA67FD8324990792C0bfaE95903B8A64097754F](https://gnosis-chiado.blockscout.com/address/0xDCA67FD8324990792C0bfaE95903B8A64097754F "0xDCA67FD8324990792C0bfaE95903B8A64097754F") |
| Name | Chainlink Token on Gnosis Chiado Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
## [HashKey](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hashkey)
### [HashKey Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hashkey-chain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `177` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://hashkey.blockscout.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on HashKey Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [HashKey Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hashkey-chain-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `133` |
| Address | [0x8418c4d7e8e17ab90232DC72150730E6c4b84F57](https://hashkeychain-testnet-explorer.alt.technology/address/0x8418c4d7e8e17ab90232DC72150730E6c4b84F57 "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57") |
| Name | Chainlink Token on HashKey Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hedera](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hedera)
### [Hedera Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hedera-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98](https://hashscan.io/mainnet/contract/0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98 "0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hedera Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hedera-testnet)
Testnet HBAR is used to pay for transactions on the Hedera testnet.
Testnet Native and LINK is available at [faucets.chain.link/hedera-testnet](https://faucets.chain.link/hedera-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6](https://hashscan.io/testnet/contract/0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6 "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6") |
| Name | Chainlink Token on Hedera Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hemi](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hemi)
### [Hemi Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hemi-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `43111` |
| Address | [0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8](https://explorer.hemi.xyz/address/0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8 "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hemi Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hemi-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `743111` |
| Address | [0x5246409a2e09134824c4E709602205B176491e57](https://testnet.explorer.hemi.xyz/address/0x5246409a2e09134824c4E709602205B176491e57 "0x5246409a2e09134824c4E709602205B176491e57") |
| Name | Chainlink Token on Hemi Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hyperliquid](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hyperliquid)
### [Hyperliquid Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#hyperliquid-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999` |
| Address | [0x1AC2EE68b8d038C982C1E1f73F596927dd70De59](https://app.hyperliquid.xyz/explorer/address/0x1AC2EE68b8d038C982C1E1f73F596927dd70De59 "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59") |
| Name | Chainlink Token on Hemi Mainnet Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ink](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ink)
### [Ink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `57073` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.inkonchain.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Ink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Ink Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ink-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `763373` |
| Address | [0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4](https://explorer-sepolia.inkonchain.com/address/0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4 "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4") |
| Name | Chainlink Token on Ink Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Kroma](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#kroma)
### [Kroma Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#kroma-mainnet)
ETH is used to pay for transactions on the Kroma mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `255` |
| Address | [0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450](https://kromascan.xyz/address/0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450 "0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450") |
| Name | Chainlink Token on Kroma Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Kroma Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#kroma-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Kroma testnet.
Testnet Native and LINK are available at [faucets.chain.link/kroma-testnet](https://faucets.chain.link/kroma-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2358` |
| Address | [0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8](https://testnet.kromascan.xyz/address/0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8 "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8") |
| Name | Chainlink Token on Kroma Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Lens](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#lens)
### [Lens Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#lens-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `232` |
| Address | [0x6e970e8d6758164798290c8db1D79a527ca6e1B2](https://explorer.lens.xyz/address/0x6e970e8d6758164798290c8db1D79a527ca6e1B2 "0x6e970e8d6758164798290c8db1D79a527ca6e1B2") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lens Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#lens-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `37111` |
| Address | [0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36](https://block-explorer.testnet.lens.dev/address/0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36 "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36") |
| Name | Chainlink Token on Lens Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Linea](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#linea)
### [Linea Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#linea-mainnet)
ETH is used to pay for transactions on Linea Mainnet. Use the [Linea Bridge](https://bridge.linea.build/) to transfer ETH from Ethereum to Linea.
| Parameter | Value |
| --- | --- |
| Chain ID | `59144` |
| Address | [0xa18152629128738a5c081eb226335FEd4B9C95e9](https://lineascan.build/address/0xa18152629128738a5c081eb226335FEd4B9C95e9 "0xa18152629128738a5c081eb226335FEd4B9C95e9") |
| Name | Chainlink Token on Linea Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
### [Linea Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#linea-sepolia-testnet)
Testnet ETH is used to pay for transactions on Linea Sepolia. Testnet Native and LINK are available at [faucets.chain.link/linea-sepolia](https://faucets.chain.link/linea-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59141` |
| Address | [0xF64E6E064a71B45514691D397ad4204972cD6508](https://sepolia.lineascan.build/address/0xF64E6E064a71B45514691D397ad4204972cD6508 "0xF64E6E064a71B45514691D397ad4204972cD6508") |
| Name | Chainlink Token on Linea Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
## [Lisk](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#lisk)
### [Lisk Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#lisk-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1135` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://blockscout.lisk.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lisk Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#lisk-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4202` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia-blockscout.lisk.com/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mantle](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mantle)
### [Mantle Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mantle-mainnet)
MNT is used to pay for transactions on the Mantle mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5000` |
| Address | [0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043](https://mantlescan.xyz/address/0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043 "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043") |
| Name | ChainLink Token on Mantle Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mantle Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mantle-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mantle Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/mantle-sepolia](https://faucets.chain.link/mantle-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5003` |
| Address | [0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04](https://sepolia.mantlescan.xyz/address/0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04 "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04") |
| Name | ChainLink Token on Mantle Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [MegaEth](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#megaeth)
### [MegaEth Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#megaeth-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `6342` |
| Address | [0x4d03398C2588D92B220578dAEde29814E41c8033](https://megaexplorer.xyz/address/0x4d03398C2588D92B220578dAEde29814E41c8033 "0x4d03398C2588D92B220578dAEde29814E41c8033") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Merlin](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#merlin)
### [Merlin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#merlin-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4200` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://scan.merlinchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Merlin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Merlin Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#merlin-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `686868` |
| Address | [0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50](https://testnet-scan.merlinchain.io//address/0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50 "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50") |
| Name | Chainlink Token on Merlin Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Metal](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#metal)
### [Metal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#metal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1750` |
| Address | [0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C](https://explorer.metall2.com/address/0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Metal L2 Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#metal-l2-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1740` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://testnet.explorer.metall2.com/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Metis](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#metis)
### [Metis Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#metis-mainnet)
METIS is used to pay for transactions on Metis Mainnet. You can use the [Metis Bridge](https://bridge.metis.io/) to transfer METIS from Ethereum Mainnet to Metis Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1088` |
| Address | [0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353](https://explorer.metis.io/address/0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353 "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353") |
| Name | Chainlink Token on Metis Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.metis.io](https://explorer.metis.io/) |
### [Metis Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#metis-sepolia-testnet)
Testnet METIS is used to pay for transactions on Metis Sepolia.
Testnet METIS and LINK are available at [faucets.chain.link/metis-sepolia](https://faucets.chain.link/metis-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59902` |
| Address | [0x9870D6a0e05F867EAAe696e106741843F7fD116D](https://sepolia-explorer.metisdevops.link/address/0x9870D6a0e05F867EAAe696e106741843F7fD116D "0x9870D6a0e05F867EAAe696e106741843F7fD116D") |
| Name | Chainlink Token on Metis Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia-explorer.metisdevops.link](https://sepolia-explorer.metisdevops.link/) |
## [Mind Network](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mind-network)
### [Mind Network Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mind-network-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `228` |
| Address | [0xd8A9246e84903e82CA01e42774b01A7CdD465BFa](https://explorer.mindnetwork.xyz/address/0xd8A9246e84903e82CA01e42774b01A7CdD465BFa "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mind Network Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mind-network-testnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `192940` |
| Address | [0xE0352dEd874c3E72d922CE533E136385fBE4a9B4](https://explorer-testnet.mindnetwork.xyz/address/0xE0352dEd874c3E72d922CE533E136385fBE4a9B4 "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mint](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mint)
### [Mint Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mint-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `185` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.mintchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mint Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mint-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1687` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://sepolia-testnet-explorer.mintchain.io/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mode](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mode)
### [Mode Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mode-mainnet)
ETH is used to pay for transactions on the Mode mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `34443` |
| Address | [0x183E3691EfF3524B2315D3703D94F922CbE51F54](https://explorer.mode.network/address/0x183E3691EfF3524B2315D3703D94F922CbE51F54 "0x183E3691EfF3524B2315D3703D94F922CbE51F54") |
| Name | Chainlink Token on Mode Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mode Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#mode-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mode testnet.
Testnet ETH and LINK are available at [faucets.chain.link/mode-sepolia](https://faucets.chain.link/mode-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `919` |
| Address | [0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d](https://sepolia.explorer.mode.network/address/0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d") |
| Name | Chainlink Token on Mode Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Monad](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#monad)
### [Monad Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#monad-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `10143` |
| Address | [0x6fE981Dbd557f81ff66836af0932cba535Cbc343](https://testnet.monadexplorer.com/address/0x6fE981Dbd557f81ff66836af0932cba535Cbc343 "0x6fE981Dbd557f81ff66836af0932cba535Cbc343") |
| Name | Chainlink Token on Monad Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Moonbeam](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#moonbeam)
### [Moonbeam Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#moonbeam-mainnet)
GLMR is used to pay transaction fees on Moonbeam Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1284` |
| Address | [0x012414A392F9FA442a3109f1320c439C45518aC3](https://moonscan.io/address/0x012414A392F9FA442a3109f1320c439C45518aC3 "0x012414A392F9FA442a3109f1320c439C45518aC3") |
| Name | Chainlink Token on Moonbeam Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [Moonriver](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#moonriver)
### [Moonriver Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#moonriver-mainnet)
MOVR is used to pay transaction fees on Moonriver Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1285` |
| Address | [0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e](https://moonriver.moonscan.io/address/0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e "0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e") |
| Name | Chainlink Token on Moonriver Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [OPBNB](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#opbnb)
### [OPBNB Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#opbnb-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `204` |
| Address | [0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA](https://opbnbscan.com/address/0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [OPBNB Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#opbnb-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5611` |
| Address | [0x56E16E648c51609A14Eb14B99BAB771Bee797045](https://opbnb-testnet.bscscan.com/address/0x56E16E648c51609A14Eb14B99BAB771Bee797045 "0x56E16E648c51609A14Eb14B99BAB771Bee797045") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [OP](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#op)
### [OP Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#op-mainnet)
ETH is used to pay for transactions on OP. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer ETH and LINK from Ethereum Mainnet to OP Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `10` |
| Address | [0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6](https://optimistic.etherscan.io/address/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6 "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6") |
| Name | Chainlink Token on OP Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
### [OP Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#op-sepolia-testnet)
Testnet ETH is used to pay for transactions on OP Sepolia. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer testnet ETH from Ethereum Sepolia to OP Sepolia. Testnet ETH is available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
Testnet Native and LINK is available at [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia). Testnet bridges might not transfer the correct type of LINK to OP Sepolia, so it is recommended to use only the LINK acquired from [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia) when developing applications on testnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `11155420` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia-optimism.etherscan.io/token/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on OP Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
## [Plume](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#plume)
### [Plume Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#plume-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98866` |
| Address | [0xb549B375dA0c76f8b3877B9aDfDD28378f087A64](https://phoenix-explorer.plumenetwork.xyz/address/0xb549B375dA0c76f8b3877B9aDfDD28378f087A64 "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Plume Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#plume-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98867` |
| Address | [0xB97e3665AEAF96BDD6b300B2e0C93C662104A068](https://testnet-explorer.plumenetwork.xyz/address/0xB97e3665AEAF96BDD6b300B2e0C93C662104A068 "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
| | |
## [Polygon](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#polygon)
### [Polygon Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#polygon-mainnet)
POL is used to pay for transactions on Polygon. You can use the [Polygon Bridge](https://wallet.polygon.technology/polygon/bridge/) to transfer tokens to Polygon Mainnet and then use [Polygon Gas Swap](https://wallet.polygon.technology/polygon/gas-swap/) to swap supported tokens to POL.
| Parameter | Value |
| --- | --- |
| Chain ID | `137` |
| Address | [0xb0897686c545045aFc77CF20eC7A532E3120E0F1](https://polygonscan.com/address/0xb0897686c545045aFc77CF20eC7A532E3120E0F1 "0xb0897686c545045aFc77CF20eC7A532E3120E0F1") |
| Name | Chainlink Token on Polygon Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
### [Polygon Amoy Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#polygon-amoy-testnet)
Testnet POL is used to pay for transactions on Polygon Amoy.
Testnet POL and LINK are available at [faucets.chain.link/polygon-amoy](https://faucets.chain.link/polygon-amoy).
| Parameter | Value |
| --- | --- |
| Chain ID | `80002` |
| Address | [0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904](https://amoy.polygonscan.com/address/0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904 "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904") |
| Name | Chainlink Token on Polygon Amoy Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
## [Polygon zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#polygon-zkevm)
### [Polygon zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#polygon-zkevm-mainnet)
ETH is used to pay for transactions on Polygon zkEVM. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer ETH and LINK to Polygon zkEVM.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1101` |
| Address | [0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D](https://zkevm.polygonscan.com/address/0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D") |
| Name | Chainlink Token on Polygon zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Polygon zkEVM Cardona Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#polygon-zkevm-cardona-testnet)
Testnet ETH is used to pay for transactions on Polygon zkEVM Cardona testnet. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer testnet ETH to Polygon zkEVM testnet.
Testnet ETH and LINK are available at [faucets.chain.link/polygon-zkevm-cardona](https://faucets.chain.link/polygon-zkevm-cardona).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2442` |
| Address | [0x5576815a38A3706f37bf815b261cCc7cCA77e975](https://cardona-zkevm.polygonscan.com/address/0x5576815a38A3706f37bf815b261cCc7cCA77e975 "0x5576815a38A3706f37bf815b261cCc7cCA77e975") |
| Name | Chainlink Token on Polygon zkEVM Cardona Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ronin](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ronin)
### [Ronin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ronin-mainnet)
RON is used to pay for transactions on Ronin Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `2020` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://app.roninchain.com/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Ronin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://app.roninchain.com/) |
### [Ronin Saigon Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#ronin-saigon-testnet)
Testnet RON is used to pay for transactions on Ronin Saigon.
Testnet Native and LINK are available at [faucets.chain.link/ronin-saigon](https://faucets.chain.link/ronin-saigon).
| Parameter | Value |
| --- | --- |
| Chain ID | `2021` |
| Address | [0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15](https://saigon-app.roninchain.com/address/0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15 "0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15") |
| Name | Chainlink Token on Ronin Saigon Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://saigon-app.roninchain.com/) |
## [Rootstock](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#rootstock)
### [Rootstock Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#rootstock-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `30` |
| Address | [0x938D84942f5D924070A6bb82F8e56a5E2b3098A4](https://explorer.rsk.co/address/0x938D84942f5D924070A6bb82F8e56a5E2b3098A4 "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4") |
| Name | Chainlink Token on Rootstock Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Rootstock Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#rootstock-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `31` |
| Address | [0x39dD98CcCC3a51b2c0007e23517488e363581264](https://explorer.testnet.rsk.co/address/0x39dD98CcCC3a51b2c0007e23517488e363581264 "0x39dD98CcCC3a51b2c0007e23517488e363581264") |
| Name | Chainlink Token on Rootstock Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Scroll](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#scroll)
### [Scroll Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#scroll-mainnet)
ETH is used to pay for transactions on Scroll Mainnet. Use the [Scroll Bridge](https://scroll.io/bridge) to transfer ETH from Ethereum to Scroll.
| Parameter | Value |
| --- | --- |
| Chain ID | `534352` |
| Address | [0x548C6944cba02B9D1C0570102c89de64D258d3Ac](https://scrollscan.com/address/0x548C6944cba02B9D1C0570102c89de64D258d3Ac "0x548C6944cba02B9D1C0570102c89de64D258d3Ac") |
| Name | Chainlink Token on Scroll Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
### [Scroll Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#scroll-sepolia-testnet)
Testnet ETH is used to pay for transactions on Scroll testnet.
Testnet ETH and LINK are available at [faucets.chain.link/scroll-sepolia-testnet](https://faucets.chain.link/scroll-sepolia-testnet). Testnet ETH is also available from the [Scroll Sepolia Faucets](https://docs.scroll.io/en/user-guide/faucet/#scroll-sepolia-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `534351` |
| Address | [0x231d45b53C905c3d6201318156BDC725c9c3B9B1](https://sepolia-blockscout.scroll.io/address/0x231d45b53C905c3d6201318156BDC725c9c3B9B1 "0x231d45b53C905c3d6201318156BDC725c9c3B9B1") |
| Name | Chainlink Token on Scroll Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
## [Sei](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#sei)
### [Sei Network](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#sei-network)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1329` |
| Address | [?chain=pacific-1](https://seitrace.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F/?chain=pacific-1 "?chain=pacific-1") |
| Name | Chainlink Token on Sei Network |
| Symbol | LINK |
| Decimals | 18 |
### [Sei Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#sei-testnet)
Testnet Native and LINK are available at [faucets.chain.link/sei-testnet](https://faucets.chain.link/sei-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1328` |
| Address | [0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2](https://seitrace.com/token/0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2 "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2") |
| Name | Chainlink Token on Sei Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Shibarium](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#shibarium)
### [Shibarium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#shibarium-mainnet)
BONE is used to pay for transactions on Shibarium Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `109` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://www.shibariumscan.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Shibarium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.shibariumscan.io](https://explorer.shibariumscan.io/) |
### [Shibarium Puppynet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#shibarium-puppynet)
Testnet BONE is used to pay for transactions on Shibarium Puppynet.
Testnet Native and LINK are available at [faucets.chain.link/shibarium-puppynet](https://faucet.chain.link/shibarium-puppynet).
| Parameter | Value |
| --- | --- |
| Chain ID | `157` |
| Address | [0x44637eEfD71A090990f89faEC7022fc74B2969aD](https://puppyscan.shib.io/address/0x44637eEfD71A090990f89faEC7022fc74B2969aD "0x44637eEfD71A090990f89faEC7022fc74B2969aD") |
| Name | Chainlink Token on Shibarium Puppynet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [puppyscan.shib.io](https://puppyscan.shib.io/) |
## [Solana](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#solana)
### [Solana Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#solana-mainnet)
SOL is used to pay for transactions on the Solana network.
| Parameter | Value |
| --- | --- |
| Chain ID | `mainnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
| Network status | [status.solana.com/](https://status.solana.com/) |
### [Solana Devnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#solana-devnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `devnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L?cluster=devnet "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
## [Soneium](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#soneium)
### [Soneium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#soneium-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1868` |
| Address | [0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec](https://soneium.blockscout.com/address/0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec") |
| Name | Chainlink Token on Soneium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Soneium Minato Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#soneium-minato-testnet)
Testnet ETH is used to pay for transactions on the Soneium Minato testnet. Testnet Native and LINK are available at [faucets.chain.link/soneium-minato](https://faucets.chain.link/soneium-minato).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1946` |
| Address | [0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2](https://soneium-minato.blockscout.com/address/0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2 "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2") |
| Name | Chainlink Token on Soneium Minato Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Sonic](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#sonic)
### [Sonic Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#sonic-mainnet)
S is used to pay for transactions on Sonic mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `146` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://sonicscan.org/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Sonic Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Sonic Blaze Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#sonic-blaze-testnet)
Testnet S is used to pay for transactions on Sonic Blaze testnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `57054` |
| Address | [0xd8C1eEE32341240A62eC8BC9988320bcC13c8580](https://testnet.sonicscan.org/address/0xd8C1eEE32341240A62eC8BC9988320bcC13c8580 "0xd8C1eEE32341240A62eC8BC9988320bcC13c8580") |
| Name | Chainlink Token on Sonice Blaze Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Starknet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#starknet)
### [Starknet Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#starknet-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `SN_MAIN` |
| Address | [0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9](https://voyager.online/contract/0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9 "0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9") |
| Name | Chainlink Token on Starknet Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Superseed](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#superseed)
### [Superseed Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#superseed-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5330` |
| Address | [0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9](https://explorer.superseed.xyz/address/0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9 "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Superseed Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#superseed-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `53302` |
| Address | [0xA3063eE34d9B4E407DF0E153c9bE679680e3A956](https://sepolia-explorer.superseed.xyz/address/0xA3063eE34d9B4E407DF0E153c9bE679680e3A956 "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Taiko](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#taiko)
### [Taiko Alethia](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#taiko-alethia)
| Parameter | Value |
| --- | --- |
| Chain ID | `167000` |
| Address | [0x917a3964C37993e99a47C779bEb5Db1E9d13804d](https://taikoscan.io/address/0x917a3964C37993e99a47C779bEb5Db1E9d13804d "0x917a3964C37993e99a47C779bEb5Db1E9d13804d") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Taiko Hekla Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#taiko-hekla-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `167009` |
| Address | [0x01fcdEedbA59bc68b0914D92277678dAB6827e2c](https://hekla.taikoscan.io/address/0x01fcdEedbA59bc68b0914D92277678dAB6827e2c "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Treasure](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#treasure)
### [Treasure Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#treasure-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `61166` |
| Address | [0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A](https://treasurescan.io/address/0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A "0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A") |
| Name | Chainlink Token on Treasure Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Treasure Topaz Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#treasure-topaz-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `978658` |
| Address | [0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5](https://topaz.treasurescan.io/address/0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5 "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5") |
| Name | Chainlink Token on Treasure Topaz Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Unichain](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#unichain)
### [Unichain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#unichain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `130` |
| Address | [0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A](https://uniscan.xyz//address/0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A") |
| Name | Chainlink Token on Unichain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Unichain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#unichain-sepolia-testnet)
Testnet Native and LINK are available at [faucets.chain.link/unichain-testnet](https://faucets.chain.link/unichain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1301` |
| Address | [0xda40816f278Cd049c137F6612822D181065EBfB4](https://sepolia.uniscan.xyz/address/0xda40816f278Cd049c137F6612822D181065EBfB4 "0xda40816f278Cd049c137F6612822D181065EBfB4") |
| Name | Chainlink Token on Unichain Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Wemix](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#wemix)
### [Wemix Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#wemix-mainnet)
WEMIX is used to pay for transactions on the Wemix mainnet. To transfer LINK from Ethereum to Wemix, use [Transporter](https://app.transporter.io/).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1111` |
| Address | [0x80f1FcdC96B55e459BF52b998aBBE2c364935d69](https://wemixscan.com/address/0x80f1FcdC96B55e459BF52b998aBBE2c364935d69 "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69") |
| Name | Chainlink Token on Wemix Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Wemix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#wemix-testnet)
Testnet WEMIX is used to pay for transactions on the Wemix testnet.
Testnet Native and LINK are available at [faucets.chain.link/wemix-testnet](https://faucets.chain.link/wemix-testnet). Testnet WEMIX is also available from the [WEMIX Faucet](https://wallet.test.wemix.com/faucet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1112` |
| Address | [0x3580c7A817cCD41f7e02143BFa411D4EeAE78093](https://testnet.wemixscan.com/address/0x3580c7A817cCD41f7e02143BFa411D4EeAE78093 "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093") |
| Name | Chainlink Token on Wemix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [World](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#world)
### [World Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#world-chain-mainnet)
ETH is used to pay for transactions on World Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `480` |
| Address | [0x915b648e994d5f31059B38223b9fbe98ae185473](https://worldscan.org/address/0x915b648e994d5f31059B38223b9fbe98ae185473 "0x915b648e994d5f31059B38223b9fbe98ae185473") |
| Name | Chainlink Token on World Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain/) |
### [World Chain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#world-chain-sepolia-testnet)
Testnet ETH is used to pay for transactions on World Chain Sepolia. Testnet Native and LINK are available at [faucets.chain.link/worldchain-testnet](https://faucets.chain.link/worldchain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `486` |
| Address | [0xC82Ea35634BcE95C394B6BC00626f827bB0F4801](https://sepolia.worldscan.org/address/0xC82Ea35634BcE95C394B6BC00626f827bB0F4801 "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801") |
| Name | Chainlink Token on World Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain) |
## [X Layer](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#x-layer)
### [X Layer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#x-layer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `196` |
| Address | [0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9](https://www.oklink.com/xlayer/address/0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9 "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9") |
| Name | Chainlink Token on X Layer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [X Layer Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#x-layer-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `195` |
| Address | [0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55](https://www.oklink.com/xlayer-test/address/0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55 "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55") |
| Name | Chainlink Token on X Layer Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Zircuit](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zircuit)
### [Zircuit Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zircuit-mainnet)
ETH is used to pay for transactions on the Zircuit mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48900` |
| Address | [0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a](https://explorer.zircuit.com/address/0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a") |
| Name | Chainlink Token on Zircuit Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Zircuit Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zircuit-testnet)
Testnet ETH is used to pay for transactions on the Zircuit testnet.
Testnet Native and LINK are available at [faucets.chain.link/zircuit-sepolia](https://faucets.chain.link/zircuit-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48899` |
| Address | [0xDEE94506570cA186BC1e3516fCf4fd719C312cCD](https://explorer.testnet.zircuit.com/address/0xDEE94506570cA186BC1e3516fCf4fd719C312cCD "0xDEE94506570cA186BC1e3516fCf4fd719C312cCD") |
| Name | Chainlink Token on Zircuit Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [ZKsync](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zksync)
### [ZKsync Era Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zksync-era-mainnet)
ETH is used to pay for transactions on ZKsync Era Mainnet. Use the recommended [ZKsync Bridges](https://zksync.io/explore#bridges) to transfer ETH from Ethereum to ZKsync.
| Parameter | Value |
| --- | --- |
| Chain ID | `324` |
| Address | [0x52869bae3E091e36b0915941577F2D47d8d8B534](https://explorer.zksync.io/address/0x52869bae3E091e36b0915941577F2D47d8d8B534 "0x52869bae3E091e36b0915941577F2D47d8d8B534") |
| Name | Chainlink Token on ZKsync Era Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.zksync.io](https://explorer.zksync.io/) |
### [ZKsync Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zksync-sepolia-testnet)
Testnet ETH is used to pay for transactions on ZKsync Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/zksync-sepolia](https://faucets.chain.link/zksync-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `300` |
| Address | [0x23A1aFD896c8c8876AF46aDc38521f4432658d1e](https://sepolia.explorer.zksync.io/address/0x23A1aFD896c8c8876AF46aDc38521f4432658d1e "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e") |
| Name | Chainlink Token on ZKsync Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [uptime.com/statuspage/zkSync](https://uptime.com/statuspage/zkSync) |
## [Zora](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zora)
### [Zora Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zora-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `7777777` |
| Address | [0x3662B6f73c5560229D1a98aF6e59E6649D568374](https://explorer.zora.energy/address/0x3662B6f73c5560229D1a98aF6e59E6649D568374 "0x3662B6f73c5560229D1a98aF6e59E6649D568374") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Zora Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataStreams\#zora-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999999999` |
| Address | [0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e](https://sepolia.explorer.zora.energy/address/0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## Get the latest Chainlink content straight to your inbox.
Email Address
[iframe](https://td.doubleclick.net/td/rul/346357746?random=1748840470188&cv=11&fst=1748840470188&fmt=3&bg=ffffff&guid=ON&async=1&gcl_ctr=1>m=45be55s2v891173849z8847174275za200zb847174275&gcd=13l3l3l3l1l1&dma=0&tag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351866~103351868~104481633~104481635~104559073~104559075~104612245~104612247&ptag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&u_w=1280&u_h=1024&url=https%3A%2F%2Fdocs.chain.link%2Fresources%2Flink-token-contracts%3Fparent%3DdataStreams&_ng=1&label=_duuCKn_k4cYEPL_k6UB&hn=www.googleadservices.com&frm=0&tiba=LINK%20Token%20Contracts%20%7C%20Chainlink%20Documentation&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=440639023.1748840469&uaa=x86&uab=64&uafvl=Google%2520Chrome%3B137.0.7151.55%7CChromium%3B137.0.7151.55%7CNot%252FA)Brand%3B24.0.0.0&uamb=0&uam=&uap=Linux%20x86_64&uapv=6.6.72&uaw=0&ec_mode=a&fledge=1&capi=1&_tu=Cg&em=tv.1&ct_cookie_present=0)
## LINK Token Contracts
[iframe](https://www.googletagmanager.com/ns.html?id=GTM-N6DQ47T)
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [LINK Token Contracts](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#overview)
* * *
LINK tokens are used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators. The smallest denomination of LINK is called a Juel, and 1,000,000,000,000,000,000 (1e18) Juels are equal to 1 LINK. This is similar to Wei, which is the [smallest denomination of ETH](https://ethereum.org/en/developers/docs/intro-to-ether/#denominations).
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 services on a given blockchain, it is necessary to use LINK tokens. You can transfer tokens across blockchains by using [Chainlink CCIP](https://docs.chain.link/ccip/tutorials/evm/transfer-tokens-from-contract) or applications such as [Transporter](https://app.transporter.io/) and [XSwap](https://xswap.link/).
## [Abstract](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#abstract)
### [Abstract Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#abstract-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2741` |
| Address | [0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd](https://abscan.org/address/0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Abstract Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#abstract-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `11124` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia.abscan.org/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Apechain](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#apechain)
### [Apechain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#apechain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33139` |
| Address | [0xf575731b78981B86d34321d875A3D25a48479be6](https://apescan.io/address/0xf575731b78981B86d34321d875A3D25a48479be6 "0xf575731b78981B86d34321d875A3D25a48479be6") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Apechain Curtis Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#apechain-curtis-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33111` |
| Address | [0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E](https://explorer.curtis.apechain.com/address/0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E") |
| Name | Chainlink Token on Apechain Curtis Testnet |
| Symbol | LINK |
## [Arbitrum](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#arbitrum)
### [Arbitrum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#arbitrum-mainnet)
ETH is used to pay for transactions on the Arbitrum Mainnet.
You can use the [Arbitrum Bridge](https://bridge.arbitrum.io/) to transfer ETH and LINK from Ethereum Mainnet to Arbitrum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `42161` |
| Address | [0xf97f4df75117a78c1A5a0DBb814Af92458539FB4](https://explorer.arbitrum.io/address/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4 "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4") |
| Name | Chainlink Token on Arbitrum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
### [Arbitrum Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#arbitrum-sepolia-testnet)
Testnet ETH is used to pay for transactions on Arbitrum Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/arbitrum-sepolia](https://faucets.chain.link/arbitrum-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `421614` |
| Address | [0xb1D4538B4571d411F07960EF2838Ce337FE1E80E](https://sepolia.arbiscan.io/address/0xb1D4538B4571d411F07960EF2838Ce337FE1E80E "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E") |
| Name | Chainlink Token on Arbitrum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
## [Astar](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#astar)
### [Astar Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#astar-mainnet)
ASTR is used to pay for transactions on Astar Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `592` |
| Address | [0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d](https://astar.blockscout.com/address/0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d") |
| Name | ChainLink Token on Astar Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/astar/dashboard](https://portal.astar.network/astar/dashboard) |
### [Astar Shibuya](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#astar-shibuya)
SBY is used to pay for transactions on Astar Shibuya. Testnet SBY is available at [Astar Shibuya Faucet](https://docs.astar.network/docs/build/environment/faucet/).
Testnet LINK is available at [faucets.chain.link/astar-shibuya](https://faucets.chain.link/astar-shibuya).
| Parameter | Value |
| --- | --- |
| Chain ID | `81` |
| Address | [0xe74037112db8807B3B4B3895F5790e5bc1866a29](https://shibuya.blockscout.com/address/0xe74037112db8807B3B4B3895F5790e5bc1866a29 "0xe74037112db8807B3B4B3895F5790e5bc1866a29") |
| Name | ChainLink Token on Astar Shibuya |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/shibuya-testnet/dashboard](https://portal.astar.network/shibuya-testnet/dashboard) |
## [Avalanche](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#avalanche)
### [Avalanche Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#avalanche-mainnet)
AVAX is used to pay for transactions on Avalanche Mainnet. Use the [Avalanche Bridge](https://bridge.avax.network/) to transfer LINK from Ethereum Mainnet to Avalanche.
| Parameter | Value |
| --- | --- |
| Chain ID | `43114` |
| Address | [0x5947BB275c521040051D82396192181b413227A3](https://snowtrace.io/address/0x5947BB275c521040051D82396192181b413227A3 "0x5947BB275c521040051D82396192181b413227A3") |
| Name | Chainlink Token on Avalanche Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
### [Avalanche Fuji Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#avalanche-fuji-testnet)
Testnet AVAX is used to pay for transactions on Avalanche Fuji.
Testnet AVAX and LINK are available at [faucets.chain.link/fuji](https://faucets.chain.link/fuji). Testnet AVAX is also available at [core.app/tools/testnet-faucet](https://core.app/tools/testnet-faucet/).
| Parameter | Value |
| --- | --- |
| Chain ID | `43113` |
| Address | [0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846](https://testnet.snowtrace.io/address/0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846 "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846") |
| Name | Chainlink Token on Avalanche Fuji Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
## [BASE](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#base)
### [BASE Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#base-mainnet)
ETH is used to pay for transactions on BASE. You can use the [BASE Bridge](https://bridge.base.org/deposit) to transfer ETH from Ethereum Mainnet to BASE Mainnet. To transfer LINK from Ethereum to Base, use [Transporter](https://app.transporter.io/) or [XSwap Bridge](https://xswap.link/bridge).
| Parameter | Value |
| --- | --- |
| Chain ID | `8453` |
| Address | [0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196](https://basescan.org/address/0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196 "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196") |
| Name | Chainlink Token on BASE Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [basescan.org](https://basescan.org/) |
### [BASE Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#base-sepolia-testnet)
Testnet ETH is used to pay for transactions on BASE Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/base-sepolia](https://faucets.chain.link/base-sepolia). Testnet ETH is also available from one of the [BASE Network Faucets](https://docs.base.org/tools/network-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `84532` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia.basescan.org/address/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on BASE Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.basescan.org](https://sepolia.basescan.org/) |
## [Berachain](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#berachain)
### [Berachain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#berachain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80094` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://berascan.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Berachain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Berachain Bartio Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#berachain-bartio-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80084` |
| Address | [0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271](https://bartio.beratrail.io/address/0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271 "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271") |
| Name | ChainLink Token on Berachain Bartio Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bitlayer](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bitlayer)
### [Bitlayer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bitlayer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `200901` |
| Address | [0x56B275c0Ec034a229a1deD8DB17089544bc276D9](https://www.btrscan.com/address/0x56B275c0Ec034a229a1deD8DB17089544bc276D9 "0x56B275c0Ec034a229a1deD8DB17089544bc276D9") |
| Name | Chainlink Token on Bitlayer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
### [Bitlayer Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bitlayer-testnet)
Testnet LINK are available at [faucets.chain.link/bitlayer-testnet](https://faucets.chain.link/bitlayer-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `200810` |
| Address | [0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48](https://testnet.btrscan.com/address/0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48 "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48") |
| Name | Chainlink Token on Bitlayer Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
## [Blast](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#blast)
### [Blast Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#blast-mainnet)
ETH is used to pay for transactions on Blast. You can use the [Blast Bridge](https://blast.io/en/bridge) to transfer ETH from Ethereum Mainnet to Blast Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `81457` |
| Address | [0x93202eC683288a9EA75BB829c6baCFb2BfeA9013](https://blastscan.io/address/0x93202eC683288a9EA75BB829c6baCFb2BfeA9013 "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013") |
| Name | Chainlink Token on Blast Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [blastscan.io](https://blastscan.io/) |
### [Blast Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#blast-sepolia-testnet)
Testnet ETH is used to pay for transactions on Blast Sepolia. Testnet ETH is available from one of the [Blast Network Faucets](https://docs.blast.io/tools/faucets). Testnet ETH and LINK are also available at [faucets.chain.link/blast-sepolia](https://faucets.chain.link/blast-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `168587773` |
| Address | [0x02c359ebf98fc8BF793F970F9B8302bb373BdF32](https://sepolia.blastscan.io/address/0x02c359ebf98fc8BF793F970F9B8302bb373BdF32 "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32") |
| Name | Chainlink Token on Blast Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.blastscan.io](https://sepolia.blastscan.io/) |
## [BNB Chain](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bnb-chain)
### [BNB Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bnb-chain-mainnet)
BNB is used to pay for transactions on the BNB Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `56` |
| Address | [0x404460C6A5EdE2D891e8297795264fDe62ADBB75](https://bscscan.com/token/0x404460C6A5EdE2D891e8297795264fDe62ADBB75 "0x404460C6A5EdE2D891e8297795264fDe62ADBB75") |
| Name | Chainlink Token on BNB Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
### [BNB Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bnb-chain-testnet)
Testnet BNB is used to pay for transactions on the BNB Chain testnet. Testnet BNB is available at [testnet.bnbchain.org/faucet-smart](https://testnet.bnbchain.org/faucet-smart).
Testnet Native and LINK is available at [faucets.chain.link/bnb-chain-testnet](https://faucets.chain.link/bnb-chain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `97` |
| Address | [0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06](https://testnet.bscscan.com/address/0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06 "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06") |
| Name | Chainlink Token on BNB Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
## [Bob](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bob)
### [Bob Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bob-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `60808` |
| Address | [0x5aB885CDa7216b163fb6F813DEC1E1532516c833](https://explorer.gobob.xyz/address/0x5aB885CDa7216b163fb6F813DEC1E1532516c833 "0x5aB885CDa7216b163fb6F813DEC1E1532516c833") |
| Name | Chainlink Token on Bob Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
### [Bob Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bob-sepolia-testnet)
Testnet ETH and LINK are available at [faucets.chain.link/bob-testnet](https://faucets.chain.link/bob-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `808813` |
| Address | [0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183](https://bob-sepolia.explorer.gobob.xyz/address/0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183 "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183") |
| Name | Chainlink Token on Bob Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
## [Botanix](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#botanix)
### [Botanix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#botanix-testnet)
Testnet Native and LINK are available at [faucets.chain.link/botanix-testnet](https://faucets.chain.link/botanix-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `3636` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://testnet.botanixscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Botanix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bsquared](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bsquared)
### [Bsquared Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bsquared-mainnet)
BTC is used to pay for transactions on Bsquared Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `223` |
| Address | [0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39](https://explorer.bsquared.network/address/0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39 "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39") |
| Name | Chainlink Token on Bsquared Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.bsquared.network](https://explorer.bsquared.network/) |
### [Bsquared Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#bsquared-testnet)
Testnet BTC is used to pay for transactions on Bsquared Testnet.
Testnet BTC and LINK are available at [faucets.chain.link/bsquared-testnet](https://faucet.chain.link/bsquared-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1123` |
| Address | [0x436a1907D9e6a65E6db73015F08f9C66F6B63E45](https://testnet-explorer.bsquared.network/address/0x436a1907D9e6a65E6db73015F08f9C66F6B63E45 "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45") |
| Name | Chainlink Token on Bsquared Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [testnet-explorer.bsquared.network](https://testnet-explorer.bsquared.network/) |
## [Celo](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#celo)
### [Celo Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#celo-mainnet)
CELO is used to pay for transactions on the Celo network.
| Parameter | Value |
| --- | --- |
| Chain ID | `42220` |
| Address | [0xd07294e6E917e07dfDcee882dd1e2565085C2ae0](https://explorer.celo.org/mainnet/address/0xd07294e6E917e07dfDcee882dd1e2565085C2ae0 "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0") |
| Name | Chainlink Token on Celo Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org](https://explorer.celo.org/) |
### [Celo Alfajores Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#celo-alfajores-testnet)
Testnet CELO is used to pay for transactions on Celo Alfajores. Testnet CELO is available from the [Alfajores Token Faucet](https://faucet.celo.org/alfajores).
Testnet Native and LINK is available at [faucets.chain.link/celo-alfajores-testnet](https://faucets.chain.link/celo-alfajores-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `44787` |
| Address | [0x32E08557B14FaD8908025619797221281D439071](https://explorer.celo.org/alfajores/address/0x32E08557B14FaD8908025619797221281D439071 "0x32E08557B14FaD8908025619797221281D439071") |
| Name | Chainlink Token on Celo Alfajores Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org/alfajores](https://explorer.celo.org/alfajores/) |
## [Core](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#core)
### [Core Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#core-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1116` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://scan.coredao.org/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Core Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Corn](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#corn)
### [Corn Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#corn-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `21000000` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://cornscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Corn Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Corn Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#corn-testnet)
Testnet Native and LINK is available at [faucets.chain.link/corn-testnet](https://faucets.chain.link/corn-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `21000001` |
| Address | [0x996EfAb6011896Be832969D91E9bc1b3983cfdA1](https://testnet.cornscan.io/address/0x996EfAb6011896Be832969D91E9bc1b3983cfdA1 "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1") |
| Name | Chainlink Token on Corn Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#cronos)
### [Cronos Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#cronos-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `25` |
| Address | [0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85](https://explorer.cronos.org/address/0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85 "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#cronos-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `338` |
| Address | [0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262](https://explorer.cronos.org/testnet/address/0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262 "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262") |
| Name | Chainlink Token on Cronos Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#cronos-zkevm)
### [Cronos zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#cronos-zkevm-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `388` |
| Address | [0x61170ca9fB9cF98d4c7d684e07be6D969D59667E](https://explorer.zkevm.cronos.org/address/0x61170ca9fB9cF98d4c7d684e07be6D969D59667E "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E") |
| Name | Chainlink Token on Cronos zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos zkEVM Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#cronos-zkevm-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `240` |
| Address | [0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827](https://explorer.zkevm.cronos.org/testnet/address/0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827 "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827") |
| Name | Chainlink Token on Cronos zkEVM Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ethereum](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ethereum)
### [Ethereum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ethereum-mainnet)
ETH is used to pay for transactions on Ethereum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1` |
| Address | [0x514910771AF9Ca656af840dff83E8264EcF986CA](https://etherscan.io/token/0x514910771AF9Ca656af840dff83E8264EcF986CA "0x514910771AF9Ca656af840dff83E8264EcF986CA") |
| Name | Chainlink Token on Ethereum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ethstats.dev](https://ethstats.dev/) |
### [Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#sepolia-testnet)
Testnet ETH is used to pay for transactions on Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `11155111` |
| Address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789 "0x779877A7B0D9E8603169DdbD7836e478b4624789") |
| Name | Chainlink Token on Ethereum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
### [Ethereum Holesky Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ethereum-holesky-testnet)
Testnet ETH is used to pay for transactions on Holesky.
Testnet ETH and LINK are available at [faucets.chain.link/holesky](https://faucets.chain.link/holesky).
| Parameter | Value |
| --- | --- |
| Chain ID | `17000` |
| Address | [0x685cE6742351ae9b618F383883D6d1e0c5A31B4B](https://holesky.etherscan.io/token/0x685cE6742351ae9b618F383883D6d1e0c5A31B4B "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B") |
| Name | Chainlink Token on Ethereum Holesky Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
## [Etherlink](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#etherlink)
### [Etherlink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#etherlink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `42793` |
| Address | [0x8ce7618E8f8E514d13889283F58FF03B794e6CC3](https://explorer.etherlink.com/address/0x8ce7618E8f8E514d13889283F58FF03B794e6CC3 "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3") |
| Name | Chainlink Token on Etherlink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Etherlink Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#etherlink-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `128123` |
| Address | [0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950](https://testnet.explorer.etherlink.com/address/0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950 "0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950") |
| Name | Chainlink Token on Etherlink Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Fantom](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#fantom)
### [Fantom Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#fantom-mainnet)
FTM is used to pay for transactions on Fantom Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `250` |
| Address | [0x6F43FF82CCA38001B6699a8AC47A2d0E66939407](https://ftmscan.com/address/0x6F43FF82CCA38001B6699a8AC47A2d0E66939407 "0x6F43FF82CCA38001B6699a8AC47A2d0E66939407") |
| Name | Chainlink Token on Fantom Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
### [Fantom Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#fantom-testnet)
Testnet FTM is used to pay for transactions on Fantom testnet. Testnet FTM is available at [faucet.fantom.network](https://faucet.fantom.network/).
Testnet LINK is available at [faucets.chain.link/fantom-testnet](https://faucets.chain.link/fantom-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `4002` |
| Address | [0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F](https://testnet.ftmscan.com/address/0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F "0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F") |
| Name | Chainlink Token on Fantom Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
## [Fraxtal](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#fraxtal)
### [Fraxtal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#fraxtal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `252` |
| Address | [0xd6A6ba37fAaC229B9665E86739ca501401f5a940](https://fraxscan.com/address/0xd6A6ba37fAaC229B9665E86739ca501401f5a940 "0xd6A6ba37fAaC229B9665E86739ca501401f5a940") |
| Name | Chainlink Token on Fraxtal Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Fraxtal Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#fraxtal-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2522` |
| Address | [0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF](https://holesky.fraxscan.com/address/0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF") |
| Name | Chainlink Token on Fraxtal Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Gnosis Chain (xDai)](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#gnosis-chain-xdai)
### [Gnosis Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#gnosis-chain-mainnet)
xDAI is used to pay for transactions on Gnosis Chain Mainnet. Use the [xDai Bridge](https://bridge.gnosischain.com/) to send DAI from Ethereum Mainnet to Gnosis Chain and convert it to xDAI. Use [OmniBridge](https://omni.gnosischain.com/bridge) to send LINK from Ethereum Mainnet to Gnosis Chain.
| Parameter | Value |
| --- | --- |
| Chain ID | `100` |
| Address | [0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2](https://gnosisscan.io/address/0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2 "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2") |
| Name | Chainlink Token on Gnosis Chain (xDai) Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
### [Gnosis Chiado Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#gnosis-chiado-testnet)
xDAI is used to pay for transactions on Gnosis Chiado testnet. Use the [Chiado faucet](https://faucet.chiadochain.net/) to get testnet xDAI.
Testnet Native and LINK is available at [faucets.chain.link/gnosis-chiado-testnet](https://faucets.chain.link/gnosis-chiado-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `10200` |
| Address | [0xDCA67FD8324990792C0bfaE95903B8A64097754F](https://gnosis-chiado.blockscout.com/address/0xDCA67FD8324990792C0bfaE95903B8A64097754F "0xDCA67FD8324990792C0bfaE95903B8A64097754F") |
| Name | Chainlink Token on Gnosis Chiado Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
## [HashKey](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hashkey)
### [HashKey Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hashkey-chain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `177` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://hashkey.blockscout.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on HashKey Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [HashKey Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hashkey-chain-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `133` |
| Address | [0x8418c4d7e8e17ab90232DC72150730E6c4b84F57](https://hashkeychain-testnet-explorer.alt.technology/address/0x8418c4d7e8e17ab90232DC72150730E6c4b84F57 "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57") |
| Name | Chainlink Token on HashKey Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hedera](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hedera)
### [Hedera Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hedera-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98](https://hashscan.io/mainnet/contract/0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98 "0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hedera Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hedera-testnet)
Testnet HBAR is used to pay for transactions on the Hedera testnet.
Testnet Native and LINK is available at [faucets.chain.link/hedera-testnet](https://faucets.chain.link/hedera-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6](https://hashscan.io/testnet/contract/0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6 "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6") |
| Name | Chainlink Token on Hedera Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hemi](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hemi)
### [Hemi Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hemi-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `43111` |
| Address | [0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8](https://explorer.hemi.xyz/address/0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8 "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hemi Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hemi-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `743111` |
| Address | [0x5246409a2e09134824c4E709602205B176491e57](https://testnet.explorer.hemi.xyz/address/0x5246409a2e09134824c4E709602205B176491e57 "0x5246409a2e09134824c4E709602205B176491e57") |
| Name | Chainlink Token on Hemi Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hyperliquid](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hyperliquid)
### [Hyperliquid Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#hyperliquid-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999` |
| Address | [0x1AC2EE68b8d038C982C1E1f73F596927dd70De59](https://app.hyperliquid.xyz/explorer/address/0x1AC2EE68b8d038C982C1E1f73F596927dd70De59 "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59") |
| Name | Chainlink Token on Hemi Mainnet Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ink](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ink)
### [Ink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `57073` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.inkonchain.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Ink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Ink Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ink-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `763373` |
| Address | [0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4](https://explorer-sepolia.inkonchain.com/address/0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4 "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4") |
| Name | Chainlink Token on Ink Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Kroma](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#kroma)
### [Kroma Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#kroma-mainnet)
ETH is used to pay for transactions on the Kroma mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `255` |
| Address | [0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450](https://kromascan.xyz/address/0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450 "0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450") |
| Name | Chainlink Token on Kroma Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Kroma Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#kroma-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Kroma testnet.
Testnet Native and LINK are available at [faucets.chain.link/kroma-testnet](https://faucets.chain.link/kroma-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2358` |
| Address | [0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8](https://testnet.kromascan.xyz/address/0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8 "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8") |
| Name | Chainlink Token on Kroma Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Lens](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#lens)
### [Lens Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#lens-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `232` |
| Address | [0x6e970e8d6758164798290c8db1D79a527ca6e1B2](https://explorer.lens.xyz/address/0x6e970e8d6758164798290c8db1D79a527ca6e1B2 "0x6e970e8d6758164798290c8db1D79a527ca6e1B2") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lens Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#lens-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `37111` |
| Address | [0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36](https://block-explorer.testnet.lens.dev/address/0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36 "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36") |
| Name | Chainlink Token on Lens Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Linea](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#linea)
### [Linea Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#linea-mainnet)
ETH is used to pay for transactions on Linea Mainnet. Use the [Linea Bridge](https://bridge.linea.build/) to transfer ETH from Ethereum to Linea.
| Parameter | Value |
| --- | --- |
| Chain ID | `59144` |
| Address | [0xa18152629128738a5c081eb226335FEd4B9C95e9](https://lineascan.build/address/0xa18152629128738a5c081eb226335FEd4B9C95e9 "0xa18152629128738a5c081eb226335FEd4B9C95e9") |
| Name | Chainlink Token on Linea Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
### [Linea Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#linea-sepolia-testnet)
Testnet ETH is used to pay for transactions on Linea Sepolia. Testnet Native and LINK are available at [faucets.chain.link/linea-sepolia](https://faucets.chain.link/linea-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59141` |
| Address | [0xF64E6E064a71B45514691D397ad4204972cD6508](https://sepolia.lineascan.build/address/0xF64E6E064a71B45514691D397ad4204972cD6508 "0xF64E6E064a71B45514691D397ad4204972cD6508") |
| Name | Chainlink Token on Linea Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
## [Lisk](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#lisk)
### [Lisk Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#lisk-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1135` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://blockscout.lisk.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lisk Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#lisk-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4202` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia-blockscout.lisk.com/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mantle](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mantle)
### [Mantle Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mantle-mainnet)
MNT is used to pay for transactions on the Mantle mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5000` |
| Address | [0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043](https://mantlescan.xyz/address/0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043 "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043") |
| Name | ChainLink Token on Mantle Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mantle Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mantle-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mantle Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/mantle-sepolia](https://faucets.chain.link/mantle-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5003` |
| Address | [0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04](https://sepolia.mantlescan.xyz/address/0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04 "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04") |
| Name | ChainLink Token on Mantle Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [MegaEth](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#megaeth)
### [MegaEth Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#megaeth-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `6342` |
| Address | [0x4d03398C2588D92B220578dAEde29814E41c8033](https://megaexplorer.xyz/address/0x4d03398C2588D92B220578dAEde29814E41c8033 "0x4d03398C2588D92B220578dAEde29814E41c8033") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Merlin](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#merlin)
### [Merlin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#merlin-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4200` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://scan.merlinchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Merlin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Merlin Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#merlin-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `686868` |
| Address | [0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50](https://testnet-scan.merlinchain.io//address/0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50 "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50") |
| Name | Chainlink Token on Merlin Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Metal](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#metal)
### [Metal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#metal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1750` |
| Address | [0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C](https://explorer.metall2.com/address/0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Metal L2 Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#metal-l2-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1740` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://testnet.explorer.metall2.com/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Metis](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#metis)
### [Metis Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#metis-mainnet)
METIS is used to pay for transactions on Metis Mainnet. You can use the [Metis Bridge](https://bridge.metis.io/) to transfer METIS from Ethereum Mainnet to Metis Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1088` |
| Address | [0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353](https://explorer.metis.io/address/0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353 "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353") |
| Name | Chainlink Token on Metis Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.metis.io](https://explorer.metis.io/) |
### [Metis Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#metis-sepolia-testnet)
Testnet METIS is used to pay for transactions on Metis Sepolia.
Testnet METIS and LINK are available at [faucets.chain.link/metis-sepolia](https://faucets.chain.link/metis-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59902` |
| Address | [0x9870D6a0e05F867EAAe696e106741843F7fD116D](https://sepolia-explorer.metisdevops.link/address/0x9870D6a0e05F867EAAe696e106741843F7fD116D "0x9870D6a0e05F867EAAe696e106741843F7fD116D") |
| Name | Chainlink Token on Metis Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia-explorer.metisdevops.link](https://sepolia-explorer.metisdevops.link/) |
## [Mind Network](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mind-network)
### [Mind Network Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mind-network-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `228` |
| Address | [0xd8A9246e84903e82CA01e42774b01A7CdD465BFa](https://explorer.mindnetwork.xyz/address/0xd8A9246e84903e82CA01e42774b01A7CdD465BFa "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mind Network Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mind-network-testnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `192940` |
| Address | [0xE0352dEd874c3E72d922CE533E136385fBE4a9B4](https://explorer-testnet.mindnetwork.xyz/address/0xE0352dEd874c3E72d922CE533E136385fBE4a9B4 "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mint](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mint)
### [Mint Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mint-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `185` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.mintchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mint Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mint-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1687` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://sepolia-testnet-explorer.mintchain.io/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mode](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mode)
### [Mode Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mode-mainnet)
ETH is used to pay for transactions on the Mode mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `34443` |
| Address | [0x183E3691EfF3524B2315D3703D94F922CbE51F54](https://explorer.mode.network/address/0x183E3691EfF3524B2315D3703D94F922CbE51F54 "0x183E3691EfF3524B2315D3703D94F922CbE51F54") |
| Name | Chainlink Token on Mode Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mode Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#mode-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mode testnet.
Testnet ETH and LINK are available at [faucets.chain.link/mode-sepolia](https://faucets.chain.link/mode-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `919` |
| Address | [0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d](https://sepolia.explorer.mode.network/address/0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d") |
| Name | Chainlink Token on Mode Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Monad](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#monad)
### [Monad Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#monad-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `10143` |
| Address | [0x6fE981Dbd557f81ff66836af0932cba535Cbc343](https://testnet.monadexplorer.com/address/0x6fE981Dbd557f81ff66836af0932cba535Cbc343 "0x6fE981Dbd557f81ff66836af0932cba535Cbc343") |
| Name | Chainlink Token on Monad Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Moonbeam](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#moonbeam)
### [Moonbeam Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#moonbeam-mainnet)
GLMR is used to pay transaction fees on Moonbeam Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1284` |
| Address | [0x012414A392F9FA442a3109f1320c439C45518aC3](https://moonscan.io/address/0x012414A392F9FA442a3109f1320c439C45518aC3 "0x012414A392F9FA442a3109f1320c439C45518aC3") |
| Name | Chainlink Token on Moonbeam Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [Moonriver](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#moonriver)
### [Moonriver Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#moonriver-mainnet)
MOVR is used to pay transaction fees on Moonriver Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1285` |
| Address | [0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e](https://moonriver.moonscan.io/address/0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e "0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e") |
| Name | Chainlink Token on Moonriver Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [OPBNB](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#opbnb)
### [OPBNB Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#opbnb-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `204` |
| Address | [0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA](https://opbnbscan.com/address/0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [OPBNB Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#opbnb-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5611` |
| Address | [0x56E16E648c51609A14Eb14B99BAB771Bee797045](https://opbnb-testnet.bscscan.com/address/0x56E16E648c51609A14Eb14B99BAB771Bee797045 "0x56E16E648c51609A14Eb14B99BAB771Bee797045") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [OP](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#op)
### [OP Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#op-mainnet)
ETH is used to pay for transactions on OP. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer ETH and LINK from Ethereum Mainnet to OP Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `10` |
| Address | [0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6](https://optimistic.etherscan.io/address/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6 "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6") |
| Name | Chainlink Token on OP Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
### [OP Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#op-sepolia-testnet)
Testnet ETH is used to pay for transactions on OP Sepolia. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer testnet ETH from Ethereum Sepolia to OP Sepolia. Testnet ETH is available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
Testnet Native and LINK is available at [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia). Testnet bridges might not transfer the correct type of LINK to OP Sepolia, so it is recommended to use only the LINK acquired from [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia) when developing applications on testnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `11155420` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia-optimism.etherscan.io/token/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on OP Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
## [Plume](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#plume)
### [Plume Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#plume-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98866` |
| Address | [0xb549B375dA0c76f8b3877B9aDfDD28378f087A64](https://phoenix-explorer.plumenetwork.xyz/address/0xb549B375dA0c76f8b3877B9aDfDD28378f087A64 "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Plume Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#plume-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98867` |
| Address | [0xB97e3665AEAF96BDD6b300B2e0C93C662104A068](https://testnet-explorer.plumenetwork.xyz/address/0xB97e3665AEAF96BDD6b300B2e0C93C662104A068 "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
| | |
## [Polygon](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#polygon)
### [Polygon Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#polygon-mainnet)
POL is used to pay for transactions on Polygon. You can use the [Polygon Bridge](https://wallet.polygon.technology/polygon/bridge/) to transfer tokens to Polygon Mainnet and then use [Polygon Gas Swap](https://wallet.polygon.technology/polygon/gas-swap/) to swap supported tokens to POL.
| Parameter | Value |
| --- | --- |
| Chain ID | `137` |
| Address | [0xb0897686c545045aFc77CF20eC7A532E3120E0F1](https://polygonscan.com/address/0xb0897686c545045aFc77CF20eC7A532E3120E0F1 "0xb0897686c545045aFc77CF20eC7A532E3120E0F1") |
| Name | Chainlink Token on Polygon Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
### [Polygon Amoy Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#polygon-amoy-testnet)
Testnet POL is used to pay for transactions on Polygon Amoy.
Testnet POL and LINK are available at [faucets.chain.link/polygon-amoy](https://faucets.chain.link/polygon-amoy).
| Parameter | Value |
| --- | --- |
| Chain ID | `80002` |
| Address | [0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904](https://amoy.polygonscan.com/address/0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904 "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904") |
| Name | Chainlink Token on Polygon Amoy Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
## [Polygon zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#polygon-zkevm)
### [Polygon zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#polygon-zkevm-mainnet)
ETH is used to pay for transactions on Polygon zkEVM. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer ETH and LINK to Polygon zkEVM.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1101` |
| Address | [0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D](https://zkevm.polygonscan.com/address/0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D") |
| Name | Chainlink Token on Polygon zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Polygon zkEVM Cardona Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#polygon-zkevm-cardona-testnet)
Testnet ETH is used to pay for transactions on Polygon zkEVM Cardona testnet. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer testnet ETH to Polygon zkEVM testnet.
Testnet ETH and LINK are available at [faucets.chain.link/polygon-zkevm-cardona](https://faucets.chain.link/polygon-zkevm-cardona).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2442` |
| Address | [0x5576815a38A3706f37bf815b261cCc7cCA77e975](https://cardona-zkevm.polygonscan.com/address/0x5576815a38A3706f37bf815b261cCc7cCA77e975 "0x5576815a38A3706f37bf815b261cCc7cCA77e975") |
| Name | Chainlink Token on Polygon zkEVM Cardona Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ronin](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ronin)
### [Ronin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ronin-mainnet)
RON is used to pay for transactions on Ronin Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `2020` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://app.roninchain.com/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Ronin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://app.roninchain.com/) |
### [Ronin Saigon Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#ronin-saigon-testnet)
Testnet RON is used to pay for transactions on Ronin Saigon.
Testnet Native and LINK are available at [faucets.chain.link/ronin-saigon](https://faucets.chain.link/ronin-saigon).
| Parameter | Value |
| --- | --- |
| Chain ID | `2021` |
| Address | [0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15](https://saigon-app.roninchain.com/address/0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15 "0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15") |
| Name | Chainlink Token on Ronin Saigon Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://saigon-app.roninchain.com/) |
## [Rootstock](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#rootstock)
### [Rootstock Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#rootstock-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `30` |
| Address | [0x938D84942f5D924070A6bb82F8e56a5E2b3098A4](https://explorer.rsk.co/address/0x938D84942f5D924070A6bb82F8e56a5E2b3098A4 "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4") |
| Name | Chainlink Token on Rootstock Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Rootstock Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#rootstock-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `31` |
| Address | [0x39dD98CcCC3a51b2c0007e23517488e363581264](https://explorer.testnet.rsk.co/address/0x39dD98CcCC3a51b2c0007e23517488e363581264 "0x39dD98CcCC3a51b2c0007e23517488e363581264") |
| Name | Chainlink Token on Rootstock Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Scroll](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#scroll)
### [Scroll Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#scroll-mainnet)
ETH is used to pay for transactions on Scroll Mainnet. Use the [Scroll Bridge](https://scroll.io/bridge) to transfer ETH from Ethereum to Scroll.
| Parameter | Value |
| --- | --- |
| Chain ID | `534352` |
| Address | [0x548C6944cba02B9D1C0570102c89de64D258d3Ac](https://scrollscan.com/address/0x548C6944cba02B9D1C0570102c89de64D258d3Ac "0x548C6944cba02B9D1C0570102c89de64D258d3Ac") |
| Name | Chainlink Token on Scroll Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
### [Scroll Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#scroll-sepolia-testnet)
Testnet ETH is used to pay for transactions on Scroll testnet.
Testnet ETH and LINK are available at [faucets.chain.link/scroll-sepolia-testnet](https://faucets.chain.link/scroll-sepolia-testnet). Testnet ETH is also available from the [Scroll Sepolia Faucets](https://docs.scroll.io/en/user-guide/faucet/#scroll-sepolia-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `534351` |
| Address | [0x231d45b53C905c3d6201318156BDC725c9c3B9B1](https://sepolia-blockscout.scroll.io/address/0x231d45b53C905c3d6201318156BDC725c9c3B9B1 "0x231d45b53C905c3d6201318156BDC725c9c3B9B1") |
| Name | Chainlink Token on Scroll Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
## [Sei](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#sei)
### [Sei Network](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#sei-network)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1329` |
| Address | [?chain=pacific-1](https://seitrace.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F/?chain=pacific-1 "?chain=pacific-1") |
| Name | Chainlink Token on Sei Network |
| Symbol | LINK |
| Decimals | 18 |
### [Sei Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#sei-testnet)
Testnet Native and LINK are available at [faucets.chain.link/sei-testnet](https://faucets.chain.link/sei-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1328` |
| Address | [0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2](https://seitrace.com/token/0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2 "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2") |
| Name | Chainlink Token on Sei Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Shibarium](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#shibarium)
### [Shibarium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#shibarium-mainnet)
BONE is used to pay for transactions on Shibarium Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `109` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://www.shibariumscan.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Shibarium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.shibariumscan.io](https://explorer.shibariumscan.io/) |
### [Shibarium Puppynet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#shibarium-puppynet)
Testnet BONE is used to pay for transactions on Shibarium Puppynet.
Testnet Native and LINK are available at [faucets.chain.link/shibarium-puppynet](https://faucet.chain.link/shibarium-puppynet).
| Parameter | Value |
| --- | --- |
| Chain ID | `157` |
| Address | [0x44637eEfD71A090990f89faEC7022fc74B2969aD](https://puppyscan.shib.io/address/0x44637eEfD71A090990f89faEC7022fc74B2969aD "0x44637eEfD71A090990f89faEC7022fc74B2969aD") |
| Name | Chainlink Token on Shibarium Puppynet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [puppyscan.shib.io](https://puppyscan.shib.io/) |
## [Solana](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#solana)
### [Solana Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#solana-mainnet)
SOL is used to pay for transactions on the Solana network.
| Parameter | Value |
| --- | --- |
| Chain ID | `mainnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
| Network status | [status.solana.com/](https://status.solana.com/) |
### [Solana Devnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#solana-devnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `devnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L?cluster=devnet "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
## [Soneium](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#soneium)
### [Soneium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#soneium-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1868` |
| Address | [0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec](https://soneium.blockscout.com/address/0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec") |
| Name | Chainlink Token on Soneium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Soneium Minato Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#soneium-minato-testnet)
Testnet ETH is used to pay for transactions on the Soneium Minato testnet. Testnet Native and LINK are available at [faucets.chain.link/soneium-minato](https://faucets.chain.link/soneium-minato).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1946` |
| Address | [0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2](https://soneium-minato.blockscout.com/address/0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2 "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2") |
| Name | Chainlink Token on Soneium Minato Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Sonic](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#sonic)
### [Sonic Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#sonic-mainnet)
S is used to pay for transactions on Sonic mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `146` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://sonicscan.org/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Sonic Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Sonic Blaze Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#sonic-blaze-testnet)
Testnet S is used to pay for transactions on Sonic Blaze testnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `57054` |
| Address | [0xd8C1eEE32341240A62eC8BC9988320bcC13c8580](https://testnet.sonicscan.org/address/0xd8C1eEE32341240A62eC8BC9988320bcC13c8580 "0xd8C1eEE32341240A62eC8BC9988320bcC13c8580") |
| Name | Chainlink Token on Sonice Blaze Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Starknet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#starknet)
### [Starknet Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#starknet-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `SN_MAIN` |
| Address | [0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9](https://voyager.online/contract/0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9 "0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9") |
| Name | Chainlink Token on Starknet Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Superseed](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#superseed)
### [Superseed Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#superseed-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5330` |
| Address | [0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9](https://explorer.superseed.xyz/address/0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9 "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Superseed Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#superseed-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `53302` |
| Address | [0xA3063eE34d9B4E407DF0E153c9bE679680e3A956](https://sepolia-explorer.superseed.xyz/address/0xA3063eE34d9B4E407DF0E153c9bE679680e3A956 "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Taiko](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#taiko)
### [Taiko Alethia](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#taiko-alethia)
| Parameter | Value |
| --- | --- |
| Chain ID | `167000` |
| Address | [0x917a3964C37993e99a47C779bEb5Db1E9d13804d](https://taikoscan.io/address/0x917a3964C37993e99a47C779bEb5Db1E9d13804d "0x917a3964C37993e99a47C779bEb5Db1E9d13804d") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Taiko Hekla Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#taiko-hekla-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `167009` |
| Address | [0x01fcdEedbA59bc68b0914D92277678dAB6827e2c](https://hekla.taikoscan.io/address/0x01fcdEedbA59bc68b0914D92277678dAB6827e2c "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Treasure](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#treasure)
### [Treasure Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#treasure-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `61166` |
| Address | [0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A](https://treasurescan.io/address/0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A "0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A") |
| Name | Chainlink Token on Treasure Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Treasure Topaz Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#treasure-topaz-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `978658` |
| Address | [0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5](https://topaz.treasurescan.io/address/0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5 "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5") |
| Name | Chainlink Token on Treasure Topaz Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Unichain](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#unichain)
### [Unichain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#unichain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `130` |
| Address | [0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A](https://uniscan.xyz//address/0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A") |
| Name | Chainlink Token on Unichain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Unichain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#unichain-sepolia-testnet)
Testnet Native and LINK are available at [faucets.chain.link/unichain-testnet](https://faucets.chain.link/unichain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1301` |
| Address | [0xda40816f278Cd049c137F6612822D181065EBfB4](https://sepolia.uniscan.xyz/address/0xda40816f278Cd049c137F6612822D181065EBfB4 "0xda40816f278Cd049c137F6612822D181065EBfB4") |
| Name | Chainlink Token on Unichain Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Wemix](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#wemix)
### [Wemix Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#wemix-mainnet)
WEMIX is used to pay for transactions on the Wemix mainnet. To transfer LINK from Ethereum to Wemix, use [Transporter](https://app.transporter.io/).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1111` |
| Address | [0x80f1FcdC96B55e459BF52b998aBBE2c364935d69](https://wemixscan.com/address/0x80f1FcdC96B55e459BF52b998aBBE2c364935d69 "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69") |
| Name | Chainlink Token on Wemix Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Wemix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#wemix-testnet)
Testnet WEMIX is used to pay for transactions on the Wemix testnet.
Testnet Native and LINK are available at [faucets.chain.link/wemix-testnet](https://faucets.chain.link/wemix-testnet). Testnet WEMIX is also available from the [WEMIX Faucet](https://wallet.test.wemix.com/faucet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1112` |
| Address | [0x3580c7A817cCD41f7e02143BFa411D4EeAE78093](https://testnet.wemixscan.com/address/0x3580c7A817cCD41f7e02143BFa411D4EeAE78093 "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093") |
| Name | Chainlink Token on Wemix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [World](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#world)
### [World Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#world-chain-mainnet)
ETH is used to pay for transactions on World Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `480` |
| Address | [0x915b648e994d5f31059B38223b9fbe98ae185473](https://worldscan.org/address/0x915b648e994d5f31059B38223b9fbe98ae185473 "0x915b648e994d5f31059B38223b9fbe98ae185473") |
| Name | Chainlink Token on World Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain/) |
### [World Chain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#world-chain-sepolia-testnet)
Testnet ETH is used to pay for transactions on World Chain Sepolia. Testnet Native and LINK are available at [faucets.chain.link/worldchain-testnet](https://faucets.chain.link/worldchain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `486` |
| Address | [0xC82Ea35634BcE95C394B6BC00626f827bB0F4801](https://sepolia.worldscan.org/address/0xC82Ea35634BcE95C394B6BC00626f827bB0F4801 "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801") |
| Name | Chainlink Token on World Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain) |
## [X Layer](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#x-layer)
### [X Layer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#x-layer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `196` |
| Address | [0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9](https://www.oklink.com/xlayer/address/0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9 "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9") |
| Name | Chainlink Token on X Layer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [X Layer Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#x-layer-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `195` |
| Address | [0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55](https://www.oklink.com/xlayer-test/address/0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55 "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55") |
| Name | Chainlink Token on X Layer Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Zircuit](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zircuit)
### [Zircuit Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zircuit-mainnet)
ETH is used to pay for transactions on the Zircuit mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48900` |
| Address | [0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a](https://explorer.zircuit.com/address/0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a") |
| Name | Chainlink Token on Zircuit Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Zircuit Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zircuit-testnet)
Testnet ETH is used to pay for transactions on the Zircuit testnet.
Testnet Native and LINK are available at [faucets.chain.link/zircuit-sepolia](https://faucets.chain.link/zircuit-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48899` |
| Address | [0xDEE94506570cA186BC1e3516fCf4fd719C312cCD](https://explorer.testnet.zircuit.com/address/0xDEE94506570cA186BC1e3516fCf4fd719C312cCD "0xDEE94506570cA186BC1e3516fCf4fd719C312cCD") |
| Name | Chainlink Token on Zircuit Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [ZKsync](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zksync)
### [ZKsync Era Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zksync-era-mainnet)
ETH is used to pay for transactions on ZKsync Era Mainnet. Use the recommended [ZKsync Bridges](https://zksync.io/explore#bridges) to transfer ETH from Ethereum to ZKsync.
| Parameter | Value |
| --- | --- |
| Chain ID | `324` |
| Address | [0x52869bae3E091e36b0915941577F2D47d8d8B534](https://explorer.zksync.io/address/0x52869bae3E091e36b0915941577F2D47d8d8B534 "0x52869bae3E091e36b0915941577F2D47d8d8B534") |
| Name | Chainlink Token on ZKsync Era Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.zksync.io](https://explorer.zksync.io/) |
### [ZKsync Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zksync-sepolia-testnet)
Testnet ETH is used to pay for transactions on ZKsync Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/zksync-sepolia](https://faucets.chain.link/zksync-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `300` |
| Address | [0x23A1aFD896c8c8876AF46aDc38521f4432658d1e](https://sepolia.explorer.zksync.io/address/0x23A1aFD896c8c8876AF46aDc38521f4432658d1e "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e") |
| Name | Chainlink Token on ZKsync Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [uptime.com/statuspage/zkSync](https://uptime.com/statuspage/zkSync) |
## [Zora](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zora)
### [Zora Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zora-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `7777777` |
| Address | [0x3662B6f73c5560229D1a98aF6e59E6649D568374](https://explorer.zora.energy/address/0x3662B6f73c5560229D1a98aF6e59E6649D568374 "0x3662B6f73c5560229D1a98aF6e59E6649D568374") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Zora Testnet](https://docs.chain.link/resources/link-token-contracts?parent=dataFeeds\#zora-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999999999` |
| Address | [0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e](https://sepolia.explorer.zora.energy/address/0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## Get the latest Chainlink content straight to your inbox.
Email Address
[iframe](https://td.doubleclick.net/td/rul/346357746?random=1748840470358&cv=11&fst=1748840470358&fmt=3&bg=ffffff&guid=ON&async=1&gcl_ctr=1>m=45be55s2v891173849z8847174275za200zb847174275&gcd=13l3l3l3l1l1&dma=0&tag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&ptag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&u_w=1280&u_h=1024&url=https%3A%2F%2Fdocs.chain.link%2Fresources%2Flink-token-contracts%3Fparent%3DdataFeeds&_ng=1&label=_duuCKn_k4cYEPL_k6UB&hn=www.googleadservices.com&frm=0&tiba=LINK%20Token%20Contracts%20%7C%20Chainlink%20Documentation&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=368609452.1748840469&uaa=x86&uab=64&uafvl=Google%2520Chrome%3B137.0.7151.55%7CChromium%3B137.0.7151.55%7CNot%252FA)Brand%3B24.0.0.0&uamb=0&uam=&uap=Linux%20x86_64&uapv=6.6.72&uaw=0&ec_mode=a&fledge=1&capi=1&_tu=Cg&em=tv.1&ct_cookie_present=0)
## LINK Token Contracts
[iframe](https://www.googletagmanager.com/ns.html?id=GTM-N6DQ47T)
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [LINK Token Contracts](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#overview)
* * *
LINK tokens are used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators. The smallest denomination of LINK is called a Juel, and 1,000,000,000,000,000,000 (1e18) Juels are equal to 1 LINK. This is similar to Wei, which is the [smallest denomination of ETH](https://ethereum.org/en/developers/docs/intro-to-ether/#denominations).
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 services on a given blockchain, it is necessary to use LINK tokens. You can transfer tokens across blockchains by using [Chainlink CCIP](https://docs.chain.link/ccip/tutorials/evm/transfer-tokens-from-contract) or applications such as [Transporter](https://app.transporter.io/) and [XSwap](https://xswap.link/).
## [Abstract](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#abstract)
### [Abstract Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#abstract-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2741` |
| Address | [0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd](https://abscan.org/address/0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Abstract Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#abstract-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `11124` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia.abscan.org/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Apechain](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#apechain)
### [Apechain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#apechain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33139` |
| Address | [0xf575731b78981B86d34321d875A3D25a48479be6](https://apescan.io/address/0xf575731b78981B86d34321d875A3D25a48479be6 "0xf575731b78981B86d34321d875A3D25a48479be6") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Apechain Curtis Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#apechain-curtis-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33111` |
| Address | [0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E](https://explorer.curtis.apechain.com/address/0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E") |
| Name | Chainlink Token on Apechain Curtis Testnet |
| Symbol | LINK |
## [Arbitrum](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#arbitrum)
### [Arbitrum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#arbitrum-mainnet)
ETH is used to pay for transactions on the Arbitrum Mainnet.
You can use the [Arbitrum Bridge](https://bridge.arbitrum.io/) to transfer ETH and LINK from Ethereum Mainnet to Arbitrum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `42161` |
| Address | [0xf97f4df75117a78c1A5a0DBb814Af92458539FB4](https://explorer.arbitrum.io/address/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4 "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4") |
| Name | Chainlink Token on Arbitrum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
### [Arbitrum Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#arbitrum-sepolia-testnet)
Testnet ETH is used to pay for transactions on Arbitrum Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/arbitrum-sepolia](https://faucets.chain.link/arbitrum-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `421614` |
| Address | [0xb1D4538B4571d411F07960EF2838Ce337FE1E80E](https://sepolia.arbiscan.io/address/0xb1D4538B4571d411F07960EF2838Ce337FE1E80E "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E") |
| Name | Chainlink Token on Arbitrum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
## [Astar](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#astar)
### [Astar Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#astar-mainnet)
ASTR is used to pay for transactions on Astar Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `592` |
| Address | [0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d](https://astar.blockscout.com/address/0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d") |
| Name | ChainLink Token on Astar Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/astar/dashboard](https://portal.astar.network/astar/dashboard) |
### [Astar Shibuya](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#astar-shibuya)
SBY is used to pay for transactions on Astar Shibuya. Testnet SBY is available at [Astar Shibuya Faucet](https://docs.astar.network/docs/build/environment/faucet/).
Testnet LINK is available at [faucets.chain.link/astar-shibuya](https://faucets.chain.link/astar-shibuya).
| Parameter | Value |
| --- | --- |
| Chain ID | `81` |
| Address | [0xe74037112db8807B3B4B3895F5790e5bc1866a29](https://shibuya.blockscout.com/address/0xe74037112db8807B3B4B3895F5790e5bc1866a29 "0xe74037112db8807B3B4B3895F5790e5bc1866a29") |
| Name | ChainLink Token on Astar Shibuya |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/shibuya-testnet/dashboard](https://portal.astar.network/shibuya-testnet/dashboard) |
## [Avalanche](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#avalanche)
### [Avalanche Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#avalanche-mainnet)
AVAX is used to pay for transactions on Avalanche Mainnet. Use the [Avalanche Bridge](https://bridge.avax.network/) to transfer LINK from Ethereum Mainnet to Avalanche.
| Parameter | Value |
| --- | --- |
| Chain ID | `43114` |
| Address | [0x5947BB275c521040051D82396192181b413227A3](https://snowtrace.io/address/0x5947BB275c521040051D82396192181b413227A3 "0x5947BB275c521040051D82396192181b413227A3") |
| Name | Chainlink Token on Avalanche Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
### [Avalanche Fuji Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#avalanche-fuji-testnet)
Testnet AVAX is used to pay for transactions on Avalanche Fuji.
Testnet AVAX and LINK are available at [faucets.chain.link/fuji](https://faucets.chain.link/fuji). Testnet AVAX is also available at [core.app/tools/testnet-faucet](https://core.app/tools/testnet-faucet/).
| Parameter | Value |
| --- | --- |
| Chain ID | `43113` |
| Address | [0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846](https://testnet.snowtrace.io/address/0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846 "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846") |
| Name | Chainlink Token on Avalanche Fuji Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
## [BASE](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#base)
### [BASE Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#base-mainnet)
ETH is used to pay for transactions on BASE. You can use the [BASE Bridge](https://bridge.base.org/deposit) to transfer ETH from Ethereum Mainnet to BASE Mainnet. To transfer LINK from Ethereum to Base, use [Transporter](https://app.transporter.io/) or [XSwap Bridge](https://xswap.link/bridge).
| Parameter | Value |
| --- | --- |
| Chain ID | `8453` |
| Address | [0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196](https://basescan.org/address/0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196 "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196") |
| Name | Chainlink Token on BASE Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [basescan.org](https://basescan.org/) |
### [BASE Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#base-sepolia-testnet)
Testnet ETH is used to pay for transactions on BASE Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/base-sepolia](https://faucets.chain.link/base-sepolia). Testnet ETH is also available from one of the [BASE Network Faucets](https://docs.base.org/tools/network-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `84532` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia.basescan.org/address/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on BASE Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.basescan.org](https://sepolia.basescan.org/) |
## [Berachain](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#berachain)
### [Berachain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#berachain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80094` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://berascan.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Berachain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Berachain Bartio Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#berachain-bartio-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80084` |
| Address | [0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271](https://bartio.beratrail.io/address/0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271 "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271") |
| Name | ChainLink Token on Berachain Bartio Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bitlayer](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bitlayer)
### [Bitlayer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bitlayer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `200901` |
| Address | [0x56B275c0Ec034a229a1deD8DB17089544bc276D9](https://www.btrscan.com/address/0x56B275c0Ec034a229a1deD8DB17089544bc276D9 "0x56B275c0Ec034a229a1deD8DB17089544bc276D9") |
| Name | Chainlink Token on Bitlayer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
### [Bitlayer Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bitlayer-testnet)
Testnet LINK are available at [faucets.chain.link/bitlayer-testnet](https://faucets.chain.link/bitlayer-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `200810` |
| Address | [0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48](https://testnet.btrscan.com/address/0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48 "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48") |
| Name | Chainlink Token on Bitlayer Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
## [Blast](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#blast)
### [Blast Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#blast-mainnet)
ETH is used to pay for transactions on Blast. You can use the [Blast Bridge](https://blast.io/en/bridge) to transfer ETH from Ethereum Mainnet to Blast Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `81457` |
| Address | [0x93202eC683288a9EA75BB829c6baCFb2BfeA9013](https://blastscan.io/address/0x93202eC683288a9EA75BB829c6baCFb2BfeA9013 "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013") |
| Name | Chainlink Token on Blast Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [blastscan.io](https://blastscan.io/) |
### [Blast Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#blast-sepolia-testnet)
Testnet ETH is used to pay for transactions on Blast Sepolia. Testnet ETH is available from one of the [Blast Network Faucets](https://docs.blast.io/tools/faucets). Testnet ETH and LINK are also available at [faucets.chain.link/blast-sepolia](https://faucets.chain.link/blast-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `168587773` |
| Address | [0x02c359ebf98fc8BF793F970F9B8302bb373BdF32](https://sepolia.blastscan.io/address/0x02c359ebf98fc8BF793F970F9B8302bb373BdF32 "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32") |
| Name | Chainlink Token on Blast Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.blastscan.io](https://sepolia.blastscan.io/) |
## [BNB Chain](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bnb-chain)
### [BNB Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bnb-chain-mainnet)
BNB is used to pay for transactions on the BNB Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `56` |
| Address | [0x404460C6A5EdE2D891e8297795264fDe62ADBB75](https://bscscan.com/token/0x404460C6A5EdE2D891e8297795264fDe62ADBB75 "0x404460C6A5EdE2D891e8297795264fDe62ADBB75") |
| Name | Chainlink Token on BNB Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
### [BNB Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bnb-chain-testnet)
Testnet BNB is used to pay for transactions on the BNB Chain testnet. Testnet BNB is available at [testnet.bnbchain.org/faucet-smart](https://testnet.bnbchain.org/faucet-smart).
Testnet Native and LINK is available at [faucets.chain.link/bnb-chain-testnet](https://faucets.chain.link/bnb-chain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `97` |
| Address | [0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06](https://testnet.bscscan.com/address/0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06 "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06") |
| Name | Chainlink Token on BNB Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
## [Bob](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bob)
### [Bob Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bob-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `60808` |
| Address | [0x5aB885CDa7216b163fb6F813DEC1E1532516c833](https://explorer.gobob.xyz/address/0x5aB885CDa7216b163fb6F813DEC1E1532516c833 "0x5aB885CDa7216b163fb6F813DEC1E1532516c833") |
| Name | Chainlink Token on Bob Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
### [Bob Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bob-sepolia-testnet)
Testnet ETH and LINK are available at [faucets.chain.link/bob-testnet](https://faucets.chain.link/bob-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `808813` |
| Address | [0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183](https://bob-sepolia.explorer.gobob.xyz/address/0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183 "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183") |
| Name | Chainlink Token on Bob Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
## [Botanix](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#botanix)
### [Botanix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#botanix-testnet)
Testnet Native and LINK are available at [faucets.chain.link/botanix-testnet](https://faucets.chain.link/botanix-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `3636` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://testnet.botanixscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Botanix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bsquared](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bsquared)
### [Bsquared Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bsquared-mainnet)
BTC is used to pay for transactions on Bsquared Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `223` |
| Address | [0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39](https://explorer.bsquared.network/address/0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39 "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39") |
| Name | Chainlink Token on Bsquared Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.bsquared.network](https://explorer.bsquared.network/) |
### [Bsquared Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#bsquared-testnet)
Testnet BTC is used to pay for transactions on Bsquared Testnet.
Testnet BTC and LINK are available at [faucets.chain.link/bsquared-testnet](https://faucet.chain.link/bsquared-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1123` |
| Address | [0x436a1907D9e6a65E6db73015F08f9C66F6B63E45](https://testnet-explorer.bsquared.network/address/0x436a1907D9e6a65E6db73015F08f9C66F6B63E45 "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45") |
| Name | Chainlink Token on Bsquared Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [testnet-explorer.bsquared.network](https://testnet-explorer.bsquared.network/) |
## [Celo](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#celo)
### [Celo Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#celo-mainnet)
CELO is used to pay for transactions on the Celo network.
| Parameter | Value |
| --- | --- |
| Chain ID | `42220` |
| Address | [0xd07294e6E917e07dfDcee882dd1e2565085C2ae0](https://explorer.celo.org/mainnet/address/0xd07294e6E917e07dfDcee882dd1e2565085C2ae0 "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0") |
| Name | Chainlink Token on Celo Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org](https://explorer.celo.org/) |
### [Celo Alfajores Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#celo-alfajores-testnet)
Testnet CELO is used to pay for transactions on Celo Alfajores. Testnet CELO is available from the [Alfajores Token Faucet](https://faucet.celo.org/alfajores).
Testnet Native and LINK is available at [faucets.chain.link/celo-alfajores-testnet](https://faucets.chain.link/celo-alfajores-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `44787` |
| Address | [0x32E08557B14FaD8908025619797221281D439071](https://explorer.celo.org/alfajores/address/0x32E08557B14FaD8908025619797221281D439071 "0x32E08557B14FaD8908025619797221281D439071") |
| Name | Chainlink Token on Celo Alfajores Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org/alfajores](https://explorer.celo.org/alfajores/) |
## [Core](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#core)
### [Core Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#core-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1116` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://scan.coredao.org/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Core Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Corn](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#corn)
### [Corn Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#corn-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `21000000` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://cornscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Corn Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Corn Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#corn-testnet)
Testnet Native and LINK is available at [faucets.chain.link/corn-testnet](https://faucets.chain.link/corn-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `21000001` |
| Address | [0x996EfAb6011896Be832969D91E9bc1b3983cfdA1](https://testnet.cornscan.io/address/0x996EfAb6011896Be832969D91E9bc1b3983cfdA1 "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1") |
| Name | Chainlink Token on Corn Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#cronos)
### [Cronos Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#cronos-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `25` |
| Address | [0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85](https://explorer.cronos.org/address/0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85 "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#cronos-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `338` |
| Address | [0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262](https://explorer.cronos.org/testnet/address/0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262 "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262") |
| Name | Chainlink Token on Cronos Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#cronos-zkevm)
### [Cronos zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#cronos-zkevm-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `388` |
| Address | [0x61170ca9fB9cF98d4c7d684e07be6D969D59667E](https://explorer.zkevm.cronos.org/address/0x61170ca9fB9cF98d4c7d684e07be6D969D59667E "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E") |
| Name | Chainlink Token on Cronos zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos zkEVM Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#cronos-zkevm-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `240` |
| Address | [0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827](https://explorer.zkevm.cronos.org/testnet/address/0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827 "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827") |
| Name | Chainlink Token on Cronos zkEVM Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ethereum](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ethereum)
### [Ethereum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ethereum-mainnet)
ETH is used to pay for transactions on Ethereum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1` |
| Address | [0x514910771AF9Ca656af840dff83E8264EcF986CA](https://etherscan.io/token/0x514910771AF9Ca656af840dff83E8264EcF986CA "0x514910771AF9Ca656af840dff83E8264EcF986CA") |
| Name | Chainlink Token on Ethereum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ethstats.dev](https://ethstats.dev/) |
### [Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#sepolia-testnet)
Testnet ETH is used to pay for transactions on Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `11155111` |
| Address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789 "0x779877A7B0D9E8603169DdbD7836e478b4624789") |
| Name | Chainlink Token on Ethereum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
### [Ethereum Holesky Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ethereum-holesky-testnet)
Testnet ETH is used to pay for transactions on Holesky.
Testnet ETH and LINK are available at [faucets.chain.link/holesky](https://faucets.chain.link/holesky).
| Parameter | Value |
| --- | --- |
| Chain ID | `17000` |
| Address | [0x685cE6742351ae9b618F383883D6d1e0c5A31B4B](https://holesky.etherscan.io/token/0x685cE6742351ae9b618F383883D6d1e0c5A31B4B "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B") |
| Name | Chainlink Token on Ethereum Holesky Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
## [Etherlink](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#etherlink)
### [Etherlink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#etherlink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `42793` |
| Address | [0x8ce7618E8f8E514d13889283F58FF03B794e6CC3](https://explorer.etherlink.com/address/0x8ce7618E8f8E514d13889283F58FF03B794e6CC3 "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3") |
| Name | Chainlink Token on Etherlink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Etherlink Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#etherlink-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `128123` |
| Address | [0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950](https://testnet.explorer.etherlink.com/address/0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950 "0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950") |
| Name | Chainlink Token on Etherlink Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Fantom](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#fantom)
### [Fantom Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#fantom-mainnet)
FTM is used to pay for transactions on Fantom Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `250` |
| Address | [0x6F43FF82CCA38001B6699a8AC47A2d0E66939407](https://ftmscan.com/address/0x6F43FF82CCA38001B6699a8AC47A2d0E66939407 "0x6F43FF82CCA38001B6699a8AC47A2d0E66939407") |
| Name | Chainlink Token on Fantom Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
### [Fantom Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#fantom-testnet)
Testnet FTM is used to pay for transactions on Fantom testnet. Testnet FTM is available at [faucet.fantom.network](https://faucet.fantom.network/).
Testnet LINK is available at [faucets.chain.link/fantom-testnet](https://faucets.chain.link/fantom-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `4002` |
| Address | [0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F](https://testnet.ftmscan.com/address/0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F "0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F") |
| Name | Chainlink Token on Fantom Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
## [Fraxtal](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#fraxtal)
### [Fraxtal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#fraxtal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `252` |
| Address | [0xd6A6ba37fAaC229B9665E86739ca501401f5a940](https://fraxscan.com/address/0xd6A6ba37fAaC229B9665E86739ca501401f5a940 "0xd6A6ba37fAaC229B9665E86739ca501401f5a940") |
| Name | Chainlink Token on Fraxtal Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Fraxtal Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#fraxtal-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2522` |
| Address | [0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF](https://holesky.fraxscan.com/address/0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF") |
| Name | Chainlink Token on Fraxtal Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Gnosis Chain (xDai)](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#gnosis-chain-xdai)
### [Gnosis Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#gnosis-chain-mainnet)
xDAI is used to pay for transactions on Gnosis Chain Mainnet. Use the [xDai Bridge](https://bridge.gnosischain.com/) to send DAI from Ethereum Mainnet to Gnosis Chain and convert it to xDAI. Use [OmniBridge](https://omni.gnosischain.com/bridge) to send LINK from Ethereum Mainnet to Gnosis Chain.
| Parameter | Value |
| --- | --- |
| Chain ID | `100` |
| Address | [0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2](https://gnosisscan.io/address/0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2 "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2") |
| Name | Chainlink Token on Gnosis Chain (xDai) Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
### [Gnosis Chiado Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#gnosis-chiado-testnet)
xDAI is used to pay for transactions on Gnosis Chiado testnet. Use the [Chiado faucet](https://faucet.chiadochain.net/) to get testnet xDAI.
Testnet Native and LINK is available at [faucets.chain.link/gnosis-chiado-testnet](https://faucets.chain.link/gnosis-chiado-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `10200` |
| Address | [0xDCA67FD8324990792C0bfaE95903B8A64097754F](https://gnosis-chiado.blockscout.com/address/0xDCA67FD8324990792C0bfaE95903B8A64097754F "0xDCA67FD8324990792C0bfaE95903B8A64097754F") |
| Name | Chainlink Token on Gnosis Chiado Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
## [HashKey](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hashkey)
### [HashKey Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hashkey-chain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `177` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://hashkey.blockscout.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on HashKey Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [HashKey Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hashkey-chain-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `133` |
| Address | [0x8418c4d7e8e17ab90232DC72150730E6c4b84F57](https://hashkeychain-testnet-explorer.alt.technology/address/0x8418c4d7e8e17ab90232DC72150730E6c4b84F57 "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57") |
| Name | Chainlink Token on HashKey Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hedera](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hedera)
### [Hedera Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hedera-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98](https://hashscan.io/mainnet/contract/0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98 "0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hedera Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hedera-testnet)
Testnet HBAR is used to pay for transactions on the Hedera testnet.
Testnet Native and LINK is available at [faucets.chain.link/hedera-testnet](https://faucets.chain.link/hedera-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6](https://hashscan.io/testnet/contract/0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6 "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6") |
| Name | Chainlink Token on Hedera Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hemi](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hemi)
### [Hemi Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hemi-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `43111` |
| Address | [0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8](https://explorer.hemi.xyz/address/0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8 "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hemi Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hemi-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `743111` |
| Address | [0x5246409a2e09134824c4E709602205B176491e57](https://testnet.explorer.hemi.xyz/address/0x5246409a2e09134824c4E709602205B176491e57 "0x5246409a2e09134824c4E709602205B176491e57") |
| Name | Chainlink Token on Hemi Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hyperliquid](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hyperliquid)
### [Hyperliquid Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#hyperliquid-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999` |
| Address | [0x1AC2EE68b8d038C982C1E1f73F596927dd70De59](https://app.hyperliquid.xyz/explorer/address/0x1AC2EE68b8d038C982C1E1f73F596927dd70De59 "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59") |
| Name | Chainlink Token on Hemi Mainnet Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ink](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ink)
### [Ink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `57073` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.inkonchain.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Ink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Ink Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ink-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `763373` |
| Address | [0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4](https://explorer-sepolia.inkonchain.com/address/0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4 "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4") |
| Name | Chainlink Token on Ink Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Kroma](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#kroma)
### [Kroma Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#kroma-mainnet)
ETH is used to pay for transactions on the Kroma mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `255` |
| Address | [0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450](https://kromascan.xyz/address/0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450 "0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450") |
| Name | Chainlink Token on Kroma Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Kroma Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#kroma-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Kroma testnet.
Testnet Native and LINK are available at [faucets.chain.link/kroma-testnet](https://faucets.chain.link/kroma-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2358` |
| Address | [0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8](https://testnet.kromascan.xyz/address/0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8 "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8") |
| Name | Chainlink Token on Kroma Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Lens](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#lens)
### [Lens Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#lens-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `232` |
| Address | [0x6e970e8d6758164798290c8db1D79a527ca6e1B2](https://explorer.lens.xyz/address/0x6e970e8d6758164798290c8db1D79a527ca6e1B2 "0x6e970e8d6758164798290c8db1D79a527ca6e1B2") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lens Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#lens-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `37111` |
| Address | [0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36](https://block-explorer.testnet.lens.dev/address/0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36 "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36") |
| Name | Chainlink Token on Lens Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Linea](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#linea)
### [Linea Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#linea-mainnet)
ETH is used to pay for transactions on Linea Mainnet. Use the [Linea Bridge](https://bridge.linea.build/) to transfer ETH from Ethereum to Linea.
| Parameter | Value |
| --- | --- |
| Chain ID | `59144` |
| Address | [0xa18152629128738a5c081eb226335FEd4B9C95e9](https://lineascan.build/address/0xa18152629128738a5c081eb226335FEd4B9C95e9 "0xa18152629128738a5c081eb226335FEd4B9C95e9") |
| Name | Chainlink Token on Linea Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
### [Linea Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#linea-sepolia-testnet)
Testnet ETH is used to pay for transactions on Linea Sepolia. Testnet Native and LINK are available at [faucets.chain.link/linea-sepolia](https://faucets.chain.link/linea-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59141` |
| Address | [0xF64E6E064a71B45514691D397ad4204972cD6508](https://sepolia.lineascan.build/address/0xF64E6E064a71B45514691D397ad4204972cD6508 "0xF64E6E064a71B45514691D397ad4204972cD6508") |
| Name | Chainlink Token on Linea Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
## [Lisk](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#lisk)
### [Lisk Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#lisk-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1135` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://blockscout.lisk.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lisk Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#lisk-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4202` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia-blockscout.lisk.com/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mantle](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mantle)
### [Mantle Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mantle-mainnet)
MNT is used to pay for transactions on the Mantle mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5000` |
| Address | [0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043](https://mantlescan.xyz/address/0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043 "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043") |
| Name | ChainLink Token on Mantle Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mantle Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mantle-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mantle Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/mantle-sepolia](https://faucets.chain.link/mantle-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5003` |
| Address | [0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04](https://sepolia.mantlescan.xyz/address/0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04 "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04") |
| Name | ChainLink Token on Mantle Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [MegaEth](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#megaeth)
### [MegaEth Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#megaeth-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `6342` |
| Address | [0x4d03398C2588D92B220578dAEde29814E41c8033](https://megaexplorer.xyz/address/0x4d03398C2588D92B220578dAEde29814E41c8033 "0x4d03398C2588D92B220578dAEde29814E41c8033") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Merlin](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#merlin)
### [Merlin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#merlin-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4200` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://scan.merlinchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Merlin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Merlin Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#merlin-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `686868` |
| Address | [0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50](https://testnet-scan.merlinchain.io//address/0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50 "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50") |
| Name | Chainlink Token on Merlin Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Metal](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#metal)
### [Metal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#metal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1750` |
| Address | [0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C](https://explorer.metall2.com/address/0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Metal L2 Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#metal-l2-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1740` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://testnet.explorer.metall2.com/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Metis](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#metis)
### [Metis Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#metis-mainnet)
METIS is used to pay for transactions on Metis Mainnet. You can use the [Metis Bridge](https://bridge.metis.io/) to transfer METIS from Ethereum Mainnet to Metis Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1088` |
| Address | [0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353](https://explorer.metis.io/address/0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353 "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353") |
| Name | Chainlink Token on Metis Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.metis.io](https://explorer.metis.io/) |
### [Metis Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#metis-sepolia-testnet)
Testnet METIS is used to pay for transactions on Metis Sepolia.
Testnet METIS and LINK are available at [faucets.chain.link/metis-sepolia](https://faucets.chain.link/metis-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59902` |
| Address | [0x9870D6a0e05F867EAAe696e106741843F7fD116D](https://sepolia-explorer.metisdevops.link/address/0x9870D6a0e05F867EAAe696e106741843F7fD116D "0x9870D6a0e05F867EAAe696e106741843F7fD116D") |
| Name | Chainlink Token on Metis Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia-explorer.metisdevops.link](https://sepolia-explorer.metisdevops.link/) |
## [Mind Network](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mind-network)
### [Mind Network Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mind-network-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `228` |
| Address | [0xd8A9246e84903e82CA01e42774b01A7CdD465BFa](https://explorer.mindnetwork.xyz/address/0xd8A9246e84903e82CA01e42774b01A7CdD465BFa "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mind Network Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mind-network-testnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `192940` |
| Address | [0xE0352dEd874c3E72d922CE533E136385fBE4a9B4](https://explorer-testnet.mindnetwork.xyz/address/0xE0352dEd874c3E72d922CE533E136385fBE4a9B4 "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mint](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mint)
### [Mint Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mint-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `185` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.mintchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mint Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mint-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1687` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://sepolia-testnet-explorer.mintchain.io/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mode](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mode)
### [Mode Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mode-mainnet)
ETH is used to pay for transactions on the Mode mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `34443` |
| Address | [0x183E3691EfF3524B2315D3703D94F922CbE51F54](https://explorer.mode.network/address/0x183E3691EfF3524B2315D3703D94F922CbE51F54 "0x183E3691EfF3524B2315D3703D94F922CbE51F54") |
| Name | Chainlink Token on Mode Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mode Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#mode-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mode testnet.
Testnet ETH and LINK are available at [faucets.chain.link/mode-sepolia](https://faucets.chain.link/mode-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `919` |
| Address | [0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d](https://sepolia.explorer.mode.network/address/0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d") |
| Name | Chainlink Token on Mode Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Monad](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#monad)
### [Monad Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#monad-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `10143` |
| Address | [0x6fE981Dbd557f81ff66836af0932cba535Cbc343](https://testnet.monadexplorer.com/address/0x6fE981Dbd557f81ff66836af0932cba535Cbc343 "0x6fE981Dbd557f81ff66836af0932cba535Cbc343") |
| Name | Chainlink Token on Monad Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Moonbeam](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#moonbeam)
### [Moonbeam Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#moonbeam-mainnet)
GLMR is used to pay transaction fees on Moonbeam Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1284` |
| Address | [0x012414A392F9FA442a3109f1320c439C45518aC3](https://moonscan.io/address/0x012414A392F9FA442a3109f1320c439C45518aC3 "0x012414A392F9FA442a3109f1320c439C45518aC3") |
| Name | Chainlink Token on Moonbeam Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [Moonriver](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#moonriver)
### [Moonriver Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#moonriver-mainnet)
MOVR is used to pay transaction fees on Moonriver Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1285` |
| Address | [0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e](https://moonriver.moonscan.io/address/0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e "0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e") |
| Name | Chainlink Token on Moonriver Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [OPBNB](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#opbnb)
### [OPBNB Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#opbnb-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `204` |
| Address | [0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA](https://opbnbscan.com/address/0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [OPBNB Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#opbnb-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5611` |
| Address | [0x56E16E648c51609A14Eb14B99BAB771Bee797045](https://opbnb-testnet.bscscan.com/address/0x56E16E648c51609A14Eb14B99BAB771Bee797045 "0x56E16E648c51609A14Eb14B99BAB771Bee797045") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [OP](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#op)
### [OP Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#op-mainnet)
ETH is used to pay for transactions on OP. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer ETH and LINK from Ethereum Mainnet to OP Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `10` |
| Address | [0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6](https://optimistic.etherscan.io/address/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6 "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6") |
| Name | Chainlink Token on OP Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
### [OP Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#op-sepolia-testnet)
Testnet ETH is used to pay for transactions on OP Sepolia. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer testnet ETH from Ethereum Sepolia to OP Sepolia. Testnet ETH is available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
Testnet Native and LINK is available at [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia). Testnet bridges might not transfer the correct type of LINK to OP Sepolia, so it is recommended to use only the LINK acquired from [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia) when developing applications on testnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `11155420` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia-optimism.etherscan.io/token/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on OP Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
## [Plume](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#plume)
### [Plume Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#plume-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98866` |
| Address | [0xb549B375dA0c76f8b3877B9aDfDD28378f087A64](https://phoenix-explorer.plumenetwork.xyz/address/0xb549B375dA0c76f8b3877B9aDfDD28378f087A64 "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Plume Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#plume-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98867` |
| Address | [0xB97e3665AEAF96BDD6b300B2e0C93C662104A068](https://testnet-explorer.plumenetwork.xyz/address/0xB97e3665AEAF96BDD6b300B2e0C93C662104A068 "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
| | |
## [Polygon](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#polygon)
### [Polygon Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#polygon-mainnet)
POL is used to pay for transactions on Polygon. You can use the [Polygon Bridge](https://wallet.polygon.technology/polygon/bridge/) to transfer tokens to Polygon Mainnet and then use [Polygon Gas Swap](https://wallet.polygon.technology/polygon/gas-swap/) to swap supported tokens to POL.
| Parameter | Value |
| --- | --- |
| Chain ID | `137` |
| Address | [0xb0897686c545045aFc77CF20eC7A532E3120E0F1](https://polygonscan.com/address/0xb0897686c545045aFc77CF20eC7A532E3120E0F1 "0xb0897686c545045aFc77CF20eC7A532E3120E0F1") |
| Name | Chainlink Token on Polygon Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
### [Polygon Amoy Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#polygon-amoy-testnet)
Testnet POL is used to pay for transactions on Polygon Amoy.
Testnet POL and LINK are available at [faucets.chain.link/polygon-amoy](https://faucets.chain.link/polygon-amoy).
| Parameter | Value |
| --- | --- |
| Chain ID | `80002` |
| Address | [0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904](https://amoy.polygonscan.com/address/0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904 "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904") |
| Name | Chainlink Token on Polygon Amoy Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
## [Polygon zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#polygon-zkevm)
### [Polygon zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#polygon-zkevm-mainnet)
ETH is used to pay for transactions on Polygon zkEVM. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer ETH and LINK to Polygon zkEVM.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1101` |
| Address | [0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D](https://zkevm.polygonscan.com/address/0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D") |
| Name | Chainlink Token on Polygon zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Polygon zkEVM Cardona Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#polygon-zkevm-cardona-testnet)
Testnet ETH is used to pay for transactions on Polygon zkEVM Cardona testnet. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer testnet ETH to Polygon zkEVM testnet.
Testnet ETH and LINK are available at [faucets.chain.link/polygon-zkevm-cardona](https://faucets.chain.link/polygon-zkevm-cardona).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2442` |
| Address | [0x5576815a38A3706f37bf815b261cCc7cCA77e975](https://cardona-zkevm.polygonscan.com/address/0x5576815a38A3706f37bf815b261cCc7cCA77e975 "0x5576815a38A3706f37bf815b261cCc7cCA77e975") |
| Name | Chainlink Token on Polygon zkEVM Cardona Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ronin](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ronin)
### [Ronin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ronin-mainnet)
RON is used to pay for transactions on Ronin Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `2020` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://app.roninchain.com/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Ronin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://app.roninchain.com/) |
### [Ronin Saigon Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#ronin-saigon-testnet)
Testnet RON is used to pay for transactions on Ronin Saigon.
Testnet Native and LINK are available at [faucets.chain.link/ronin-saigon](https://faucets.chain.link/ronin-saigon).
| Parameter | Value |
| --- | --- |
| Chain ID | `2021` |
| Address | [0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15](https://saigon-app.roninchain.com/address/0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15 "0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15") |
| Name | Chainlink Token on Ronin Saigon Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://saigon-app.roninchain.com/) |
## [Rootstock](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#rootstock)
### [Rootstock Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#rootstock-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `30` |
| Address | [0x938D84942f5D924070A6bb82F8e56a5E2b3098A4](https://explorer.rsk.co/address/0x938D84942f5D924070A6bb82F8e56a5E2b3098A4 "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4") |
| Name | Chainlink Token on Rootstock Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Rootstock Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#rootstock-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `31` |
| Address | [0x39dD98CcCC3a51b2c0007e23517488e363581264](https://explorer.testnet.rsk.co/address/0x39dD98CcCC3a51b2c0007e23517488e363581264 "0x39dD98CcCC3a51b2c0007e23517488e363581264") |
| Name | Chainlink Token on Rootstock Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Scroll](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#scroll)
### [Scroll Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#scroll-mainnet)
ETH is used to pay for transactions on Scroll Mainnet. Use the [Scroll Bridge](https://scroll.io/bridge) to transfer ETH from Ethereum to Scroll.
| Parameter | Value |
| --- | --- |
| Chain ID | `534352` |
| Address | [0x548C6944cba02B9D1C0570102c89de64D258d3Ac](https://scrollscan.com/address/0x548C6944cba02B9D1C0570102c89de64D258d3Ac "0x548C6944cba02B9D1C0570102c89de64D258d3Ac") |
| Name | Chainlink Token on Scroll Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
### [Scroll Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#scroll-sepolia-testnet)
Testnet ETH is used to pay for transactions on Scroll testnet.
Testnet ETH and LINK are available at [faucets.chain.link/scroll-sepolia-testnet](https://faucets.chain.link/scroll-sepolia-testnet). Testnet ETH is also available from the [Scroll Sepolia Faucets](https://docs.scroll.io/en/user-guide/faucet/#scroll-sepolia-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `534351` |
| Address | [0x231d45b53C905c3d6201318156BDC725c9c3B9B1](https://sepolia-blockscout.scroll.io/address/0x231d45b53C905c3d6201318156BDC725c9c3B9B1 "0x231d45b53C905c3d6201318156BDC725c9c3B9B1") |
| Name | Chainlink Token on Scroll Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
## [Sei](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#sei)
### [Sei Network](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#sei-network)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1329` |
| Address | [?chain=pacific-1](https://seitrace.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F/?chain=pacific-1 "?chain=pacific-1") |
| Name | Chainlink Token on Sei Network |
| Symbol | LINK |
| Decimals | 18 |
### [Sei Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#sei-testnet)
Testnet Native and LINK are available at [faucets.chain.link/sei-testnet](https://faucets.chain.link/sei-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1328` |
| Address | [0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2](https://seitrace.com/token/0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2 "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2") |
| Name | Chainlink Token on Sei Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Shibarium](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#shibarium)
### [Shibarium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#shibarium-mainnet)
BONE is used to pay for transactions on Shibarium Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `109` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://www.shibariumscan.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Shibarium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.shibariumscan.io](https://explorer.shibariumscan.io/) |
### [Shibarium Puppynet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#shibarium-puppynet)
Testnet BONE is used to pay for transactions on Shibarium Puppynet.
Testnet Native and LINK are available at [faucets.chain.link/shibarium-puppynet](https://faucet.chain.link/shibarium-puppynet).
| Parameter | Value |
| --- | --- |
| Chain ID | `157` |
| Address | [0x44637eEfD71A090990f89faEC7022fc74B2969aD](https://puppyscan.shib.io/address/0x44637eEfD71A090990f89faEC7022fc74B2969aD "0x44637eEfD71A090990f89faEC7022fc74B2969aD") |
| Name | Chainlink Token on Shibarium Puppynet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [puppyscan.shib.io](https://puppyscan.shib.io/) |
## [Solana](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#solana)
### [Solana Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#solana-mainnet)
SOL is used to pay for transactions on the Solana network.
| Parameter | Value |
| --- | --- |
| Chain ID | `mainnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
| Network status | [status.solana.com/](https://status.solana.com/) |
### [Solana Devnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#solana-devnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `devnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L?cluster=devnet "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
## [Soneium](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#soneium)
### [Soneium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#soneium-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1868` |
| Address | [0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec](https://soneium.blockscout.com/address/0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec") |
| Name | Chainlink Token on Soneium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Soneium Minato Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#soneium-minato-testnet)
Testnet ETH is used to pay for transactions on the Soneium Minato testnet. Testnet Native and LINK are available at [faucets.chain.link/soneium-minato](https://faucets.chain.link/soneium-minato).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1946` |
| Address | [0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2](https://soneium-minato.blockscout.com/address/0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2 "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2") |
| Name | Chainlink Token on Soneium Minato Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Sonic](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#sonic)
### [Sonic Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#sonic-mainnet)
S is used to pay for transactions on Sonic mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `146` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://sonicscan.org/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Sonic Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Sonic Blaze Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#sonic-blaze-testnet)
Testnet S is used to pay for transactions on Sonic Blaze testnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `57054` |
| Address | [0xd8C1eEE32341240A62eC8BC9988320bcC13c8580](https://testnet.sonicscan.org/address/0xd8C1eEE32341240A62eC8BC9988320bcC13c8580 "0xd8C1eEE32341240A62eC8BC9988320bcC13c8580") |
| Name | Chainlink Token on Sonice Blaze Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Starknet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#starknet)
### [Starknet Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#starknet-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `SN_MAIN` |
| Address | [0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9](https://voyager.online/contract/0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9 "0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9") |
| Name | Chainlink Token on Starknet Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Superseed](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#superseed)
### [Superseed Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#superseed-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5330` |
| Address | [0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9](https://explorer.superseed.xyz/address/0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9 "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Superseed Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#superseed-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `53302` |
| Address | [0xA3063eE34d9B4E407DF0E153c9bE679680e3A956](https://sepolia-explorer.superseed.xyz/address/0xA3063eE34d9B4E407DF0E153c9bE679680e3A956 "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Taiko](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#taiko)
### [Taiko Alethia](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#taiko-alethia)
| Parameter | Value |
| --- | --- |
| Chain ID | `167000` |
| Address | [0x917a3964C37993e99a47C779bEb5Db1E9d13804d](https://taikoscan.io/address/0x917a3964C37993e99a47C779bEb5Db1E9d13804d "0x917a3964C37993e99a47C779bEb5Db1E9d13804d") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Taiko Hekla Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#taiko-hekla-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `167009` |
| Address | [0x01fcdEedbA59bc68b0914D92277678dAB6827e2c](https://hekla.taikoscan.io/address/0x01fcdEedbA59bc68b0914D92277678dAB6827e2c "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Treasure](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#treasure)
### [Treasure Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#treasure-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `61166` |
| Address | [0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A](https://treasurescan.io/address/0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A "0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A") |
| Name | Chainlink Token on Treasure Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Treasure Topaz Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#treasure-topaz-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `978658` |
| Address | [0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5](https://topaz.treasurescan.io/address/0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5 "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5") |
| Name | Chainlink Token on Treasure Topaz Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Unichain](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#unichain)
### [Unichain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#unichain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `130` |
| Address | [0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A](https://uniscan.xyz//address/0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A") |
| Name | Chainlink Token on Unichain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Unichain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#unichain-sepolia-testnet)
Testnet Native and LINK are available at [faucets.chain.link/unichain-testnet](https://faucets.chain.link/unichain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1301` |
| Address | [0xda40816f278Cd049c137F6612822D181065EBfB4](https://sepolia.uniscan.xyz/address/0xda40816f278Cd049c137F6612822D181065EBfB4 "0xda40816f278Cd049c137F6612822D181065EBfB4") |
| Name | Chainlink Token on Unichain Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Wemix](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#wemix)
### [Wemix Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#wemix-mainnet)
WEMIX is used to pay for transactions on the Wemix mainnet. To transfer LINK from Ethereum to Wemix, use [Transporter](https://app.transporter.io/).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1111` |
| Address | [0x80f1FcdC96B55e459BF52b998aBBE2c364935d69](https://wemixscan.com/address/0x80f1FcdC96B55e459BF52b998aBBE2c364935d69 "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69") |
| Name | Chainlink Token on Wemix Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Wemix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#wemix-testnet)
Testnet WEMIX is used to pay for transactions on the Wemix testnet.
Testnet Native and LINK are available at [faucets.chain.link/wemix-testnet](https://faucets.chain.link/wemix-testnet). Testnet WEMIX is also available from the [WEMIX Faucet](https://wallet.test.wemix.com/faucet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1112` |
| Address | [0x3580c7A817cCD41f7e02143BFa411D4EeAE78093](https://testnet.wemixscan.com/address/0x3580c7A817cCD41f7e02143BFa411D4EeAE78093 "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093") |
| Name | Chainlink Token on Wemix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [World](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#world)
### [World Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#world-chain-mainnet)
ETH is used to pay for transactions on World Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `480` |
| Address | [0x915b648e994d5f31059B38223b9fbe98ae185473](https://worldscan.org/address/0x915b648e994d5f31059B38223b9fbe98ae185473 "0x915b648e994d5f31059B38223b9fbe98ae185473") |
| Name | Chainlink Token on World Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain/) |
### [World Chain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#world-chain-sepolia-testnet)
Testnet ETH is used to pay for transactions on World Chain Sepolia. Testnet Native and LINK are available at [faucets.chain.link/worldchain-testnet](https://faucets.chain.link/worldchain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `486` |
| Address | [0xC82Ea35634BcE95C394B6BC00626f827bB0F4801](https://sepolia.worldscan.org/address/0xC82Ea35634BcE95C394B6BC00626f827bB0F4801 "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801") |
| Name | Chainlink Token on World Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain) |
## [X Layer](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#x-layer)
### [X Layer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#x-layer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `196` |
| Address | [0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9](https://www.oklink.com/xlayer/address/0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9 "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9") |
| Name | Chainlink Token on X Layer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [X Layer Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#x-layer-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `195` |
| Address | [0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55](https://www.oklink.com/xlayer-test/address/0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55 "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55") |
| Name | Chainlink Token on X Layer Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Zircuit](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zircuit)
### [Zircuit Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zircuit-mainnet)
ETH is used to pay for transactions on the Zircuit mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48900` |
| Address | [0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a](https://explorer.zircuit.com/address/0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a") |
| Name | Chainlink Token on Zircuit Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Zircuit Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zircuit-testnet)
Testnet ETH is used to pay for transactions on the Zircuit testnet.
Testnet Native and LINK are available at [faucets.chain.link/zircuit-sepolia](https://faucets.chain.link/zircuit-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48899` |
| Address | [0xDEE94506570cA186BC1e3516fCf4fd719C312cCD](https://explorer.testnet.zircuit.com/address/0xDEE94506570cA186BC1e3516fCf4fd719C312cCD "0xDEE94506570cA186BC1e3516fCf4fd719C312cCD") |
| Name | Chainlink Token on Zircuit Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [ZKsync](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zksync)
### [ZKsync Era Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zksync-era-mainnet)
ETH is used to pay for transactions on ZKsync Era Mainnet. Use the recommended [ZKsync Bridges](https://zksync.io/explore#bridges) to transfer ETH from Ethereum to ZKsync.
| Parameter | Value |
| --- | --- |
| Chain ID | `324` |
| Address | [0x52869bae3E091e36b0915941577F2D47d8d8B534](https://explorer.zksync.io/address/0x52869bae3E091e36b0915941577F2D47d8d8B534 "0x52869bae3E091e36b0915941577F2D47d8d8B534") |
| Name | Chainlink Token on ZKsync Era Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.zksync.io](https://explorer.zksync.io/) |
### [ZKsync Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zksync-sepolia-testnet)
Testnet ETH is used to pay for transactions on ZKsync Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/zksync-sepolia](https://faucets.chain.link/zksync-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `300` |
| Address | [0x23A1aFD896c8c8876AF46aDc38521f4432658d1e](https://sepolia.explorer.zksync.io/address/0x23A1aFD896c8c8876AF46aDc38521f4432658d1e "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e") |
| Name | Chainlink Token on ZKsync Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [uptime.com/statuspage/zkSync](https://uptime.com/statuspage/zkSync) |
## [Zora](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zora)
### [Zora Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zora-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `7777777` |
| Address | [0x3662B6f73c5560229D1a98aF6e59E6649D568374](https://explorer.zora.energy/address/0x3662B6f73c5560229D1a98aF6e59E6649D568374 "0x3662B6f73c5560229D1a98aF6e59E6649D568374") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Zora Testnet](https://docs.chain.link/resources/link-token-contracts?parent=vrf\#zora-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999999999` |
| Address | [0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e](https://sepolia.explorer.zora.energy/address/0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## Get the latest Chainlink content straight to your inbox.
Email Address
[iframe](https://td.doubleclick.net/td/rul/346357746?random=1748840470198&cv=11&fst=1748840470198&fmt=3&bg=ffffff&guid=ON&async=1&gcl_ctr=1>m=45be55s2v891173849z8847174275za200zb847174275&gcd=13l3l3l3l1l1&dma=0&tag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&ptag_exp=101509157~103116026~103200004~103233427~103252644~103252646~103351869~103351871~104481633~104481635~104559073~104559075~104612245~104612247&u_w=1280&u_h=1024&url=https%3A%2F%2Fdocs.chain.link%2Fresources%2Flink-token-contracts%3Fparent%3Dvrf&_ng=1&label=_duuCKn_k4cYEPL_k6UB&hn=www.googleadservices.com&frm=0&tiba=LINK%20Token%20Contracts%20%7C%20Chainlink%20Documentation&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=1164100154.1748840470&uaa=x86&uab=64&uafvl=Google%2520Chrome%3B137.0.7151.55%7CChromium%3B137.0.7151.55%7CNot%252FA)Brand%3B24.0.0.0&uamb=0&uam=&uap=Linux%20x86_64&uapv=6.6.72&uaw=0&ec_mode=a&fledge=1&capi=1&_tu=Cg&em=tv.1&ct_cookie_present=0)
## LINK Token Contracts
[iframe](https://www.googletagmanager.com/ns.html?id=GTM-N6DQ47T)
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [LINK Token Contracts](https://docs.chain.link/resources/link-token-contracts?parent=automation\#overview)
* * *
LINK tokens are used to pay node operators for retrieving data for smart contracts and also for deposits placed by node operators as required by contract creators. The smallest denomination of LINK is called a Juel, and 1,000,000,000,000,000,000 (1e18) Juels are equal to 1 LINK. This is similar to Wei, which is the [smallest denomination of ETH](https://ethereum.org/en/developers/docs/intro-to-ether/#denominations).
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 services on a given blockchain, it is necessary to use LINK tokens. You can transfer tokens across blockchains by using [Chainlink CCIP](https://docs.chain.link/ccip/tutorials/evm/transfer-tokens-from-contract) or applications such as [Transporter](https://app.transporter.io/) and [XSwap](https://xswap.link/).
## [Abstract](https://docs.chain.link/resources/link-token-contracts?parent=automation\#abstract)
### [Abstract Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#abstract-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2741` |
| Address | [0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd](https://abscan.org/address/0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd "0x2Ea38D6cDb6774992d4A62fe622f4405663729Dd") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Abstract Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#abstract-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `11124` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia.abscan.org/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Apechain](https://docs.chain.link/resources/link-token-contracts?parent=automation\#apechain)
### [Apechain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#apechain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33139` |
| Address | [0xf575731b78981B86d34321d875A3D25a48479be6](https://apescan.io/address/0xf575731b78981B86d34321d875A3D25a48479be6 "0xf575731b78981B86d34321d875A3D25a48479be6") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Apechain Curtis Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#apechain-curtis-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `33111` |
| Address | [0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E](https://explorer.curtis.apechain.com/address/0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E "0xa787B3E0471b718bBfEaA59B502fd0C4EBd7b74E") |
| Name | Chainlink Token on Apechain Curtis Testnet |
| Symbol | LINK |
## [Arbitrum](https://docs.chain.link/resources/link-token-contracts?parent=automation\#arbitrum)
### [Arbitrum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#arbitrum-mainnet)
ETH is used to pay for transactions on the Arbitrum Mainnet.
You can use the [Arbitrum Bridge](https://bridge.arbitrum.io/) to transfer ETH and LINK from Ethereum Mainnet to Arbitrum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `42161` |
| Address | [0xf97f4df75117a78c1A5a0DBb814Af92458539FB4](https://explorer.arbitrum.io/address/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4 "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4") |
| Name | Chainlink Token on Arbitrum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
### [Arbitrum Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#arbitrum-sepolia-testnet)
Testnet ETH is used to pay for transactions on Arbitrum Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/arbitrum-sepolia](https://faucets.chain.link/arbitrum-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `421614` |
| Address | [0xb1D4538B4571d411F07960EF2838Ce337FE1E80E](https://sepolia.arbiscan.io/address/0xb1D4538B4571d411F07960EF2838Ce337FE1E80E "0xb1D4538B4571d411F07960EF2838Ce337FE1E80E") |
| Name | Chainlink Token on Arbitrum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [arbiscan.freshstatus.io](https://arbiscan.freshstatus.io/) |
## [Astar](https://docs.chain.link/resources/link-token-contracts?parent=automation\#astar)
### [Astar Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#astar-mainnet)
ASTR is used to pay for transactions on Astar Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `592` |
| Address | [0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d](https://astar.blockscout.com/address/0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d "0x31EFB841d5e0b4082F7E1267dab8De1b853f2A9d") |
| Name | ChainLink Token on Astar Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/astar/dashboard](https://portal.astar.network/astar/dashboard) |
### [Astar Shibuya](https://docs.chain.link/resources/link-token-contracts?parent=automation\#astar-shibuya)
SBY is used to pay for transactions on Astar Shibuya. Testnet SBY is available at [Astar Shibuya Faucet](https://docs.astar.network/docs/build/environment/faucet/).
Testnet LINK is available at [faucets.chain.link/astar-shibuya](https://faucets.chain.link/astar-shibuya).
| Parameter | Value |
| --- | --- |
| Chain ID | `81` |
| Address | [0xe74037112db8807B3B4B3895F5790e5bc1866a29](https://shibuya.blockscout.com/address/0xe74037112db8807B3B4B3895F5790e5bc1866a29 "0xe74037112db8807B3B4B3895F5790e5bc1866a29") |
| Name | ChainLink Token on Astar Shibuya |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [portal.astar.network/shibuya-testnet/dashboard](https://portal.astar.network/shibuya-testnet/dashboard) |
## [Avalanche](https://docs.chain.link/resources/link-token-contracts?parent=automation\#avalanche)
### [Avalanche Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#avalanche-mainnet)
AVAX is used to pay for transactions on Avalanche Mainnet. Use the [Avalanche Bridge](https://bridge.avax.network/) to transfer LINK from Ethereum Mainnet to Avalanche.
| Parameter | Value |
| --- | --- |
| Chain ID | `43114` |
| Address | [0x5947BB275c521040051D82396192181b413227A3](https://snowtrace.io/address/0x5947BB275c521040051D82396192181b413227A3 "0x5947BB275c521040051D82396192181b413227A3") |
| Name | Chainlink Token on Avalanche Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
### [Avalanche Fuji Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#avalanche-fuji-testnet)
Testnet AVAX is used to pay for transactions on Avalanche Fuji.
Testnet AVAX and LINK are available at [faucets.chain.link/fuji](https://faucets.chain.link/fuji). Testnet AVAX is also available at [core.app/tools/testnet-faucet](https://core.app/tools/testnet-faucet/).
| Parameter | Value |
| --- | --- |
| Chain ID | `43113` |
| Address | [0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846](https://testnet.snowtrace.io/address/0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846 "0x0b9d5D9136855f6FEc3c0993feE6E9CE8a297846") |
| Name | Chainlink Token on Avalanche Fuji Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.avax.network](https://status.avax.network/) |
## [BASE](https://docs.chain.link/resources/link-token-contracts?parent=automation\#base)
### [BASE Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#base-mainnet)
ETH is used to pay for transactions on BASE. You can use the [BASE Bridge](https://bridge.base.org/deposit) to transfer ETH from Ethereum Mainnet to BASE Mainnet. To transfer LINK from Ethereum to Base, use [Transporter](https://app.transporter.io/) or [XSwap Bridge](https://xswap.link/bridge).
| Parameter | Value |
| --- | --- |
| Chain ID | `8453` |
| Address | [0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196](https://basescan.org/address/0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196 "0x88Fb150BDc53A65fe94Dea0c9BA0a6dAf8C6e196") |
| Name | Chainlink Token on BASE Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [basescan.org](https://basescan.org/) |
### [BASE Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#base-sepolia-testnet)
Testnet ETH is used to pay for transactions on BASE Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/base-sepolia](https://faucets.chain.link/base-sepolia). Testnet ETH is also available from one of the [BASE Network Faucets](https://docs.base.org/tools/network-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `84532` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia.basescan.org/address/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on BASE Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.basescan.org](https://sepolia.basescan.org/) |
## [Berachain](https://docs.chain.link/resources/link-token-contracts?parent=automation\#berachain)
### [Berachain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#berachain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80094` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://berascan.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Berachain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Berachain Bartio Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#berachain-bartio-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `80084` |
| Address | [0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271](https://bartio.beratrail.io/address/0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271 "0x52CEEed7d3f8c6618e4aaD6c6e555320d0D83271") |
| Name | ChainLink Token on Berachain Bartio Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bitlayer](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bitlayer)
### [Bitlayer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bitlayer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `200901` |
| Address | [0x56B275c0Ec034a229a1deD8DB17089544bc276D9](https://www.btrscan.com/address/0x56B275c0Ec034a229a1deD8DB17089544bc276D9 "0x56B275c0Ec034a229a1deD8DB17089544bc276D9") |
| Name | Chainlink Token on Bitlayer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
### [Bitlayer Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bitlayer-testnet)
Testnet LINK are available at [faucets.chain.link/bitlayer-testnet](https://faucets.chain.link/bitlayer-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `200810` |
| Address | [0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48](https://testnet.btrscan.com/address/0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48 "0x2A5bACb2440BC17D53B7b9Be73512dDf92265e48") |
| Name | Chainlink Token on Bitlayer Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bitlayer.org](https://bitlayer.org/) |
## [Blast](https://docs.chain.link/resources/link-token-contracts?parent=automation\#blast)
### [Blast Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#blast-mainnet)
ETH is used to pay for transactions on Blast. You can use the [Blast Bridge](https://blast.io/en/bridge) to transfer ETH from Ethereum Mainnet to Blast Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `81457` |
| Address | [0x93202eC683288a9EA75BB829c6baCFb2BfeA9013](https://blastscan.io/address/0x93202eC683288a9EA75BB829c6baCFb2BfeA9013 "0x93202eC683288a9EA75BB829c6baCFb2BfeA9013") |
| Name | Chainlink Token on Blast Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [blastscan.io](https://blastscan.io/) |
### [Blast Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#blast-sepolia-testnet)
Testnet ETH is used to pay for transactions on Blast Sepolia. Testnet ETH is available from one of the [Blast Network Faucets](https://docs.blast.io/tools/faucets). Testnet ETH and LINK are also available at [faucets.chain.link/blast-sepolia](https://faucets.chain.link/blast-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `168587773` |
| Address | [0x02c359ebf98fc8BF793F970F9B8302bb373BdF32](https://sepolia.blastscan.io/address/0x02c359ebf98fc8BF793F970F9B8302bb373BdF32 "0x02c359ebf98fc8BF793F970F9B8302bb373BdF32") |
| Name | Chainlink Token on Blast Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia.blastscan.io](https://sepolia.blastscan.io/) |
## [BNB Chain](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bnb-chain)
### [BNB Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bnb-chain-mainnet)
BNB is used to pay for transactions on the BNB Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `56` |
| Address | [0x404460C6A5EdE2D891e8297795264fDe62ADBB75](https://bscscan.com/token/0x404460C6A5EdE2D891e8297795264fDe62ADBB75 "0x404460C6A5EdE2D891e8297795264fDe62ADBB75") |
| Name | Chainlink Token on BNB Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
### [BNB Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bnb-chain-testnet)
Testnet BNB is used to pay for transactions on the BNB Chain testnet. Testnet BNB is available at [testnet.bnbchain.org/faucet-smart](https://testnet.bnbchain.org/faucet-smart).
Testnet Native and LINK is available at [faucets.chain.link/bnb-chain-testnet](https://faucets.chain.link/bnb-chain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `97` |
| Address | [0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06](https://testnet.bscscan.com/address/0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06 "0x84b9B910527Ad5C03A9Ca831909E21e236EA7b06") |
| Name | Chainlink Token on BNB Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [bscscan.freshstatus.io](https://bscscan.freshstatus.io/) |
## [Bob](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bob)
### [Bob Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bob-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `60808` |
| Address | [0x5aB885CDa7216b163fb6F813DEC1E1532516c833](https://explorer.gobob.xyz/address/0x5aB885CDa7216b163fb6F813DEC1E1532516c833 "0x5aB885CDa7216b163fb6F813DEC1E1532516c833") |
| Name | Chainlink Token on Bob Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
### [Bob Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bob-sepolia-testnet)
Testnet ETH and LINK are available at [faucets.chain.link/bob-testnet](https://faucets.chain.link/bob-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `808813` |
| Address | [0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183](https://bob-sepolia.explorer.gobob.xyz/address/0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183 "0xcd2AfB2933391E35e8682cbaaF75d9CA7339b183") |
| Name | Chainlink Token on Bob Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [conduit-bob.checkly-dashboards.com](https://conduit-bob.checkly-dashboards.com/) |
## [Botanix](https://docs.chain.link/resources/link-token-contracts?parent=automation\#botanix)
### [Botanix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#botanix-testnet)
Testnet Native and LINK are available at [faucets.chain.link/botanix-testnet](https://faucets.chain.link/botanix-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `3636` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://testnet.botanixscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Botanix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Bsquared](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bsquared)
### [Bsquared Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bsquared-mainnet)
BTC is used to pay for transactions on Bsquared Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `223` |
| Address | [0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39](https://explorer.bsquared.network/address/0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39 "0x709229D9587886a1eDFeE6b5cE636E1D70d1cE39") |
| Name | Chainlink Token on Bsquared Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.bsquared.network](https://explorer.bsquared.network/) |
### [Bsquared Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#bsquared-testnet)
Testnet BTC is used to pay for transactions on Bsquared Testnet.
Testnet BTC and LINK are available at [faucets.chain.link/bsquared-testnet](https://faucet.chain.link/bsquared-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1123` |
| Address | [0x436a1907D9e6a65E6db73015F08f9C66F6B63E45](https://testnet-explorer.bsquared.network/address/0x436a1907D9e6a65E6db73015F08f9C66F6B63E45 "0x436a1907D9e6a65E6db73015F08f9C66F6B63E45") |
| Name | Chainlink Token on Bsquared Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [testnet-explorer.bsquared.network](https://testnet-explorer.bsquared.network/) |
## [Celo](https://docs.chain.link/resources/link-token-contracts?parent=automation\#celo)
### [Celo Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#celo-mainnet)
CELO is used to pay for transactions on the Celo network.
| Parameter | Value |
| --- | --- |
| Chain ID | `42220` |
| Address | [0xd07294e6E917e07dfDcee882dd1e2565085C2ae0](https://explorer.celo.org/mainnet/address/0xd07294e6E917e07dfDcee882dd1e2565085C2ae0 "0xd07294e6E917e07dfDcee882dd1e2565085C2ae0") |
| Name | Chainlink Token on Celo Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org](https://explorer.celo.org/) |
### [Celo Alfajores Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#celo-alfajores-testnet)
Testnet CELO is used to pay for transactions on Celo Alfajores. Testnet CELO is available from the [Alfajores Token Faucet](https://faucet.celo.org/alfajores).
Testnet Native and LINK is available at [faucets.chain.link/celo-alfajores-testnet](https://faucets.chain.link/celo-alfajores-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `44787` |
| Address | [0x32E08557B14FaD8908025619797221281D439071](https://explorer.celo.org/alfajores/address/0x32E08557B14FaD8908025619797221281D439071 "0x32E08557B14FaD8908025619797221281D439071") |
| Name | Chainlink Token on Celo Alfajores Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.celo.org/alfajores](https://explorer.celo.org/alfajores/) |
## [Core](https://docs.chain.link/resources/link-token-contracts?parent=automation\#core)
### [Core Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#core-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1116` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://scan.coredao.org/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Core Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Corn](https://docs.chain.link/resources/link-token-contracts?parent=automation\#corn)
### [Corn Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#corn-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `21000000` |
| Address | [0x7311DED199CC28D80E58e81e8589aa160199FCD2](https://cornscan.io/address/0x7311DED199CC28D80E58e81e8589aa160199FCD2 "0x7311DED199CC28D80E58e81e8589aa160199FCD2") |
| Name | Chainlink Token on Corn Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Corn Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#corn-testnet)
Testnet Native and LINK is available at [faucets.chain.link/corn-testnet](https://faucets.chain.link/corn-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `21000001` |
| Address | [0x996EfAb6011896Be832969D91E9bc1b3983cfdA1](https://testnet.cornscan.io/address/0x996EfAb6011896Be832969D91E9bc1b3983cfdA1 "0x996EfAb6011896Be832969D91E9bc1b3983cfdA1") |
| Name | Chainlink Token on Corn Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos](https://docs.chain.link/resources/link-token-contracts?parent=automation\#cronos)
### [Cronos Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#cronos-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `25` |
| Address | [0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85](https://explorer.cronos.org/address/0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85 "0x8c80A01F461f297Df7F9DA3A4f740D7297C8Ac85") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#cronos-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `338` |
| Address | [0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262](https://explorer.cronos.org/testnet/address/0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262 "0x2896e619Fa7c831A7E52b87EffF4d671bEc6B262") |
| Name | Chainlink Token on Cronos Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Cronos zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=automation\#cronos-zkevm)
### [Cronos zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#cronos-zkevm-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `388` |
| Address | [0x61170ca9fB9cF98d4c7d684e07be6D969D59667E](https://explorer.zkevm.cronos.org/address/0x61170ca9fB9cF98d4c7d684e07be6D969D59667E "0x61170ca9fB9cF98d4c7d684e07be6D969D59667E") |
| Name | Chainlink Token on Cronos zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Cronos zkEVM Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#cronos-zkevm-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `240` |
| Address | [0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827](https://explorer.zkevm.cronos.org/testnet/address/0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827 "0xB96217A159cB11Bc51E87c8CAe46C7dF8826A827") |
| Name | Chainlink Token on Cronos zkEVM Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ethereum](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ethereum)
### [Ethereum Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ethereum-mainnet)
ETH is used to pay for transactions on Ethereum Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1` |
| Address | [0x514910771AF9Ca656af840dff83E8264EcF986CA](https://etherscan.io/token/0x514910771AF9Ca656af840dff83E8264EcF986CA "0x514910771AF9Ca656af840dff83E8264EcF986CA") |
| Name | Chainlink Token on Ethereum Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ethstats.dev](https://ethstats.dev/) |
### [Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#sepolia-testnet)
Testnet ETH is used to pay for transactions on Sepolia.
Testnet ETH and LINK are available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `11155111` |
| Address | [0x779877A7B0D9E8603169DdbD7836e478b4624789](https://sepolia.etherscan.io/token/0x779877A7B0D9E8603169DdbD7836e478b4624789 "0x779877A7B0D9E8603169DdbD7836e478b4624789") |
| Name | Chainlink Token on Ethereum Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
### [Ethereum Holesky Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ethereum-holesky-testnet)
Testnet ETH is used to pay for transactions on Holesky.
Testnet ETH and LINK are available at [faucets.chain.link/holesky](https://faucets.chain.link/holesky).
| Parameter | Value |
| --- | --- |
| Chain ID | `17000` |
| Address | [0x685cE6742351ae9b618F383883D6d1e0c5A31B4B](https://holesky.etherscan.io/token/0x685cE6742351ae9b618F383883D6d1e0c5A31B4B "0x685cE6742351ae9b618F383883D6d1e0c5A31B4B") |
| Name | Chainlink Token on Ethereum Holesky Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [etherscan.freshstatus.io](https://etherscan.freshstatus.io/) |
## [Etherlink](https://docs.chain.link/resources/link-token-contracts?parent=automation\#etherlink)
### [Etherlink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#etherlink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `42793` |
| Address | [0x8ce7618E8f8E514d13889283F58FF03B794e6CC3](https://explorer.etherlink.com/address/0x8ce7618E8f8E514d13889283F58FF03B794e6CC3 "0x8ce7618E8f8E514d13889283F58FF03B794e6CC3") |
| Name | Chainlink Token on Etherlink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Etherlink Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#etherlink-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `128123` |
| Address | [0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950](https://testnet.explorer.etherlink.com/address/0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950 "0xE02E6E94d4a5E215F308bDd564a1B6f13AA56950") |
| Name | Chainlink Token on Etherlink Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Fantom](https://docs.chain.link/resources/link-token-contracts?parent=automation\#fantom)
### [Fantom Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#fantom-mainnet)
FTM is used to pay for transactions on Fantom Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `250` |
| Address | [0x6F43FF82CCA38001B6699a8AC47A2d0E66939407](https://ftmscan.com/address/0x6F43FF82CCA38001B6699a8AC47A2d0E66939407 "0x6F43FF82CCA38001B6699a8AC47A2d0E66939407") |
| Name | Chainlink Token on Fantom Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
### [Fantom Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#fantom-testnet)
Testnet FTM is used to pay for transactions on Fantom testnet. Testnet FTM is available at [faucet.fantom.network](https://faucet.fantom.network/).
Testnet LINK is available at [faucets.chain.link/fantom-testnet](https://faucets.chain.link/fantom-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `4002` |
| Address | [0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F](https://testnet.ftmscan.com/address/0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F "0xfaFedb041c0DD4fA2Dc0d87a6B0979Ee6FA7af5F") |
| Name | Chainlink Token on Fantom Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [ftmscan.freshstatus.io](https://ftmscan.freshstatus.io/) |
## [Fraxtal](https://docs.chain.link/resources/link-token-contracts?parent=automation\#fraxtal)
### [Fraxtal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#fraxtal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `252` |
| Address | [0xd6A6ba37fAaC229B9665E86739ca501401f5a940](https://fraxscan.com/address/0xd6A6ba37fAaC229B9665E86739ca501401f5a940 "0xd6A6ba37fAaC229B9665E86739ca501401f5a940") |
| Name | Chainlink Token on Fraxtal Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Fraxtal Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#fraxtal-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `2522` |
| Address | [0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF](https://holesky.fraxscan.com/address/0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF "0xb192c5Fb8e33694F0CFD4357806a63dc59feEBEF") |
| Name | Chainlink Token on Fraxtal Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Gnosis Chain (xDai)](https://docs.chain.link/resources/link-token-contracts?parent=automation\#gnosis-chain-xdai)
### [Gnosis Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#gnosis-chain-mainnet)
xDAI is used to pay for transactions on Gnosis Chain Mainnet. Use the [xDai Bridge](https://bridge.gnosischain.com/) to send DAI from Ethereum Mainnet to Gnosis Chain and convert it to xDAI. Use [OmniBridge](https://omni.gnosischain.com/bridge) to send LINK from Ethereum Mainnet to Gnosis Chain.
| Parameter | Value |
| --- | --- |
| Chain ID | `100` |
| Address | [0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2](https://gnosisscan.io/address/0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2 "0xE2e73A1c69ecF83F464EFCE6A5be353a37cA09b2") |
| Name | Chainlink Token on Gnosis Chain (xDai) Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
### [Gnosis Chiado Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#gnosis-chiado-testnet)
xDAI is used to pay for transactions on Gnosis Chiado testnet. Use the [Chiado faucet](https://faucet.chiadochain.net/) to get testnet xDAI.
Testnet Native and LINK is available at [faucets.chain.link/gnosis-chiado-testnet](https://faucets.chain.link/gnosis-chiado-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `10200` |
| Address | [0xDCA67FD8324990792C0bfaE95903B8A64097754F](https://gnosis-chiado.blockscout.com/address/0xDCA67FD8324990792C0bfaE95903B8A64097754F "0xDCA67FD8324990792C0bfaE95903B8A64097754F") |
| Name | Chainlink Token on Gnosis Chiado Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [gnosisscan.freshstatus.io](https://gnosisscan.freshstatus.io/) |
## [HashKey](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hashkey)
### [HashKey Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hashkey-chain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `177` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://hashkey.blockscout.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on HashKey Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [HashKey Chain Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hashkey-chain-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `133` |
| Address | [0x8418c4d7e8e17ab90232DC72150730E6c4b84F57](https://hashkeychain-testnet-explorer.alt.technology/address/0x8418c4d7e8e17ab90232DC72150730E6c4b84F57 "0x8418c4d7e8e17ab90232DC72150730E6c4b84F57") |
| Name | Chainlink Token on HashKey Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hedera](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hedera)
### [Hedera Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hedera-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98](https://hashscan.io/mainnet/contract/0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98 "0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hedera Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hedera-testnet)
Testnet HBAR is used to pay for transactions on the Hedera testnet.
Testnet Native and LINK is available at [faucets.chain.link/hedera-testnet](https://faucets.chain.link/hedera-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `296` |
| Address | [0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6](https://hashscan.io/testnet/contract/0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6 "0x90a386d59b9A6a4795a011e8f032Fc21ED6FEFb6") |
| Name | Chainlink Token on Hedera Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hemi](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hemi)
### [Hemi Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hemi-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `43111` |
| Address | [0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8](https://explorer.hemi.xyz/address/0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8 "0x63dbE12A6381D64adE47bc3D92aBF4393DFF4BC8") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Hemi Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hemi-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `743111` |
| Address | [0x5246409a2e09134824c4E709602205B176491e57](https://testnet.explorer.hemi.xyz/address/0x5246409a2e09134824c4E709602205B176491e57 "0x5246409a2e09134824c4E709602205B176491e57") |
| Name | Chainlink Token on Hemi Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Hyperliquid](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hyperliquid)
### [Hyperliquid Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#hyperliquid-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999` |
| Address | [0x1AC2EE68b8d038C982C1E1f73F596927dd70De59](https://app.hyperliquid.xyz/explorer/address/0x1AC2EE68b8d038C982C1E1f73F596927dd70De59 "0x1AC2EE68b8d038C982C1E1f73F596927dd70De59") |
| Name | Chainlink Token on Hemi Mainnet Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ink](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ink)
### [Ink Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ink-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `57073` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.inkonchain.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Ink Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Ink Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ink-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `763373` |
| Address | [0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4](https://explorer-sepolia.inkonchain.com/address/0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4 "0x3423C922911956b1Ccbc2b5d4f38216a6f4299b4") |
| Name | Chainlink Token on Ink Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Kroma](https://docs.chain.link/resources/link-token-contracts?parent=automation\#kroma)
### [Kroma Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#kroma-mainnet)
ETH is used to pay for transactions on the Kroma mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `255` |
| Address | [0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450](https://kromascan.xyz/address/0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450 "0xC1F6f7622ad37C3f46cDF6F8AA0344ADE80BF450") |
| Name | Chainlink Token on Kroma Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Kroma Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#kroma-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Kroma testnet.
Testnet Native and LINK are available at [faucets.chain.link/kroma-testnet](https://faucets.chain.link/kroma-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2358` |
| Address | [0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8](https://testnet.kromascan.xyz/address/0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8 "0xa75cCA5b404ec6F4BB6EC4853D177FE7057085c8") |
| Name | Chainlink Token on Kroma Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Lens](https://docs.chain.link/resources/link-token-contracts?parent=automation\#lens)
### [Lens Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#lens-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `232` |
| Address | [0x6e970e8d6758164798290c8db1D79a527ca6e1B2](https://explorer.lens.xyz/address/0x6e970e8d6758164798290c8db1D79a527ca6e1B2 "0x6e970e8d6758164798290c8db1D79a527ca6e1B2") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lens Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#lens-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `37111` |
| Address | [0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36](https://block-explorer.testnet.lens.dev/address/0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36 "0x7f1b9eE544f9ff9bB521Ab79c205d79C55250a36") |
| Name | Chainlink Token on Lens Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Linea](https://docs.chain.link/resources/link-token-contracts?parent=automation\#linea)
### [Linea Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#linea-mainnet)
ETH is used to pay for transactions on Linea Mainnet. Use the [Linea Bridge](https://bridge.linea.build/) to transfer ETH from Ethereum to Linea.
| Parameter | Value |
| --- | --- |
| Chain ID | `59144` |
| Address | [0xa18152629128738a5c081eb226335FEd4B9C95e9](https://lineascan.build/address/0xa18152629128738a5c081eb226335FEd4B9C95e9 "0xa18152629128738a5c081eb226335FEd4B9C95e9") |
| Name | Chainlink Token on Linea Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
### [Linea Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#linea-sepolia-testnet)
Testnet ETH is used to pay for transactions on Linea Sepolia. Testnet Native and LINK are available at [faucets.chain.link/linea-sepolia](https://faucets.chain.link/linea-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59141` |
| Address | [0xF64E6E064a71B45514691D397ad4204972cD6508](https://sepolia.lineascan.build/address/0xF64E6E064a71B45514691D397ad4204972cD6508 "0xF64E6E064a71B45514691D397ad4204972cD6508") |
| Name | Chainlink Token on Linea Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [linea.statuspage.io](https://linea.statuspage.io/) |
## [Lisk](https://docs.chain.link/resources/link-token-contracts?parent=automation\#lisk)
### [Lisk Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#lisk-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1135` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://blockscout.lisk.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Lisk Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#lisk-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4202` |
| Address | [0x6641415a61bCe80D97a715054d1334360Ab833Eb](https://sepolia-blockscout.lisk.com/address/0x6641415a61bCe80D97a715054d1334360Ab833Eb "0x6641415a61bCe80D97a715054d1334360Ab833Eb") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mantle](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mantle)
### [Mantle Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mantle-mainnet)
MNT is used to pay for transactions on the Mantle mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5000` |
| Address | [0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043](https://mantlescan.xyz/address/0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043 "0xfe36cF0B43aAe49fBc5cFC5c0AF22a623114E043") |
| Name | ChainLink Token on Mantle Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mantle Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mantle-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mantle Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/mantle-sepolia](https://faucets.chain.link/mantle-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `5003` |
| Address | [0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04](https://sepolia.mantlescan.xyz/address/0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04 "0x22bdEdEa0beBdD7CfFC95bA53826E55afFE9DE04") |
| Name | ChainLink Token on Mantle Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [MegaEth](https://docs.chain.link/resources/link-token-contracts?parent=automation\#megaeth)
### [MegaEth Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#megaeth-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `6342` |
| Address | [0x4d03398C2588D92B220578dAEde29814E41c8033](https://megaexplorer.xyz/address/0x4d03398C2588D92B220578dAEde29814E41c8033 "0x4d03398C2588D92B220578dAEde29814E41c8033") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Merlin](https://docs.chain.link/resources/link-token-contracts?parent=automation\#merlin)
### [Merlin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#merlin-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `4200` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://scan.merlinchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Merlin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Merlin Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#merlin-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `686868` |
| Address | [0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50](https://testnet-scan.merlinchain.io//address/0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50 "0xB904d5b9a1e74F6576fFF550EeE75Eaa68e2dd50") |
| Name | Chainlink Token on Merlin Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Metal](https://docs.chain.link/resources/link-token-contracts?parent=automation\#metal)
### [Metal Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#metal-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1750` |
| Address | [0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C](https://explorer.metall2.com/address/0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C "0x587d19DDF735D6B536aAdB1a2A92938eB23B8d5C") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Metal L2 Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#metal-l2-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1740` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://testnet.explorer.metall2.com/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Metis](https://docs.chain.link/resources/link-token-contracts?parent=automation\#metis)
### [Metis Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#metis-mainnet)
METIS is used to pay for transactions on Metis Mainnet. You can use the [Metis Bridge](https://bridge.metis.io/) to transfer METIS from Ethereum Mainnet to Metis Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1088` |
| Address | [0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353](https://explorer.metis.io/address/0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353 "0xd2FE54D1E5F568eB710ba9d898Bf4bD02C7c0353") |
| Name | Chainlink Token on Metis Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.metis.io](https://explorer.metis.io/) |
### [Metis Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#metis-sepolia-testnet)
Testnet METIS is used to pay for transactions on Metis Sepolia.
Testnet METIS and LINK are available at [faucets.chain.link/metis-sepolia](https://faucets.chain.link/metis-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `59902` |
| Address | [0x9870D6a0e05F867EAAe696e106741843F7fD116D](https://sepolia-explorer.metisdevops.link/address/0x9870D6a0e05F867EAAe696e106741843F7fD116D "0x9870D6a0e05F867EAAe696e106741843F7fD116D") |
| Name | Chainlink Token on Metis Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [sepolia-explorer.metisdevops.link](https://sepolia-explorer.metisdevops.link/) |
## [Mind Network](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mind-network)
### [Mind Network Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mind-network-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `228` |
| Address | [0xd8A9246e84903e82CA01e42774b01A7CdD465BFa](https://explorer.mindnetwork.xyz/address/0xd8A9246e84903e82CA01e42774b01A7CdD465BFa "0xd8A9246e84903e82CA01e42774b01A7CdD465BFa") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mind Network Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mind-network-testnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `192940` |
| Address | [0xE0352dEd874c3E72d922CE533E136385fBE4a9B4](https://explorer-testnet.mindnetwork.xyz/address/0xE0352dEd874c3E72d922CE533E136385fBE4a9B4 "0xE0352dEd874c3E72d922CE533E136385fBE4a9B4") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mint](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mint)
### [Mint Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mint-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `185` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://explorer.mintchain.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Mint Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mint-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `1687` |
| Address | [0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237](https://sepolia-testnet-explorer.mintchain.io/address/0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237 "0x7ECBE3416d92E8d79C8e5d8EB8Aad5DdEdAa0237") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Mode](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mode)
### [Mode Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mode-mainnet)
ETH is used to pay for transactions on the Mode mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `34443` |
| Address | [0x183E3691EfF3524B2315D3703D94F922CbE51F54](https://explorer.mode.network/address/0x183E3691EfF3524B2315D3703D94F922CbE51F54 "0x183E3691EfF3524B2315D3703D94F922CbE51F54") |
| Name | Chainlink Token on Mode Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Mode Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#mode-sepolia-testnet)
Testnet ETH is used to pay for transactions on the Mode testnet.
Testnet ETH and LINK are available at [faucets.chain.link/mode-sepolia](https://faucets.chain.link/mode-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `919` |
| Address | [0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d](https://sepolia.explorer.mode.network/address/0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d "0x925a4bfE64AE2bFAC8a02b35F78e60C29743755d") |
| Name | Chainlink Token on Mode Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Monad](https://docs.chain.link/resources/link-token-contracts?parent=automation\#monad)
### [Monad Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#monad-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `10143` |
| Address | [0x6fE981Dbd557f81ff66836af0932cba535Cbc343](https://testnet.monadexplorer.com/address/0x6fE981Dbd557f81ff66836af0932cba535Cbc343 "0x6fE981Dbd557f81ff66836af0932cba535Cbc343") |
| Name | Chainlink Token on Monad Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Moonbeam](https://docs.chain.link/resources/link-token-contracts?parent=automation\#moonbeam)
### [Moonbeam Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#moonbeam-mainnet)
GLMR is used to pay transaction fees on Moonbeam Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1284` |
| Address | [0x012414A392F9FA442a3109f1320c439C45518aC3](https://moonscan.io/address/0x012414A392F9FA442a3109f1320c439C45518aC3 "0x012414A392F9FA442a3109f1320c439C45518aC3") |
| Name | Chainlink Token on Moonbeam Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [Moonriver](https://docs.chain.link/resources/link-token-contracts?parent=automation\#moonriver)
### [Moonriver Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#moonriver-mainnet)
MOVR is used to pay transaction fees on Moonriver Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `1285` |
| Address | [0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e](https://moonriver.moonscan.io/address/0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e "0x8b12Ac23BFe11cAb03a634C1F117D64a7f2cFD3e") |
| Name | Chainlink Token on Moonriver Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [moonscan.freshstatus.io](https://moonscan.freshstatus.io/) |
## [OPBNB](https://docs.chain.link/resources/link-token-contracts?parent=automation\#opbnb)
### [OPBNB Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#opbnb-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `204` |
| Address | [0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA](https://opbnbscan.com/address/0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA "0x99f0d88B81b758AB07E22C7AbA00E0121a882dEA") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [OPBNB Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#opbnb-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5611` |
| Address | [0x56E16E648c51609A14Eb14B99BAB771Bee797045](https://opbnb-testnet.bscscan.com/address/0x56E16E648c51609A14Eb14B99BAB771Bee797045 "0x56E16E648c51609A14Eb14B99BAB771Bee797045") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [OP](https://docs.chain.link/resources/link-token-contracts?parent=automation\#op)
### [OP Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#op-mainnet)
ETH is used to pay for transactions on OP. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer ETH and LINK from Ethereum Mainnet to OP Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `10` |
| Address | [0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6](https://optimistic.etherscan.io/address/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6 "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6") |
| Name | Chainlink Token on OP Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
### [OP Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#op-sepolia-testnet)
Testnet ETH is used to pay for transactions on OP Sepolia. Use the [OP Bridge](https://app.optimism.io/bridge) to transfer testnet ETH from Ethereum Sepolia to OP Sepolia. Testnet ETH is available at [faucets.chain.link/sepolia](https://faucets.chain.link/sepolia).
Testnet Native and LINK is available at [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia). Testnet bridges might not transfer the correct type of LINK to OP Sepolia, so it is recommended to use only the LINK acquired from [faucets.chain.link/optimism-sepolia](https://faucets.chain.link/optimism-sepolia) when developing applications on testnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `11155420` |
| Address | [0xE4aB69C077896252FAFBD49EFD26B5D171A32410](https://sepolia-optimism.etherscan.io/token/0xE4aB69C077896252FAFBD49EFD26B5D171A32410 "0xE4aB69C077896252FAFBD49EFD26B5D171A32410") |
| Name | Chainlink Token on OP Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.optimism.io](https://status.optimism.io/) |
## [Plume](https://docs.chain.link/resources/link-token-contracts?parent=automation\#plume)
### [Plume Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#plume-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98866` |
| Address | [0xb549B375dA0c76f8b3877B9aDfDD28378f087A64](https://phoenix-explorer.plumenetwork.xyz/address/0xb549B375dA0c76f8b3877B9aDfDD28378f087A64 "0xb549B375dA0c76f8b3877B9aDfDD28378f087A64") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Plume Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#plume-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `98867` |
| Address | [0xB97e3665AEAF96BDD6b300B2e0C93C662104A068](https://testnet-explorer.plumenetwork.xyz/address/0xB97e3665AEAF96BDD6b300B2e0C93C662104A068 "0xB97e3665AEAF96BDD6b300B2e0C93C662104A068") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
| | |
## [Polygon](https://docs.chain.link/resources/link-token-contracts?parent=automation\#polygon)
### [Polygon Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#polygon-mainnet)
POL is used to pay for transactions on Polygon. You can use the [Polygon Bridge](https://wallet.polygon.technology/polygon/bridge/) to transfer tokens to Polygon Mainnet and then use [Polygon Gas Swap](https://wallet.polygon.technology/polygon/gas-swap/) to swap supported tokens to POL.
| Parameter | Value |
| --- | --- |
| Chain ID | `137` |
| Address | [0xb0897686c545045aFc77CF20eC7A532E3120E0F1](https://polygonscan.com/address/0xb0897686c545045aFc77CF20eC7A532E3120E0F1 "0xb0897686c545045aFc77CF20eC7A532E3120E0F1") |
| Name | Chainlink Token on Polygon Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
### [Polygon Amoy Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#polygon-amoy-testnet)
Testnet POL is used to pay for transactions on Polygon Amoy.
Testnet POL and LINK are available at [faucets.chain.link/polygon-amoy](https://faucets.chain.link/polygon-amoy).
| Parameter | Value |
| --- | --- |
| Chain ID | `80002` |
| Address | [0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904](https://amoy.polygonscan.com/address/0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904 "0x0Fd9e8d3aF1aaee056EB9e802c3A762a667b1904") |
| Name | Chainlink Token on Polygon Amoy Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [polygonscan.freshstatus.io](https://polygonscan.freshstatus.io/) |
## [Polygon zkEVM](https://docs.chain.link/resources/link-token-contracts?parent=automation\#polygon-zkevm)
### [Polygon zkEVM Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#polygon-zkevm-mainnet)
ETH is used to pay for transactions on Polygon zkEVM. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer ETH and LINK to Polygon zkEVM.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1101` |
| Address | [0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D](https://zkevm.polygonscan.com/address/0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D "0xdB7A504CF869484dd6aC5FaF925c8386CBF7573D") |
| Name | Chainlink Token on Polygon zkEVM Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Polygon zkEVM Cardona Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#polygon-zkevm-cardona-testnet)
Testnet ETH is used to pay for transactions on Polygon zkEVM Cardona testnet. Use the [Polygon zkEVM Bridge](https://wallet.polygon.technology/zkEVM-Bridge/bridge) to transfer testnet ETH to Polygon zkEVM testnet.
Testnet ETH and LINK are available at [faucets.chain.link/polygon-zkevm-cardona](https://faucets.chain.link/polygon-zkevm-cardona).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `2442` |
| Address | [0x5576815a38A3706f37bf815b261cCc7cCA77e975](https://cardona-zkevm.polygonscan.com/address/0x5576815a38A3706f37bf815b261cCc7cCA77e975 "0x5576815a38A3706f37bf815b261cCc7cCA77e975") |
| Name | Chainlink Token on Polygon zkEVM Cardona Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Ronin](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ronin)
### [Ronin Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ronin-mainnet)
RON is used to pay for transactions on Ronin Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `2020` |
| Address | [0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b](https://app.roninchain.com/address/0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b "0x3902228D6A3d2Dc44731fD9d45FeE6a61c722D0b") |
| Name | Chainlink Token on Ronin Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://app.roninchain.com/) |
### [Ronin Saigon Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#ronin-saigon-testnet)
Testnet RON is used to pay for transactions on Ronin Saigon.
Testnet Native and LINK are available at [faucets.chain.link/ronin-saigon](https://faucets.chain.link/ronin-saigon).
| Parameter | Value |
| --- | --- |
| Chain ID | `2021` |
| Address | [0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15](https://saigon-app.roninchain.com/address/0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15 "0x5bB50A6888ee6a67E22afFDFD9513be7740F1c15") |
| Name | Chainlink Token on Ronin Saigon Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [app.roninchain.com](https://saigon-app.roninchain.com/) |
## [Rootstock](https://docs.chain.link/resources/link-token-contracts?parent=automation\#rootstock)
### [Rootstock Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#rootstock-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `30` |
| Address | [0x938D84942f5D924070A6bb82F8e56a5E2b3098A4](https://explorer.rsk.co/address/0x938D84942f5D924070A6bb82F8e56a5E2b3098A4 "0x938D84942f5D924070A6bb82F8e56a5E2b3098A4") |
| Name | Chainlink Token on Rootstock Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Rootstock Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#rootstock-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `31` |
| Address | [0x39dD98CcCC3a51b2c0007e23517488e363581264](https://explorer.testnet.rsk.co/address/0x39dD98CcCC3a51b2c0007e23517488e363581264 "0x39dD98CcCC3a51b2c0007e23517488e363581264") |
| Name | Chainlink Token on Rootstock Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Scroll](https://docs.chain.link/resources/link-token-contracts?parent=automation\#scroll)
### [Scroll Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#scroll-mainnet)
ETH is used to pay for transactions on Scroll Mainnet. Use the [Scroll Bridge](https://scroll.io/bridge) to transfer ETH from Ethereum to Scroll.
| Parameter | Value |
| --- | --- |
| Chain ID | `534352` |
| Address | [0x548C6944cba02B9D1C0570102c89de64D258d3Ac](https://scrollscan.com/address/0x548C6944cba02B9D1C0570102c89de64D258d3Ac "0x548C6944cba02B9D1C0570102c89de64D258d3Ac") |
| Name | Chainlink Token on Scroll Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
### [Scroll Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#scroll-sepolia-testnet)
Testnet ETH is used to pay for transactions on Scroll testnet.
Testnet ETH and LINK are available at [faucets.chain.link/scroll-sepolia-testnet](https://faucets.chain.link/scroll-sepolia-testnet). Testnet ETH is also available from the [Scroll Sepolia Faucets](https://docs.scroll.io/en/user-guide/faucet/#scroll-sepolia-faucets).
| Parameter | Value |
| --- | --- |
| Chain ID | `534351` |
| Address | [0x231d45b53C905c3d6201318156BDC725c9c3B9B1](https://sepolia-blockscout.scroll.io/address/0x231d45b53C905c3d6201318156BDC725c9c3B9B1 "0x231d45b53C905c3d6201318156BDC725c9c3B9B1") |
| Name | Chainlink Token on Scroll Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [status.scroll.io](https://status.scroll.io/) |
## [Sei](https://docs.chain.link/resources/link-token-contracts?parent=automation\#sei)
### [Sei Network](https://docs.chain.link/resources/link-token-contracts?parent=automation\#sei-network)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1329` |
| Address | [?chain=pacific-1](https://seitrace.com/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F/?chain=pacific-1 "?chain=pacific-1") |
| Name | Chainlink Token on Sei Network |
| Symbol | LINK |
| Decimals | 18 |
### [Sei Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#sei-testnet)
Testnet Native and LINK are available at [faucets.chain.link/sei-testnet](https://faucets.chain.link/sei-testnet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1328` |
| Address | [0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2](https://seitrace.com/token/0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2 "0xA9d21ed8260DE08fF39DC5e7B65806d4e1CB817B?chain=atlantic-2") |
| Name | Chainlink Token on Sei Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Shibarium](https://docs.chain.link/resources/link-token-contracts?parent=automation\#shibarium)
### [Shibarium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#shibarium-mainnet)
BONE is used to pay for transactions on Shibarium Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `109` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://www.shibariumscan.io/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Shibarium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.shibariumscan.io](https://explorer.shibariumscan.io/) |
### [Shibarium Puppynet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#shibarium-puppynet)
Testnet BONE is used to pay for transactions on Shibarium Puppynet.
Testnet Native and LINK are available at [faucets.chain.link/shibarium-puppynet](https://faucet.chain.link/shibarium-puppynet).
| Parameter | Value |
| --- | --- |
| Chain ID | `157` |
| Address | [0x44637eEfD71A090990f89faEC7022fc74B2969aD](https://puppyscan.shib.io/address/0x44637eEfD71A090990f89faEC7022fc74B2969aD "0x44637eEfD71A090990f89faEC7022fc74B2969aD") |
| Name | Chainlink Token on Shibarium Puppynet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [puppyscan.shib.io](https://puppyscan.shib.io/) |
## [Solana](https://docs.chain.link/resources/link-token-contracts?parent=automation\#solana)
### [Solana Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#solana-mainnet)
SOL is used to pay for transactions on the Solana network.
| Parameter | Value |
| --- | --- |
| Chain ID | `mainnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
| Network status | [status.solana.com/](https://status.solana.com/) |
### [Solana Devnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#solana-devnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `devnet` |
| Address | [LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L](https://explorer.solana.com/address/LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L?cluster=devnet "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 9 |
## [Soneium](https://docs.chain.link/resources/link-token-contracts?parent=automation\#soneium)
### [Soneium Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#soneium-mainnet)
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1868` |
| Address | [0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec](https://soneium.blockscout.com/address/0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec "0x32D8F819C8080ae44375F8d383Ffd39FC642f3Ec") |
| Name | Chainlink Token on Soneium Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Soneium Minato Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#soneium-minato-testnet)
Testnet ETH is used to pay for transactions on the Soneium Minato testnet. Testnet Native and LINK are available at [faucets.chain.link/soneium-minato](https://faucets.chain.link/soneium-minato).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1946` |
| Address | [0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2](https://soneium-minato.blockscout.com/address/0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2 "0x7ea13478Ea3961A0e8b538cb05a9DF0477c79Cd2") |
| Name | Chainlink Token on Soneium Minato Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Sonic](https://docs.chain.link/resources/link-token-contracts?parent=automation\#sonic)
### [Sonic Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#sonic-mainnet)
S is used to pay for transactions on Sonic mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `146` |
| Address | [0x71052BAe71C25C78E37fD12E5ff1101A71d9018F](https://sonicscan.org/address/0x71052BAe71C25C78E37fD12E5ff1101A71d9018F "0x71052BAe71C25C78E37fD12E5ff1101A71d9018F") |
| Name | Chainlink Token on Sonic Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Sonic Blaze Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#sonic-blaze-testnet)
Testnet S is used to pay for transactions on Sonic Blaze testnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `57054` |
| Address | [0xd8C1eEE32341240A62eC8BC9988320bcC13c8580](https://testnet.sonicscan.org/address/0xd8C1eEE32341240A62eC8BC9988320bcC13c8580 "0xd8C1eEE32341240A62eC8BC9988320bcC13c8580") |
| Name | Chainlink Token on Sonice Blaze Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Starknet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#starknet)
### [Starknet Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#starknet-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `SN_MAIN` |
| Address | [0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9](https://voyager.online/contract/0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9 "0x060f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9") |
| Name | Chainlink Token on Starknet Mainnet |
| Symbol | LINK |
| Decimals | 18 |
## [Superseed](https://docs.chain.link/resources/link-token-contracts?parent=automation\#superseed)
### [Superseed Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#superseed-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `5330` |
| Address | [0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9](https://explorer.superseed.xyz/address/0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9 "0x41Ccf59e3F30EB624eF8E5Ea34b2da96bee472d9") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Superseed Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#superseed-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `53302` |
| Address | [0xA3063eE34d9B4E407DF0E153c9bE679680e3A956](https://sepolia-explorer.superseed.xyz/address/0xA3063eE34d9B4E407DF0E153c9bE679680e3A956 "0xA3063eE34d9B4E407DF0E153c9bE679680e3A956") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Taiko](https://docs.chain.link/resources/link-token-contracts?parent=automation\#taiko)
### [Taiko Alethia](https://docs.chain.link/resources/link-token-contracts?parent=automation\#taiko-alethia)
| Parameter | Value |
| --- | --- |
| Chain ID | `167000` |
| Address | [0x917a3964C37993e99a47C779bEb5Db1E9d13804d](https://taikoscan.io/address/0x917a3964C37993e99a47C779bEb5Db1E9d13804d "0x917a3964C37993e99a47C779bEb5Db1E9d13804d") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Taiko Hekla Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#taiko-hekla-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `167009` |
| Address | [0x01fcdEedbA59bc68b0914D92277678dAB6827e2c](https://hekla.taikoscan.io/address/0x01fcdEedbA59bc68b0914D92277678dAB6827e2c "0x01fcdEedbA59bc68b0914D92277678dAB6827e2c") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
## [Treasure](https://docs.chain.link/resources/link-token-contracts?parent=automation\#treasure)
### [Treasure Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#treasure-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `61166` |
| Address | [0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A](https://treasurescan.io/address/0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A "0xC74eAEf00bE07C6C8A28feAa54e50942efEDF02A") |
| Name | Chainlink Token on Treasure Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Treasure Topaz Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#treasure-topaz-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `978658` |
| Address | [0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5](https://topaz.treasurescan.io/address/0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5 "0x0FE9fAAF3e26f756443fd8f92F6711989a8e0fF5") |
| Name | Chainlink Token on Treasure Topaz Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Unichain](https://docs.chain.link/resources/link-token-contracts?parent=automation\#unichain)
### [Unichain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#unichain-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `130` |
| Address | [0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A](https://uniscan.xyz//address/0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A "0xEF66491eab4bbB582c57b14778afd8dFb70D8A1A") |
| Name | Chainlink Token on Unichain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Unichain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#unichain-sepolia-testnet)
Testnet Native and LINK are available at [faucets.chain.link/unichain-testnet](https://faucets.chain.link/unichain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `1301` |
| Address | [0xda40816f278Cd049c137F6612822D181065EBfB4](https://sepolia.uniscan.xyz/address/0xda40816f278Cd049c137F6612822D181065EBfB4 "0xda40816f278Cd049c137F6612822D181065EBfB4") |
| Name | Chainlink Token on Unichain Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Wemix](https://docs.chain.link/resources/link-token-contracts?parent=automation\#wemix)
### [Wemix Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#wemix-mainnet)
WEMIX is used to pay for transactions on the Wemix mainnet. To transfer LINK from Ethereum to Wemix, use [Transporter](https://app.transporter.io/).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1111` |
| Address | [0x80f1FcdC96B55e459BF52b998aBBE2c364935d69](https://wemixscan.com/address/0x80f1FcdC96B55e459BF52b998aBBE2c364935d69 "0x80f1FcdC96B55e459BF52b998aBBE2c364935d69") |
| Name | Chainlink Token on Wemix Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Wemix Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#wemix-testnet)
Testnet WEMIX is used to pay for transactions on the Wemix testnet.
Testnet Native and LINK are available at [faucets.chain.link/wemix-testnet](https://faucets.chain.link/wemix-testnet). Testnet WEMIX is also available from the [WEMIX Faucet](https://wallet.test.wemix.com/faucet).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `1112` |
| Address | [0x3580c7A817cCD41f7e02143BFa411D4EeAE78093](https://testnet.wemixscan.com/address/0x3580c7A817cCD41f7e02143BFa411D4EeAE78093 "0x3580c7A817cCD41f7e02143BFa411D4EeAE78093") |
| Name | Chainlink Token on Wemix Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [World](https://docs.chain.link/resources/link-token-contracts?parent=automation\#world)
### [World Chain Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#world-chain-mainnet)
ETH is used to pay for transactions on World Chain Mainnet.
| Parameter | Value |
| --- | --- |
| Chain ID | `480` |
| Address | [0x915b648e994d5f31059B38223b9fbe98ae185473](https://worldscan.org/address/0x915b648e994d5f31059B38223b9fbe98ae185473 "0x915b648e994d5f31059B38223b9fbe98ae185473") |
| Name | Chainlink Token on World Chain Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain/) |
### [World Chain Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#world-chain-sepolia-testnet)
Testnet ETH is used to pay for transactions on World Chain Sepolia. Testnet Native and LINK are available at [faucets.chain.link/worldchain-testnet](https://faucets.chain.link/worldchain-testnet).
| Parameter | Value |
| --- | --- |
| Chain ID | `486` |
| Address | [0xC82Ea35634BcE95C394B6BC00626f827bB0F4801](https://sepolia.worldscan.org/address/0xC82Ea35634BcE95C394B6BC00626f827bB0F4801 "0xC82Ea35634BcE95C394B6BC00626f827bB0F4801") |
| Name | Chainlink Token on World Chain Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [world.org](https://world.org/world-chain) |
## [X Layer](https://docs.chain.link/resources/link-token-contracts?parent=automation\#x-layer)
### [X Layer Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#x-layer-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `196` |
| Address | [0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9](https://www.oklink.com/xlayer/address/0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9 "0x8aF9711B44695a5A081F25AB9903DDB73aCf8FA9") |
| Name | Chainlink Token on X Layer Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [X Layer Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#x-layer-sepolia-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `195` |
| Address | [0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55](https://www.oklink.com/xlayer-test/address/0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55 "0x724593f6FCb0De4E6902d4C55D7C74DaA2AF0E55") |
| Name | Chainlink Token on X Layer Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [Zircuit](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zircuit)
### [Zircuit Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zircuit-mainnet)
ETH is used to pay for transactions on the Zircuit mainnet.
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48900` |
| Address | [0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a](https://explorer.zircuit.com/address/0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a "0x5D6d033B4FbD2190D99D930719fAbAcB64d2439a") |
| Name | Chainlink Token on Zircuit Mainnet |
| Symbol | LINK |
| Decimals | 18 |
### [Zircuit Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zircuit-testnet)
Testnet ETH is used to pay for transactions on the Zircuit testnet.
Testnet Native and LINK are available at [faucets.chain.link/zircuit-sepolia](https://faucets.chain.link/zircuit-sepolia).
| Parameter | Value |
| --- | --- |
| `ETH_CHAIN_ID` | `48899` |
| Address | [0xDEE94506570cA186BC1e3516fCf4fd719C312cCD](https://explorer.testnet.zircuit.com/address/0xDEE94506570cA186BC1e3516fCf4fd719C312cCD "0xDEE94506570cA186BC1e3516fCf4fd719C312cCD") |
| Name | Chainlink Token on Zircuit Testnet |
| Symbol | LINK |
| Decimals | 18 |
## [ZKsync](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zksync)
### [ZKsync Era Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zksync-era-mainnet)
ETH is used to pay for transactions on ZKsync Era Mainnet. Use the recommended [ZKsync Bridges](https://zksync.io/explore#bridges) to transfer ETH from Ethereum to ZKsync.
| Parameter | Value |
| --- | --- |
| Chain ID | `324` |
| Address | [0x52869bae3E091e36b0915941577F2D47d8d8B534](https://explorer.zksync.io/address/0x52869bae3E091e36b0915941577F2D47d8d8B534 "0x52869bae3E091e36b0915941577F2D47d8d8B534") |
| Name | Chainlink Token on ZKsync Era Mainnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [explorer.zksync.io](https://explorer.zksync.io/) |
### [ZKsync Sepolia Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zksync-sepolia-testnet)
Testnet ETH is used to pay for transactions on ZKsync Sepolia testnet.
Testnet Native and LINK are available at [faucets.chain.link/zksync-sepolia](https://faucets.chain.link/zksync-sepolia).
| Parameter | Value |
| --- | --- |
| Chain ID | `300` |
| Address | [0x23A1aFD896c8c8876AF46aDc38521f4432658d1e](https://sepolia.explorer.zksync.io/address/0x23A1aFD896c8c8876AF46aDc38521f4432658d1e "0x23A1aFD896c8c8876AF46aDc38521f4432658d1e") |
| Name | Chainlink Token on ZKsync Sepolia Testnet |
| Symbol | LINK |
| Decimals | 18 |
| Network status | [uptime.com/statuspage/zkSync](https://uptime.com/statuspage/zkSync) |
## [Zora](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zora)
### [Zora Mainnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zora-mainnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `7777777` |
| Address | [0x3662B6f73c5560229D1a98aF6e59E6649D568374](https://explorer.zora.energy/address/0x3662B6f73c5560229D1a98aF6e59E6649D568374 "0x3662B6f73c5560229D1a98aF6e59E6649D568374") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
### [Zora Testnet](https://docs.chain.link/resources/link-token-contracts?parent=automation\#zora-testnet)
| Parameter | Value |
| --- | --- |
| Chain ID | `999999999` |
| Address | [0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e](https://sepolia.explorer.zora.energy/address/0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e "0xBEDDEB2DF8904cdBCFB6Bf29b91d122D5Ae4eb7e") |
| Name | Chainlink Token |
| Symbol | LINK |
| Decimals | 18 |
# https://docs.chain.link/architecture-overview/architecture-overview llms-full.txt
## Chainlink Data Architecture
Chainlink CCIP is now officially live on Solana. [View lanes and tokens.](https://docs.chain.link/ccip/directory/mainnet/chain/solana-mainnet?utm_medium=referral&utm_source=chainlink-docs&utm_campaign=solana-ccip)
On this page
# [Data Feeds Architecture](https://docs.chain.link/architecture-overview/architecture-overview\#overview)
## [Basic request model](https://docs.chain.link/architecture-overview/architecture-overview\#basic-request-model)
Chainlink connects smart contracts with external data using its decentralized oracle network. Chainlink API requests are handled 1:1 by an oracle.
The [Basic Request Model](https://docs.chain.link/architecture-overview/architecture-request-model) describes the onchain architecture of requesting data from a single oracle source.
To learn how to make a GET request using a single oracle, see [Make a GET Request](https://docs.chain.link/any-api/get-request/introduction).
## [Decentralized data model](https://docs.chain.link/architecture-overview/architecture-overview\#decentralized-data-model)
For a more robust and trustworthy answer, you can aggregate data from many oracles. With onchain aggregation, data is aggregated from a decentralized network of independent oracle nodes. This architecture is applied to Chainlink Data Feeds, which can aggregate data such as asset price data.
The [Decentralized Data Model](https://docs.chain.link/architecture-overview/architecture-decentralized-model) describes how data is aggregated, and how consumer contracts can retrieve this data.
## [Offchain reporting](https://docs.chain.link/architecture-overview/architecture-overview\#offchain-reporting)
Offchain Reporting (OCR) is an improvement on the decentralization and scalability of Chainlink networks. With our Offchain Reporting aggregators, all nodes communicate using a peer to peer network. During the communication process, a lightweight consensus algorithm runs where each node reports its price observation and signs it. A single aggregate transaction is then transmitted, which saves a significant amount of gas.
To learn more about OCR and how it works, see the [Offchain Reporting](https://docs.chain.link/architecture-overview/off-chain-reporting) page.
## What's next
- [\> Basic Request Model](https://docs.chain.link/architecture-overview/architecture-request-model/)
- [\> Decentralized Data Model](https://docs.chain.link/architecture-overview/architecture-decentralized-model/)
- [\> Offchain Reporting](https://docs.chain.link/architecture-overview/off-chain-reporting/)
# https://docs.chain.link/architecture-overview/architecture-request-model llms-full.txt
# Contracts Overview
All source code is open source and available in the [Chainlink GitHub repository](https://github.com/smartcontractkit/chainlink).
## ChainlinkClient
`ChainlinkClient` is a parent contract that enables smart contracts to consume data from oracles. It's available in the Chainlink smart contract library, which can be installed using the latest package managers.
The client constructs and makes a request to a known Chainlink oracle through the `transferAndCall` function, implemented by the LINK token. This request contains encoded information required for the cycle to succeed.
In the `ChainlinkClient` contract, this call is initiated with a call to `sendChainlinkRequestTo`.
To build your own client contract using `ChainlinkClient`, see [Introduction to Using Any API](https://docs.chain.link/architecture-overview/architecture-request-model), or view the [ChainlinkClient API Reference](https://docs.chain.link/architecture-overview/architecture-request-model) for the `ChainlinkClient` contract.
## LINK Token
LINK is an ERC-677 compliant token which implements `transferAndCall`, a function that allows tokens to be transferred whilst also triggering logic in the receiving contract within a single transaction.
Learn more about [ERC-677 and the LINK token](https://docs.chain.link/architecture-overview/architecture-request-model).
## Operator Contract
Operator contracts are owned by oracle node operators, which run alongside offchain oracle nodes.
## Request
The client contract that initiates this cycle must create a request with the following items:
- The oracle address.
- The job ID, so the oracle knows which tasks to perform.
- The callback function, which the oracle sends the response to.
To learn about how to find oracles to suit your needs, see [Find Existing Jobs](https://docs.chain.link/architecture-overview/architecture-request-model).
Operator contracts are responsible for handling onchain requests made through the LINK token, by implementing `onTokenTransfer` as a `LinkTokenReceiver`. Upon execution of this function, the operator contract emits an `OracleRequest` event containing information about the request.
This event is crucial, as it is monitored by the offchain oracle node which acts upon it.
## Fulfillment
For fulfillment, the operator contract has a `fulfillOracleRequest` function which is used by the node to fulfill a request once it has the result of the job. This function returns the result to the `ChainlinkClient` using the callback function defined in the original request.
## Offchain Oracle Node
The offchain oracle node is responsible for listening for events emitted by its corresponding onchain smart contract. Once it detects an `OracleRequest` event, it uses the data emitted to perform a job.
The most common job type for a Node is to make a GET request to an API, retrieve some data from it, parse the response, convert the result into blockchain-compatible data, then submit it in a transaction back to the operator contract, using the `fulfillOracleRequest` function.
For more information on how to become a node operator, learn how to [run a Chainlink node](https://docs.chain.link/architecture-overview/architecture-request-model).
## Consumer UML
Below is a UML diagram describing the contract structure of `ATestnetConsumer`, a deployed example contract implementing `ChainlinkClient`.
## What's Next
- [Make a GET Request](https://docs.chain.link/data-feeds/get-request/)
- [Decentralized Data Model](https://docs.chain.link/architecture-overview/architecture-decentralized-model)
- [Offchain Reporting](https://docs.chain.link/architecture-overview/architecture-offchain-reporting)
# https://docs.chain.link/architecture-overview/architecture-decentralized-model llms-full.txt
This page describes how data aggregation is applied to produce Chainlink Data Feeds and provides more insight as to how Data Feeds are updated.
## Data aggregation
Each data feed is updated by multiple, independent Chainlink oracle operators. The [AccessControlledOffchainAggregator](https://github.com/smartcontractkit/libocr/blob/master/contract/AccessControlledOffchainAggregator.sol) aggregates the data onchain.
Offchain Reporting (OCR) further enhances the aggregation process. To learn more about OCR and how it works, see the [Offchain Reporting](/architecture-overview/off-chain-reporting) page.
## Shared data resource
Each data feed is built and funded by the community of users who rely on accurate, up-to-date data in their smart contracts. As more users rely on and contribute to a data feed, the quality of the data feed improves. For this reason, each data feed has its own properties depending on the needs of its community of users.
## Decentralized Oracle Network
Each data feed is updated by a decentralized oracle network. Each oracle operator is rewarded for publishing data. The number of oracles contributing to each feed varies. In order for an update to take place, the data feed aggregator contract must receive responses from a minimum number of oracles or the latest answer will not be updated. You can see the minimum number of oracles for the corresponding feed at [data.chain.link](https://data.chain.link).
Each oracle in the set publishes data during an aggregation round. That data is validated and aggregated by a smart contract, which forms the feed's latest and trusted answer.
## Components of a Decentralized Oracle Network
Data Feeds are an example of a decentralized oracle network, and include the following components:
- [A consumer contract](#consumer)
- [A proxy contract](#proxy)
- [An aggregator contract](#aggregator)
To learn how to create a consumer contract that uses an existing data feed, read the [Using Data Feeds](/data-feeds/price-feeds) documentation.
### Consumer
A Consumer contract is any contract that uses Chainlink Data Feeds to consume aggregated data. Consumer contracts must reference the correct [`AggregatorV3Interface`](https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol) contract and call one of the exposed functions.
```solidity
...
AggregatorV3Interface feed = AggregatorV3Interface(address);
return feed.latestRoundData();
```
Offchain applications can also consume data feeds. See the Javascript and Python example code on the [Using Data Feeds](/data-feeds/price-feeds) page to learn more.
### Proxy
Proxy contracts are onchain proxies that point to the aggregator for a particular data feed. Using proxies enables the underlying aggregator to be upgraded without any service interruption to consuming contracts.
Proxy contracts can vary from one data feed to another, but the [`EACAggregatorProxy.sol` contract](https://github.com/smartcontractkit/chainlink/blob/contracts-v1.0.0/contracts/src/v0.6/EACAggregatorProxy.sol) on Github is a common example.
### Aggregator
An aggregator is the contract that receives periodic data updates from the oracle network. Aggregators store aggregated data onchain so that consumers can retrieve it and act upon it within the same transaction.
You can access this data using the Data Feed address and the [`AggregatorV3Interface` contract](https://github.com/smartcontractkit/chainlink/blob/contracts-v1.3.0/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol).
Aggregators receive updates from the oracle network only when the **Deviation Threshold** or **Heartbeat Threshold** triggers an update during an aggregation round. The first condition that is met triggers an update to the data.
- Deviation Threshold: A new aggregation round starts when a node identifies that the off-chain values deviate by more than the defined deviation threshold from the onchain value. Individual nodes monitor one or more data providers for each feed.
- Heartbeat Threshold: A new aggregation round starts after a specified amount of time from the last update.
# https://docs.chain.link/architecture-overview/off-chain-reporting llms-full.txt
Offchain Reporting (OCR) is a significant step towards increasing the decentralization and scalability of Chainlink networks. See the [OCR Protocol Paper](https://research.chain.link/ocr.pdf) for a technical deep dive.
For Offchain Reporting aggregators, all nodes communicate using a peer to peer network. During the communication process, a lightweight consensus algorithm runs where each node reports its data observation and signs it. A single aggregate transaction is then transmitted, which saves a significant amount of gas.
The report contained in the aggregate transaction is signed by a quorum of oracles and contains all oracles' observations. By validating the report onchain and checking the quorum's signatures onchain, we preserve the trustlessness properties of Chainlink oracle networks.
## What is OCR?
Imagine ordering 10 items from an online store. Each item is packaged separately and posted separately, meaning postage and packaging costs must be applied to each one, and the carrier has to transport 10 different boxes.
OCR, on the other hand, packages all of these items into a single box and posts that. This saves postage and packaging fees and all effort the carrier associates with transporting 9 fewer boxes.
The OCR protocol allows nodes to aggregate their observations into a single report offchain using a secure P2P network. A single node then submits a transaction with the aggregated report to the chain. Each report consists of many nodes' observations and has to be signed by a quorum of nodes. These signatures are verified onchain.
Submitting only one transaction per round achieves the following benefits:
- Overall network congestion from Chainlink oracle networks is reduced dramatically
- Individual node operators spend far less on gas costs
- Node networks are more scalable because data feeds can accommodate more nodes
- Data feeds can be updated in a more timely manner since each round needn't wait for multiple transactions to be confirmed before a price is confirmed onchain.
## How does OCR work?
Protocol execution happens mostly offchain over a peer to peer network between Chainlink nodes. The nodes regularly elect a new leader node that drives the rest of the protocol.
The leader regularly requests followers to provide freshly signed observations and aggregates them into a report. It then sends this report back to the followers and asks them to verify the report's validity. If a quorum of followers approves the report by sending a signed copy back to the leader, the leader assembles a final report with the quorum's signatures and broadcasts it to all followers.
The nodes attempt to transmit the final report to the aggregator contract according to a randomized schedule. The aggregator verifies that a quorum of nodes signed the report and exposes the median value to consumers as an answer with a block timestamp and a round ID.
All nodes watch the blockchain for the final report to remove any single point of failure during transmission. If the designated node fails to get their transmission confirmed within a determined period, a round-robin protocol kicks in so other nodes can also transmit the final report until one of them is confirmed.
# https://docs.chain.link/resources/network-integration llms-full.txt
Before an EVM blockchain network can integrate with Chainlink, it must meet certain technical requirements. These requirements are critical for Chainlink nodes and Chainlink services to function correctly on a given network.
The standard EVM requirements required to integrate EVM blockchain networks with Chainlink services can vary, are subject to change, and are provided here for reference purposes only. Chainlink services may have unique requirements that are in addition to the requirements discussed herein.
## Standard EVM requirements
### Solidity global variables and opcode implementation
Solidity global variables and opcode implementation constructs must meet the following requirements in order for Chainlink services to operate correctly and as expected:
- **Global variables:** Support all global variables as specified in the Solidity [Block and Transaction Properties](https://docs.soliditylang.org/en/latest/units-and-global-variables.html#block-and-transaction-properties) documentation. For example, the following variables must be supported:
- `block.blockhash` must return the hash of the requested block for the last 256 blocks
- `block.number` must return the respective chain's block number
- `block.chainID` must return the current chain ID
- `block.timestamp` must return the current block timestamp as seconds since unix epoch
- **Opcodes:** Support all opcodes and expected behaviors from the [OpCodes.sol](https://github.com/ethereum/go-ethereum/blob/master/tests/solidity/contracts/OpCodes.sol) contract
- **Precompiles:** Must support all precompile contracts and expected behaviors listed in the Solidity [Mathematical and Cryptographic Functions](https://docs.soliditylang.org/en/latest/units-and-global-variables.html#mathematical-and-cryptographic-functions) documentation
- **Contract size:** Must support the maximum contract size defined in [EIP-170](https://eips.ethereum.org/EIPS/eip-170)
- **Nonce:** The transaction nonce must increase as transactions are confirmed and propagated to all nodes in the network.
### Finality
Blockchain development teams must ensure that blocks with a commitment level of _finalized_ are actually final. The properties of the finality mechanism, including underlying assumptions and conditions under which finality violations could occur, must be clearly documented and communicated to application developers in the blockchain ecosystem.
Furthermore, this information should be accessible through RPC API tags _finalized_ from the [JSON-RPC specification tags](#support-the-ethereum-json-rpc-specification) described later in this document.
### Standardized RPCs with SLAs
Chainlink nodes use RPCs to communicate with the chain and perform soak testing. It is not possible to ensure the functionality of Chainlink services if RPCs are unstable, underperforming, or nonexistent. RPCs must meet the following requirements:
**Dedicated RPC node:**
- The chain must provide instructions and hardware requirements to set up and run a full node.
- The archive node setup must also be provided and allow queries of blocks from genesis with transaction history and logs.
- The RPC node must enable and allow configurable settings for the following items:
- Batch calls
- Log lookbacks
- HTTPS and WSS connections
**RPC providers:**
- Three separate independent RPC providers must be available.
- RPC providers must ensure there is no rate limit.
- RPC providers must have a valid SSL certificate.
- During the trailing 30 days, the RPC providers must meet the following RPC performance requirements:
- Uptime: At least 99.9%
- Throughput: Support at least 300 calls per second
- Latency: Less than 250ms
- Support SLA: For SEV1 issues, provide a Time to Answer (TTA) of at most 1 hour
### Support the Ethereum JSON-RPC Specification
The chain must support the [Ethereum JSON-RPC Specification](https://ethereum.org/en/developers/docs/apis/json-rpc). Chainlink services use several methods to operate on the chain and require a specific response format to those calls in line with the JSON RPC standard of Ethereum. If a response does not match this required format, the call fails and the Chainlink node will stop functioning properly.
The following methods are specifically required and must follow the [Ethereum RPC API specification](https://ethereum.github.io/execution-apis/):
- [GetCode](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_getcode)
- [Call](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_call)
- [ChainID](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_chainid)
- [SendTransaction](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_sendtransaction)
- [SendRawTransaction](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_sendrawtransaction)
- [GetTransactionReceipt](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_gettransactionreceipt)
- [GetTransactionByHash](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_gettransactionbyhash)
- [EstimateGas](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_estimategas)
- [GasPrice](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_gasprice)
- [GetTransactionCount](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_gettransactioncount)
- [GetLogs](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_getlogs)
- Must follow the spec as defined in [EIP-1474](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1474.md?plain=1#L856). The "latest" block number returned by `GetBlockByNumber` must also be served by `GetLogs` with logs.
- Must accept the `blockhash` param as defined in [EIP-234](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-234.md)
- [GetBalance](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_getbalance)
- [GetBlockByNumber](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_getblockbynumber)
- [GetBlockByHash](https://ethereum.org/en/developers/docs/apis/json-rpc#eth_getblockbyhash)
The above RPC methods must have the expected request and response params with expected data types and values as described in the [Execution-api spec](https://github.com/ethereum/execution-apis/tree/main/tests) and [Ethereum RPC API Spec](https://ethereum.github.io/execution-apis/).
The network must also support the following items:
- **Subscription Methods:** [Websocket JSON-RPC subscription methods](https://geth.ethereum.org/docs/interacting-with-geth/rpc/pubsub)
- `eth_subscribe` with support for subscription to `newHeads` and `logs`
- **Tags:** The RPC methods must support the `finalized`, `latest`, and `pending` tags where applicable. They must also support natural numbers for blocks.
- **Batch Requests:** Must support batching of requests for the `GetLogs` and `GetBlockByNumber` methods.
- **Response size:** Any RPC request including the batch requests must be within the allowed size limit of around 173MB.
### `eth_sendRawTransaction` error message mapping to Geth client error messages
Chains must provide an error message mapping between their specific implementation to the error messages detailed below.
When the `eth_sendRawTransaction` call fails, Chainlink nodes must be able to recognize these error categories and determine the next appropriate action. If the error categories are different or cannot be mapped correctly, the Chainlink node will stop functioning properly and stop sending transactions to the chain. The following error messages are specifically critical:
| Error | Description |
| ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `NonceTooLow` | Returned when the nonce used for the transaction is too low to use. This nonce likely has been already used on the chain previously. |
| `NonceTooHigh` | Returned when the nonce used for the transaction is higher than what the chain can use right now. |
| `ReplacementTransactionUnderpriced` | Returned when the transaction gas price used is too low. There is another transaction with the same nonce in the queue, with a higher price. |
| `LimitReached` | Returned when there are too many outstanding transactions on the node. |
| `TransactionAlreadyInMempool` | Returned when this current transaction was already received and stored. |
| `TerminallyUnderpriced` | Returned when the transaction's gas price is too low and won't be accepted by the node. |
| `InsufficientEth` | Returned when the account doesn't have enough funds to send this transaction. |
| `TxFeeExceedsCap` | Returned when the transaction gas fees exceed the configured cap by this node, and won't be accepted. |
| `L2FeeTooLow` | Specific for Ethereum L2s only. Returned when the gas fees are too low, When this error occurs the Suggested Gas Price is fetched again transaction is retried. |
| `L2FeeTooHigh` | Specific for Ethereum L2s only. Returned when the total fee is too high. When this error occurs the Suggested Gas Price is fetched again transaction is retried. |
| `L2Full` | Specific for Ethereum L2s only. The node is too full, and cannot handle more transactions. |
| `TransactionAlreadyMined` | Returned when the current transaction was already accepted and mined into a block. |
| `Fatal` | Return when something is seriously wrong with the transaction, and the transaction will never be accepted in the current format. |
For examples of how other chains or clients are using these categories, see the [error.go](https://github.com/ethereum/go-ethereum/blob/master/core/error.go) file in the [go-ethereum repo](https://github.com/ethereum/go-ethereum) on GitHub.
For chains with zk-proofs, chains must reject transactions that cause zk-proof overflow with a uniquely identifiable error message.
Any other reasons why transactions might be rejected by a node or sequencer other than malformed input/gasLimits must be detailed.
### Clarify use of transaction types
For [transaction types](https://github.com/ethereum/go-ethereum/blob/master/core/types/transaction.go#L48-51) other than `0x0 - Legacy`, `0x1 - Access List`, `0x2 - Dynamic`, and `0x3 - Blob`, networks must clarify how each transaction type is used. Chainlink nodes must know if the chain uses other types for regular transactions with regular gas so it can correctly estimate gas costs.
### Multi-signature wallet support
The chain must provide a supported and audited multi-signature wallet implementation with a UI.
### Block explorer support
The chain must provide a block explorer and support for contract and verification APIs.
# https://docs.chain.link/resources/contributing-to-chainlink llms-full.txt
Chainlink is an open-source project licensed [under the MIT license](https://github.com/smartcontractkit/chainlink/blob/develop/LICENSE).
## What it means to contribute
When you contribute to the Chainlink project, you as a developer or community member contribute your time and effort to help improve and grow Chainlink. Your contribution can be from various methods:
- [Building and maintaining the Chainlink software and tools](#contributing-to-software-and-tooling)
- [Improving and maintaining the documentation, including translations into other languages](#contributing-to-the-documentation)
- [Creating Chainlink focused content (blog posts, tutorials, videos etc)](#creating-community-content)
- [Becoming a developer expert](#becoming-a-developer-expert)
- [Becoming a community advocate](#joining-the-chainlink-community-advocate-program)
- [Running a Chainlink focused developer Bootcamp (in person or online)](#running-a-chainlink-focused-developer-bootcamp)
- [Running an in-person meetup or watch party](#running-an-in-person-meetup-or-watch-party)
- [Participate in a hackathon](#participate-in-a-hackathon)
- [Applying for a grant](#applying-for-a-grant)
## Why should you contribute?
[Open source software](https://en.wikipedia.org/wiki/Open-source_software) is a model that brings multiple benefits for both the project and the contributors. As a developer or community member, contributing to Chainlink helps you to gain valuable skills and experience, improve the software that you use, and grow your personal brand in the community which can lead to future employment opportunities. On top of these awesome things, contributing to open source is fun. It can give you a sense of community involvement, and gives you a personal sense of satisfaction knowing that you're part of an effort to build something that will enable a fairer, more transparent, and efficient new world.
## Contributing to software and tooling
The most direct way you can contribute to Chainlink is to contribute to the core code or the various tooling found in our [GitHub repository](https://github.com/smartcontractkit/). Contributing to code or code-based tools can generally be split into a few different categories:
- Raising an issue
- Requesting a new feature
- Submitting a Pull Request (PR) for a fix, improvement, or new tool
### Raising an issue
During the course of using Chainlink software or tools, you might encounter errors or unexpected behavior that leads you to believe the software isn't behaving correctly. You can bring this to the attention of the Chainlink Labs team as well as the wider developer community by raising an issue in the project’s GitHub repository. The 'Issues' tab lists all of the open issues for the repository.
After an issue is raised and tagged, the Chainlink Labs team and the wider community can address it. This gives the issue the visibility required for someone to investigate it and resolve the issue.
When you first create an issue, you must also categorize it. This prefixes the issue name to give viewers an indication of what category the issue relates to:
- [NODE]: The issue relates to the core node software
- [DEVEL]: The issue is a result of working on code found in the current repository
- [FEAT]: The issue relates to a new feature request
- [SMRT]: The issue related to using Chainlink smart contracts
- [EXPL]: The issue related to using the Chainlink Explorer
- [FAUC]: The issue related to using the Chainlink Faucet

After you select a category, enter the details for the issue. Include as much detail about the issue as possible. Provide a thorough description, environment, and software version details. Also provide detailed steps that describe how to reproduce the issue. The more thorough you make your description, the better the chances are that someone will be able to pick up the issue and resolve it.
Once a team member acknowledges that the issue has been received, they will tag it with an appropriate label. You should then monitor the state of the open issue for any questions or updates.
### Requesting a new feature
Have you thought of an improvement or an awesome new feature that you think should be implemented into Chainlink? Request a new feature to bring it to the attention of the team and the wider community. You can request new features by creating a new GitHub issue in the correct repository and tagging that issue with the [FEAT] prefix (Feature request). The process for doing this is covered in the [Raising an Issue](#raising-an-issue) section. Provide as much detail as possible in your feature request, including any benefits, risks, or considerations that you can think of.
#### Voting on new features
Sometimes a new feature is put to a vote to decide if it's something that the team and wider community should implement. When a feature is put to a vote, the issue is tagged with the 'needs votes' label. You can contribute to the voting process by reacting to the first post in the feature request with a thumbs up or thumbs down emoji. This will help drive the decision. You can also contribute your thoughts by replying directly to the feature request with a new post in the thread.

### Submitting a pull request
The best way to contribute to Chainlink is to submit a [pull request (PR)](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests). PRs can be submitted for various reasons, such as fixing an identified issue, adding a feature or improvement to the project, or even adding an entirely new repository to the Chainlink source code for a new tool or feature. If you're looking for something to pick up and create a PR for, you can search through the Chainlink repositories to find open issues, and approved feature requests.
If you're new to contributing to open-source software or Chainlink, we've tagged some [good first issues](https://github.com/smartcontractkit/chainlink/issues?q=is%3Aissue+label%3A%22good+first+issue%22) against the main node software and smart contracts that you can tackle. Each major repository in the Chainlink GitHub should also have some good first issues tagged for developers to be able to take on.
All code changes must follow the [style guide] (https://github.com/smartcontractkit/chainlink/wiki/Code-Style-Guide), All PRs must be in an appropriately named branch with a format like 'feat/feature-description' or 'devel/issue-description'. After you submit a PR, you should get a response by a team member within a day or two acknowledging that the PR has been received. After that, monitor the PR for any additional questions or updates that come up while the team and the community review the changes.
## Contributing to the documentation
The [Chainlink documentation](https://docs.chain.link/) is the go-to place for developers who want to learn how to build applications using Chainlink, and node operators wanting useful information on running a Chainlink node. The documentation is [open source](https://github.com/smartcontractkit/documentation), allowing for other developers and community members to contribute to adding or improving it. You can contribute to the Chainlink documentation in various ways:
- Improving the readability of pages
- Fixing typos or grammar errors
- Adding new guides or tutorials that you would find useful
- Translating the documentation into other languages
The process for contributing to the documentation follows the process defined earlier in the [Submitting a Pull Request](#submitting-a-pull-request) section. Each page also has a 'Suggest Edits' link on the top right, and will directly take you to the page in the [documentation repository](https://github.com/smartcontractkit/documentation), where you can create a new PR with the suggested changes. Before you create a PR for the documentation, read the [contributing guidelines](https://github.com/smartcontractkit/documentation/blob/main/CONTRIBUTING.md).
If you want to translate the documentation into a new language that is not yet supported, feel free to [reach out to the team](mailto:devrel@smartcontract.com) beforehand, so we can make sure you get the support you need.
## Creating community content
Chainlink has a strong and vibrant community of developers and community advocates. Community members often create Chainlink-focused content in various forms and publish it for the wider community on various platforms. This increases knowledge and awareness of Chainlink solutions across the wider community and builds the contributor's personal skills and brand in the community.
Some examples of the content generated from the community:
- Document your experience in using Chainlink as part of your project
- Do a deep dive blog post or video on a Chainlink solution
- Write up technical tutorials showcasing Chainlink being used in various use cases
## Becoming a developer expert
Chainlink Developer Experts are smart contract and blockchain developers with deep experience building applications using Chainlink. They are passionate about sharing their technical knowledge with the world. As a developer expert, you will receive recognition in the community, previews of new Chainlink features, exclusive access to Chainlink events, and opportunities to level up your technical and soft skills. You can apply to become a developer expert on the [Chainlink Developer Experts page](https://chain.link/developers/experts).
## Joining the Chainlink Community Advocate program
The [Chainlink Community Advocate Program](https://blog.chain.link/expanding-the-chainlink-community-advocate-program/) is a program designed to help accelerate the awareness and adoption of Chainlink. Chainlink community advocates are passionate members of the Chainlink community that help to achieve this by running virtual and in-person meetups, connecting with partners and sponsors, creating content, and working directly with the teams that are making Chainlink-powered smart contracts. Many Advocates have gone on to have rewarding careers in the blockchain industry, and some of them work on Chainlink specifically.
To become a community advocate, you can apply via the [community advocates web page](https://chain.link/community/advocates).
## Running a Chainlink Focused Developer Bootcamp
In June 2021, Chainlink [virtually hosted](https://blog.chain.link/smart-contract-developer-bootcamp-on-demand/) the first [Chainlink Developer Bootcamp](http://chain.link/bootcamp). If you're passionate about educating others about smart contracts and Chainlink, you can contribute by running your own developer Bootcamp. You can also contribute by translating an existing Bootcamp and running it in another language. Before you run your own Bootcamp, [reach out to the team](mailto:devrel@smartcontract.com) so we can make sure you have the support that you need.
## Running an in-person meetup or watch party
If you're passionate about helping to grow the awareness and adoption of Chainlink, you can contribute by running an in-person meetup or watch party for a Chainlink event such as [SmartCon](https://www.smartcontractsummit.io/). Meetups are a great way to meet others also passionate about how hybrid smart contracts can create an economically fair world.
If you're interested in running an in-person meetup or watch party, [reach out to the team](mailto:community@smartcontract.com) so we can make sure you have the support that you need.
## Participate in a hackathon
Chainlink runs hackathons multiple times per year and often sponsors other hackathons across the blockchain ecosystem. Participating in a hackathon that Chainlink is a part of is a great way to learn how to use Chainlink. It is also a great way to showcase your skills to the Chainlink team and the wider community. Hackathons are a popular place for recruiting talent into the blockchain ecosystem.
To stay up to date on the hackathons that Chainlink is running or sponsoring, keep an eye out on the official Chainlink social media channels, and sign up for our [developer newsletter](/resources/developer-communications).
## Applying for a grant
The [Chainlink grant program](https://chain.link/community/grants) encourages development of critical developer tooling, add high-quality data, and the launch key services around the Chainlink Network. Grant categories include community, integration, bug bounty, research, and social impact grants. If you have a great idea that fits into one of these categories, you can apply for a grant. If successful, you will receive the funding and support needed to successfully build and implement your idea.
For more information about the grant program, go to the [Chainlink Grants web page](https://chain.link/community/grants).