Skip to content

Commit fcc5104

Browse files
authored
DS: Hedera integration (#3070)
* hedera-integration * fix proxy addresses
1 parent 7fdb677 commit fcc5104

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

.github/scripts/data/detect-data.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ node <<EOF
155155
// === data-streams networks
156156
const STREAMS_NETWORKS = [
157157
"0g", "apechain", "arbitrum", "avalanche", "base", "berachain", "bitlayer", "blast",
158-
"bnb-chain", "bob", "botanix", "celo", "ethereum", "gnosis-chain", "gravity", "hashkey", "hyperliquid",
158+
"bnb-chain", "bob", "botanix", "celo", "ethereum", "gnosis-chain", "gravity", "hashkey", "hedera", "hyperliquid",
159159
"ink", "jovay", "katana", "lens", "linea", "mantle", "metis", "opbnb", "optimism", "polygon", "plasma", "ronin",
160160
"scroll", "shibarium", "sei", "soneium", "sonic",
161161
"solana", "taiko", "unichain", "worldchain", "zksync"

public/changelog.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,14 @@
318318
}
319319
},
320320
"data": [
321+
{
322+
"category": "integration",
323+
"date": "2025-10-14",
324+
"description": "Chainlink Data Streams is available for Hedera 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.",
325+
"relatedNetworks": ["hedera"],
326+
"title": "Data Streams Expands to Hedera",
327+
"topic": "Data Streams"
328+
},
321329
{
322330
"category": "integration",
323331
"date": "2025-10-12",

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import functionsLogo from "../assets/products/functions-logo.svg"
44
import automationLogo from "../assets/products/automation-logo.svg"
55
import dataFeedsLogo from "../assets/products/data-feeds-logo.svg"
66
import dataStreamsLogo from "../assets/products/data-streams-logo.svg"
7+
import { h } from "preact"
78

89
export interface ProductData {
910
learnMoreLink: string
@@ -153,6 +154,7 @@ export const productChainLinks: ProductChainLinks = {
153154
"gnosis-chain": "/data-streams/crypto-streams",
154155
gravity: "/data-streams/crypto-streams",
155156
hashkey: "/data-streams/crypto-streams",
157+
hedera: "/data-streams/crypto-streams",
156158
hyperevm: "/data-streams/crypto-streams",
157159
ink: "/data-streams/crypto-streams",
158160
jovay: "/data-streams/crypto-streams",

src/features/feeds/data/StreamsNetworksData.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,20 @@ export const StreamsNetworksData: NetworkData[] = [
248248
explorerUrl: "https://hashkeychain-testnet-explorer.alt.technology/address/%s",
249249
},
250250
},
251+
{
252+
network: "Hedera",
253+
logoUrl: "/assets/chains/hedera.svg",
254+
mainnet: {
255+
label: "Hedera Mainnet",
256+
verifierProxy: "0x38818Ba0e01E7743F5c001e8Aae095dE56a137db",
257+
explorerUrl: "https://hashscan.io/mainnet/contract/%s",
258+
},
259+
testnet: {
260+
label: "Hedera Testnet",
261+
verifierProxy: "0x57A97148C1fa50f35F0639f380077017D8893b6b",
262+
explorerUrl: "https://hashscan.io/testnet/contract/%s",
263+
},
264+
},
251265
{
252266
network: "HyperEVM",
253267
logoUrl: "/assets/chains/hyperliquid.svg",

0 commit comments

Comments
 (0)