Skip to content
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
5 changes: 4 additions & 1 deletion src/features/feeds/components/Tables.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1385,8 +1385,11 @@ const streamsCategoryMap = {
}

export const StreamsTr = ({ metadata, isMainnet, showRiskColumn = isMainnet }) => {
const finalTier = metadata.finalCategory
const isDeprecating = !!metadata.docs?.shutdownDate
// Deprecating streams always show the deprecating category, even when the
// stream is rendered from a path that doesn't enrich finalCategory (e.g. the
// deprecating streams page) or when no Supabase risk tier is available.
const finalTier = isDeprecating ? "deprecating" : metadata.finalCategory
const hideFeedId = shouldHideStreamFeedId(metadata)

// Temporary calculated stream detection until proper metadata tagging is implemented
Expand Down
5 changes: 0 additions & 5 deletions src/scripts/data/detect-new-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@ const STREAM_DEPRECATION_ENDPOINTS: Array<{ network: string; networkType: "mainn
networkType: "mainnet",
url: "https://reference-data-directory.vercel.app/feeds-ethereum-mainnet-arbitrum-1.json",
},
{
network: "arbitrum",
networkType: "testnet",
url: "https://reference-data-directory.vercel.app/feeds-ethereum-testnet-sepolia-arbitrum-1.json",
},
]

// Path to the baseline JSON file that contains known feed IDs
Expand Down
Loading