Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data Feeds filters update and small fixes #1788

Merged
merged 4 commits into from
Feb 28, 2024
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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 SmartContract Chainlink Limited SEZC
Copyright (c) 2024 SmartContract Chainlink Limited SEZC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
</a>
<div class="paragraph small footer-chainlinkreg hidden-sm">Chainlink®</div>
<div class="paragraph small footer-chainlinkreg hidden-sm">
{" "}&copy 2023 Chainlink Foundation
{" "}&copy 2024 Chainlink Foundation
</div>
</div>
<div class="col footer-privacyandterms">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
section: automation
date: Last Modified
title: "Migrate to V2"
title: "Migrate to v2"
---

import { Aside, ClickToZoom } from "@components"
Expand Down
2 changes: 1 addition & 1 deletion src/content/data-streams/release-notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Aside } from "@components"
integrating Chainlink Data Streams with your applications.
</Aside>

## 2024-25-01 - Arbitrum support
## 2024-01-25 - Public availability

Chainlink Data Streams is publicly available on <a href="/data-streams/stream-ids?network=arbitrum&page=1">Arbitrum Mainnet</a> and <a href="/data-streams/stream-ids?network=arbitrum&page=1">Arbitrum Sepolia</a>.

Expand Down
5 changes: 1 addition & 4 deletions src/features/data/api/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ export const getServerSideChainMetadata = async (chains: Chain[]): Promise<Recor
}).then((metadata) => ({
...nw,
metadata: metadata.filter(
(meta) =>
meta.docs?.hidden !== true &&
(meta.proxyAddress || meta.transmissionsAccount || meta.feedId) &&
meta.proxyAddress !== "0x80f8D7b4fB192De43Ed6aE0DD4A42A60f43641b0"
(meta) => meta.docs?.hidden !== true && (meta.proxyAddress || meta.transmissionsAccount || meta.feedId)
),
}))
: undefined
Expand Down
5 changes: 1 addition & 4 deletions src/features/data/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,7 @@ export const getChainMetadata = async (chain: Chain): Promise<ChainMetadata | an
? getFeedsMetadata(network?.rddUrl).then((metadata) => ({
...network,
metadata: metadata.filter(
(meta) =>
meta.docs?.hidden !== true &&
(meta.proxyAddress || meta.transmissionsAccount || meta.feedId) &&
meta.proxyAddress !== "0x80f8D7b4fB192De43Ed6aE0DD4A42A60f43641b0"
(meta) => meta.docs?.hidden !== true && (meta.proxyAddress || meta.transmissionsAccount || meta.feedId)
),
}))
: undefined
Expand Down
Loading