Skip to content

Commit 2d98b9e

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/solana-ecosystem-16831fdb94
2 parents 7033004 + 1e44fbd commit 2d98b9e

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ node <<EOF
154154
155155
// === data-streams networks
156156
const STREAMS_NETWORKS = [
157-
"0g", "apechain", "arbitrum", "avalanche", "base", "berachain", "bitlayer", "blast",
157+
"0g", "apechain", "aptos", "arbitrum", "avalanche", "base", "berachain", "bitlayer", "blast",
158158
"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",

public/changelog.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,14 @@
322322
}
323323
},
324324
"data": [
325+
{
326+
"category": "integration",
327+
"date": "2025-10-20",
328+
"description": "Chainlink Data Streams is available for Aptos 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.",
329+
"relatedNetworks": ["aptos"],
330+
"title": "Data Streams Expands to Aptos",
331+
"topic": "Data Streams"
332+
},
325333
{
326334
"category": "integration",
327335
"date": "2025-10-19",

src/components/QuickLinks/data/productChainLinks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ 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"
87

98
export interface ProductData {
109
learnMoreLink: string
@@ -142,6 +141,7 @@ export const productChainLinks: ProductChainLinks = {
142141
chains: {
143142
"0g": "/data-streams/crypto-streams",
144143
apechain: "/data-streams/crypto-streams",
144+
aptos: "/data-streams/crypto-streams",
145145
arbitrum: "/data-streams/crypto-streams",
146146
avalanche: "/data-streams/crypto-streams",
147147
base: "/data-streams/crypto-streams",

src/features/feeds/data/StreamsNetworksData.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,21 @@ export const StreamsNetworksData: NetworkData[] = [
4646
explorerUrl: "https://explorer.curtis.apechain.com/address/%s",
4747
},
4848
},
49+
{
50+
network: "Aptos",
51+
logoUrl: "/assets/chains/aptos.svg",
52+
networkStatus: "https://explorer.aptoslabs.com/?network=mainnet",
53+
mainnet: {
54+
label: "Aptos Mainnet",
55+
verifierProxy: "0x5e6ee502816abcbe49b5bb670da4a1d5af520db11732e93f19ddd15b4608d01d",
56+
explorerUrl: "https://explorer.aptoslabs.com/account/%s?network=mainnet",
57+
},
58+
testnet: {
59+
label: "Aptos Testnet",
60+
verifierProxy: "0x0c68769ae9efe2d02f10bc5baed793cfe0fe780c41e428d087d5d61286448090",
61+
explorerUrl: "https://explorer.aptoslabs.com/account/%s?network=testnet",
62+
},
63+
},
4964
{
5065
network: "Arbitrum",
5166
logoUrl: "/assets/chains/arbitrum.svg",

0 commit comments

Comments
 (0)