"use client"; import type { ReactNode } from "react"; import { useDateFormatter } from "react-aria"; import { useChangelog } from "../../hooks/use-changelog"; import { Link } from "../Link"; import { ModalDialog } from "../ModalDialog"; export const Changelog = () => { const { isOpen, toggleOpen } = useChangelog(); return ( ); }; type ChangelogMessageProps = { date: Date; children: ReactNode | ReactNode[]; }; export const ChangelogMessage = ({ date, children }: ChangelogMessageProps) => { const dateFormatter = useDateFormatter({ year: "numeric", month: "short", day: "numeric", }); return (

{dateFormatter.format(date)}

{children}
); }; type ChangelogSectionProps = { title: ReactNode; children: ReactNode | ReactNode[]; }; export const ChangelogSection = ({ title, children, }: ChangelogSectionProps) => (

{title}

{children}
); export const messages = [ { id: 1, message: (

We are pleased to announce the following Oracle Integrity Staking milestones:

  • 145M PYTH staked and securing DeFi.
  • 10K unique stakers participating.
  • 492K in PYTH programmatically distributed.

We’re thrilled to see so many community participants.

The Pyth contributors take security extremely seriously. The contract code is{" "} open source {" "} and the upgrade authority is governed by the Pyth DAO. The official{" "} audit report {" "} is publicly accessible. All on-chain contract codes are verified using{" "} Solana verifiable build {" "} and the Pyth DAO governs the upgrade authority.

Please remember that publishers have priority for programmatic rewards distributions. By protocol design, if a pool’s stake cap is exceeded, the programmatic reward rate for other stakers participating in that pool will be lower than the Pyth DAO-set maximum reward rate.

The Pyth contributors are glad to see so many network participants getting involved with Oracle Integrity Staking to help secure the oracle and protect the wider DeFi industry. OIS wouldn’t be possible without you!

Please reach out in the official{" "} Pyth Discord {" "} or the{" "} Pyth DAO Forum {" "} to share your questions, ideas, or feedback. We want to hear what you think.

), }, ];