Skip to content

Commit 91722d2

Browse files
committed
ds: injective integration
1 parent 8371f75 commit 91722d2

File tree

6 files changed

+28
-1
lines changed

6 files changed

+28
-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", "aptos", "arbitrum", "avalanche", "base", "berachain", "bitlayer", "blast",
158-
"bnb-chain", "bob", "botanix", "celo", "ethereum", "gnosis-chain", "gravity", "hashkey", "hedera", "hyperliquid",
158+
"bnb-chain", "bob", "botanix", "celo", "ethereum", "gnosis-chain", "gravity", "hashkey", "hedera", "hyperliquid", "injective",
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/assets/chains/injective.svg

Lines changed: 4 additions & 0 deletions
Loading

public/changelog.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,10 @@
132132
"displayName": "Ink",
133133
"iconUrl": "https://docs.chain.link/assets/chains/ink.svg"
134134
},
135+
"injective": {
136+
"displayName": "Injective",
137+
"iconUrl": "https://docs.chain.link/assets/chains/injective.svg"
138+
},
135139
"janction": {
136140
"displayName": "Janction",
137141
"iconUrl": "https://docs.chain.link/assets/chains/janction.svg"
@@ -330,6 +334,14 @@
330334
}
331335
},
332336
"data": [
337+
{
338+
"category": "integration",
339+
"date": "2025-11-10",
340+
"description": "Chainlink Data Streams is available for Injective EVM 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.",
341+
"relatedNetworks": ["injective"],
342+
"title": "Data Streams Expands to Injective EVM",
343+
"topic": "Data Streams"
344+
},
333345
{
334346
"category": "integration",
335347
"date": "2025-11-09",

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ export const productChainLinks: ProductChainLinks = {
160160
hedera: "/data-streams/crypto-streams",
161161
hyperevm: "/data-streams/crypto-streams",
162162
ink: "/data-streams/crypto-streams",
163+
injective: "/data-streams/crypto-streams",
163164
jovay: "/data-streams/crypto-streams",
164165
lens: "/data-streams/crypto-streams",
165166
linea: "/data-streams/crypto-streams",

src/features/feeds/data/StreamsNetworksData.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,15 @@ export const StreamsNetworksData: NetworkData[] = [
306306
explorerUrl: "https://explorer-sepolia.inkonchain.com/address/%s",
307307
},
308308
},
309+
{
310+
network: "Injective",
311+
logoUrl: "/assets/chains/injective.svg",
312+
mainnet: {
313+
label: "Injective EVM Mainnet",
314+
verifierProxy: "0x60fAa7faC949aF392DFc858F5d97E3EEfa07E9EB",
315+
explorerUrl: "https://injscan.com/account/inj1vra207kffxhnjt0usk84m9lramaq060t75latq/", // Note: Injective uses Bech32 address format, hardcoding here to avoid confusion
316+
},
317+
},
309318
{
310319
network: "Jovay",
311320
logoUrl: "/assets/chains/jovay.svg",

src/scripts/data/detect-new-data.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ const NETWORK_ENDPOINTS: Record<string, string> = {
4949
bob: "https://reference-data-directory.vercel.app/feeds-bitcoin-mainnet-bob-1.json",
5050
plasma: "https://reference-data-directory.vercel.app/feeds-plasma-mainnet.json",
5151
hyperevm: "https://reference-data-directory.vercel.app/feeds-hyperliquid-mainnet.json",
52+
injective: "https://reference-data-directory.vercel.app/feeds-hyperliquid-mainnet.json",
5253
}
5354

5455
// Path to the baseline JSON file that contains known feed IDs

0 commit comments

Comments
 (0)