Skip to content

Commit

Permalink
Data Feeds filters update and small fixes (#1788)
Browse files Browse the repository at this point in the history
* Data Feeds filters update

* Other fixes

* More fixes

* License and footer update
  • Loading branch information
dwightjl authored Feb 28, 2024
1 parent 04c3e7e commit a4c7098
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
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
2 changes: 1 addition & 1 deletion src/content/chainlink-automation/guides/migrate-to-v2.mdx
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

0 comments on commit a4c7098

Please sign in to comment.