|
1 | 1 | --- |
2 | 2 | title: Pyth Core |
3 | | -description: Pyth core documentation overview |
| 3 | +description: Introduction to Pyth Core Price Feeds |
4 | 4 | slug: /price-feeds/core |
5 | 5 | --- |
6 | 6 |
|
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"; |
8 | 18 |
|
9 | 19 | Pyth Network provides real-time financial market data to smart contract applications on 100+ blockchains. |
10 | 20 | Data is sourced from 120+ first-party providers including major exchanges and market makers. |
11 | 21 |
|
12 | | -## Key Features |
| 22 | +## Pyth Core Products |
13 | 23 |
|
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> |
18 | 56 |
|
19 | 57 | ## Quick Start |
20 | 58 |
|
21 | 59 | <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 | + /> |
27 | 97 | </Cards> |
0 commit comments