import { Badge } from "@pythnetwork/component-library/Badge"; import { Button } from "@pythnetwork/component-library/Button"; import { CrossfadeTabPanels } from "@pythnetwork/component-library/CrossfadeTabPanels"; import { Tabs } from "@pythnetwork/component-library/unstyled/Tabs"; import styles from "./index.module.scss"; import PriceFeedsDark from "./price-feeds-dark.svg"; import PriceFeedsLight from "./price-feeds-light.svg"; import PublishersDark from "./publishers-dark.svg"; import PublishersLight from "./publishers-light.svg"; import { TabList } from "./tab-list"; import { totalVolumeTraded, activeChains, activePublishers, activeFeeds, } from "../../static-data/stats"; import { ChangePercent } from "../ChangePercent"; import { ChartCard } from "../ChartCard"; import { FormattedDate } from "../FormattedDate"; import { FormattedNumber } from "../FormattedNumber"; export const Overview = () => (

Overview

({ x: date, displayX: , y: volume, displayY: ( ), }))} miniStat={ } stat={ } /> ({ x: date, displayX: , y: numPublishers, }))} miniStat={ } stat={activePublishers.at(-1)?.numPublishers} /> ({ x: date, displayX: , y: numFeeds, }))} miniStat={ } stat={activeFeeds.at(-1)?.numFeeds} /> ({ x: date, displayX: , y: chains, }))} miniStat={ } stat={activeChains.at(-1)?.chains} />
INSIGHTS

Get the most from the Pyth Network

Insights Hub delivers transparency over the network status and performance, and maximize productivity while integrating.

), }, { id: "price feeds", children: ( <> ), }, ]} />
);