Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/data/detect-data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ node <<EOF

// === data-streams networks
const STREAMS_NETWORKS = [
"0g", apechain", "arbitrum", "avalanche", "base", "berachain", "bitlayer", "blast",
"0g", "apechain", "arbitrum", "avalanche", "base", "berachain", "bitlayer", "blast",
"bnb-chain", "bob", "botanix", "celo", "ethereum", "gnosis-chain", "gravity", "hashkey", "hyperliquid",
"ink", jovay, "katana", "lens", "linea", "mantle", "metis", "opbnb", "optimism", "polygon", "ronin",
"ink", jovay, "katana", "lens", "linea", "mantle", "metis", "opbnb", "optimism", "polygon", "plasma","ronin",
"scroll", "shibarium", "sei", "soneium", "sonic",
"solana", "taiko", "unichain", "worldchain", "zksync"
];
Expand Down
8 changes: 8 additions & 0 deletions public/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,14 @@
}
},
"data": [
{
"category": "integration",
"date": "2025-09-25",
"description": "Chainlink Data Streams is available for Plasma Mainnet and Testnet. The verifier proxy addresses and stream IDs are available on the [Stream Addresses](https://docs.chain.link/data-streams/crypto-streams) page.",
"relatedNetworks": ["plasma"],
"title": "Data Streams Expands to Plasma",
"topic": "Data Streams"
},
{
"category": "integration",
"date": "2025-09-25",
Expand Down
1 change: 1 addition & 0 deletions src/components/QuickLinks/data/productChainLinks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ export const productChainLinks: ProductChainLinks = {
optimism: "/data-streams/crypto-streams",
polygon: "/data-streams/crypto-streams",
polygonkatana: "/data-streams/crypto-streams",
plasma: "/data-streams/crypto-streams",
ronin: "/data-streams/crypto-streams",
sei: "/data-streams/crypto-streams",
scroll: "/data-streams/crypto-streams",
Expand Down
15 changes: 15 additions & 0 deletions src/features/feeds/data/StreamsNetworksData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,21 @@ export const StreamsNetworksData: NetworkData[] = [
explorerUrl: "https://amoy.polygonscan.com/address/%s",
},
},
{
network: "Plasma",
logoUrl: "/assets/chains/plasma.svg",
networkStatus: "https://statuspage.incident.io/plasmanetwork",
mainnet: {
label: "Plasma Mainnet",
verifierProxy: "0xB4626C56c8d66b09adC57e38a5A15CcCd51BE082",
explorerUrl: "https://plasmascan.to/address/%s",
},
testnet: {
label: "Plasma Testnet",
verifierProxy: "0x60fAa7faC949aF392DFc858F5d97E3EEfa07E9EB",
explorerUrl: "https://testnet.plasmascan.to/address/%s",
},
},
{
network: "Ronin",
logoUrl: "/assets/chains/ronin.svg",
Expand Down
Loading