|
1 | | -# Introduction |
| 1 | +import React from "react"; |
| 2 | +import { ProductBox } from "../../components/ProductBox"; |
| 3 | +import PriceFeedIcon from "../../components/icons/PriceFeedIcon"; |
| 4 | +import EntropyIcon from "../../components/icons/EntropyIcon"; |
| 5 | +import ExpressRelayIcon from "../../components/icons/ExpressRelayIcon"; |
| 6 | +import BenchmarkIcon from "../../components/icons/BenchmarkIcon"; |
2 | 7 |
|
3 | | -Pyth Network is an oracle protocol that connects the owners of market data to applications on multiple blockchains. |
4 | | -Pyth's market data is contributed by over 100 [first-party publishers](https://pyth.network/publishers/), including some of the biggest exchanges and market making firms in the world. |
5 | | -[Over 350 protocols](https://defillama.com/oracles/Pyth) on 55+ blockchains trust Pyth to secure their applications. |
6 | | - |
7 | | -Pyth Network offers several products for developers: |
8 | | - |
9 | | -- [Price Feeds](../price-feeds) provide real-time prices for 500+ assets on 55+ blockchain ecosystems, including Solana, many EVM chains, |
10 | | - Aptos, Sui, NEAR, and several Cosmos chains. |
11 | | -- [Benchmarks](../benchmarks) provides historical Pyth prices for both on- and off-chain use. |
12 | | -- [Express Relay](../express-relay/) enables protocols to eliminate their MEV while gaining access to active searchers and liquidators. |
13 | | -- [Entropy](../entropy) allows developers to generate secure random numbers on the blockchain. |
14 | | - |
15 | | -Please follow the links above to learn about each product and how to integrate them into your application. |
16 | | - |
17 | | -Other useful links may be: |
18 | | - |
19 | | -- [Pyth Token](home/pyth-token) -- Learn more about the Pyth governance token PYTH. |
20 | | -- [Pyth Metrics](home/metrics) -- See metrics of the network's adoption and growth. |
| 8 | +<div className="text-white p-8"> |
| 9 | + <div className="flex mb-8"> |
| 10 | + <div className="w-full max-w-4xl mx-auto"> |
| 11 | + <h1 className="text-5xl font-extrabold mb-8 whitespace-nowrap"> |
| 12 | + Introduction to Pyth Documentation |
| 13 | + </h1> |
| 14 | + <p className="text-gray-300 mb-4"> |
| 15 | + Pyth Network is an oracle protocol that connects the owners of market |
| 16 | + data to applications on multiple blockchains. Pyth's market data is |
| 17 | + contributed by over 100 first- party publishers, including some of the |
| 18 | + biggest exchanges and market making firms in the world. Over 350 |
| 19 | + protocols on 55+ blockchains trust Pyth to secure their applications. |
| 20 | + </p> |
| 21 | + </div> |
| 22 | + </div> |
| 23 | + <div className="grid grid-cols-3 gap-4 mb-8"> |
| 24 | + <ProductBox |
| 25 | + icon={<PriceFeedIcon className="w-8 h-8" />} |
| 26 | + title="Price Feeds" |
| 27 | + description="Price Feeds provide real-time prices for 500+ assets on 55+ blockchain ecosystems, including Solana, many EVM chains, Aptos, Sui, NEAR, and several Cosmos chains." |
| 28 | + /> |
| 29 | + <ProductBox |
| 30 | + icon={<BenchmarkIcon className="w-8 h-8" />} |
| 31 | + title="Benchmarks" |
| 32 | + description="Benchmarks provides historical Pyth prices for both on- and off-chain use." |
| 33 | + /> |
| 34 | + <ProductBox |
| 35 | + icon={<EntropyIcon className="w-8 h-8" />} |
| 36 | + title="Entropy" |
| 37 | + description="Entropy allows developers to generate secure random numbers on the blockchain." |
| 38 | + /> |
| 39 | + <ProductBox |
| 40 | + icon={<ExpressRelayIcon className="w-8 h-8" />} |
| 41 | + title="Express Relay" |
| 42 | + description="Express Relayer provides a secure and reliable way to connect your application to the Pyth network." |
| 43 | + /> |
| 44 | + </div> |
| 45 | + <div className="grid grid-cols-2 gap-4"> |
| 46 | + <ProductBox |
| 47 | + icon={<div className="w-8 h-8 bg-purple-500 rounded-full" />} |
| 48 | + title="Pyth Token" |
| 49 | + description="Learn more about the Pyth governance token PYTH." |
| 50 | + /> |
| 51 | + <ProductBox |
| 52 | + icon={<div className="w-8 h-8 bg-purple-500 rounded-full" />} |
| 53 | + title="Pyth Metrics" |
| 54 | + description="See metrics of the network's adoption and growth." |
| 55 | + /> |
| 56 | + </div> |
| 57 | +</div> |
0 commit comments