Skip to content

Commit 2a42856

Browse files
committed
feat(dev-hub) Pyth Core landing Page
1 parent d773ffa commit 2a42856

File tree

2 files changed

+84
-12
lines changed

2 files changed

+84
-12
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ __pycache__
2727
.corepack
2828
justfile
2929
dist/
30+
31+
**/.ai/**
Lines changed: 82 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,97 @@
11
---
22
title: Pyth Core
3-
description: Pyth core documentation overview
3+
description: Introduction to Pyth Core Price Feeds
44
slug: /price-feeds/core
55
---
66

7-
# Introduction to Pyth Core
7+
import { ProductCard } from "../../../../src/components/ProductCard";
8+
import {
9+
RocketLaunch,
10+
BracketsCurly,
11+
Code,
12+
Tag,
13+
CloudArrowUp,
14+
ClockCountdown,
15+
Lightning,
16+
Rewind,
17+
} from "@phosphor-icons/react/dist/ssr";
818

919
Pyth Network provides real-time financial market data to smart contract applications on 100+ blockchains.
1020
Data is sourced from 120+ first-party providers including major exchanges and market makers.
1121

12-
## Key Features
22+
## Pyth Core Products
1323

14-
- **2000+ price feeds** across all major asset classes
15-
- **Sub-second latency** with high-frequency updates
16-
- **Cryptographically signed** and verifiable on-chain
17-
- **Multi-chain support** including EVM, Cosmos, Solana, Aptos, and more
24+
Pyth Core provides **two ways** to integrate and consume real-time price data on-chain:
25+
26+
<Cards>
27+
<Card
28+
icon={<Lightning size={12.5} />}
29+
title="Integrate Pull Updates"
30+
href="/price-feeds/core/use-real-time-data/"
31+
>
32+
{" "}
33+
Update 2000+ prices on-demand, permissionlessly every 400ms.
34+
</Card>
35+
<Card
36+
icon={<ClockCountdown size={12.5} />}
37+
title="Integrate Push Updates"
38+
href="/price-feeds/core/use-real-time-data/push-updates"
39+
>
40+
{" "}
41+
Consume Pyth real-time prices without pulling them explicitly.
42+
</Card>
43+
</Cards>
44+
--- Pyth Core also supports **parsing historical price data on-chain** for
45+
settlement and backtesting:
46+
<Cards>
47+
<Card
48+
icon={<Rewind size={12.5} />}
49+
title="Historical Price Data"
50+
href="/price-feeds/core/use-historic-price-data"
51+
>
52+
{" "}
53+
Access to historical price data for settlement and backtesting.
54+
</Card>
55+
</Cards>
1856

1957
## Quick Start
2058

2159
<Cards>
22-
<Card title="Getting Started" href="./core/getting-started" />
23-
<Card title="Contract Addresses" href="./core/contract-addresses" />
24-
<Card title="API Reference" href="./core/api-reference" />
25-
<Card title="Price Feed IDs" href="./core/price-feeds" />
26-
<Card title="Push Feeds" href="./core/push-feeds" />
60+
<Card
61+
icon={<RocketLaunch size={12.5} />}
62+
title="Getting Started"
63+
href="/price-feeds/core/getting-started"
64+
>
65+
{" "}
66+
Get started with Pyth Core.
67+
</Card>
68+
<Card
69+
icon={<BracketsCurly size={12.5} />}
70+
title="Contract Addresses"
71+
href="/price-feeds/core/contract-addresses"
72+
>
73+
{" "}
74+
Find official Pyth contract addresses per network.
75+
</Card>
76+
<Card
77+
icon={<Code size={12.5} />}
78+
title="API Reference"
79+
href="/price-feeds/core/api-reference"
80+
>
81+
{" "}
82+
Review Core API endpoints and parameters.
83+
</Card>
84+
<Card
85+
icon={<Tag size={12.5} />}
86+
title="Price Feed IDs"
87+
href="/price-feeds/core/price-feeds"
88+
>
89+
{" "}
90+
Browse canonical Pyth price feed identifiers.
91+
</Card>
92+
<Card
93+
icon={<CloudArrowUp size={12.5} />}
94+
title="Push Feeds"
95+
href="/price-feeds/core/pull-updates"
96+
/>
2797
</Cards>

0 commit comments

Comments
 (0)