-
Notifications
You must be signed in to change notification settings - Fork 39
chore(price-feeds) Rename sponsored Feeds to Push feeds #860
Changes from 6 commits
6e4e3af
fce4d95
e64c38d
fa19dd1
24f9bcc
00e1d7f
b1f284b
c60a41d
1157191
9f88beb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| import { Callout } from "nextra/components"; | ||
|
|
||
| # Push Feeds | ||
|
|
||
| The Pyth Data Association **pushes** price updates for various feeds on some networks. | ||
| These feeds are updated at a specific heartbeat rate or when the price changes by a specific percentage. | ||
| Applications can depend on receiving updates for these feeds, without having to pull them explicitly. | ||
|
|
||
| The feeds can vary by network. Please see the relevant section below for the network of interest. | ||
|
|
||
| - [EVM](pushed-feeds/evm) | ||
| - [Solana](pushed-feeds/solana) | ||
| - [Fogo](pushed-feeds/fogo) | ||
| - [Aptos](pushed-feeds/aptos) | ||
| - [Sui](pushed-feeds/sui) | ||
| - [Movement](pushed-feeds/movement) | ||
|
|
||
| <Callout type="info" emoji="ℹ️"> | ||
| Push feeds are subject to change with prior notice. Please refer to the [dev | ||
|
||
| forum](https://dev-forum.pyth.network/c/announcements/6) for the latest | ||
| updates. | ||
| </Callout> | ||
|
|
||
| <Callout type="info" emoji="ℹ️"> | ||
| Deviation thresholds can be customized to fit builders' needs. For thresholds | ||
| lower than those offered by our Push feeds, please reach out. | ||
| </Callout> | ||
|
|
||
| <Callout type="info" emoji="⚠️"> | ||
| DISCLAIMER: While the Pyth Data Association strives to deliver timely updates, | ||
| these Push feeds may occasionally experience delays in updates caused by chain | ||
| halts, gas estimations and other issues. Applications are advised to run their | ||
| own scheduler. Find out how you can run your own scheduler | ||
| [here](/price-feeds/schedule-price-updates/using-scheduler). | ||
| </Callout> | ||
|
|
||
| If you would like to see additional feeds on this list, please fill in this [form](https://tally.so/r/nGz2jj) to signal your interest. | ||
aditya520 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import { Callout } from "nextra/components"; | ||
|
|
||
| import { SponsoredFeedsTable } from "../../../components/SponsoredFeedsTableWithData"; | ||
| import aptosMainnet from "../pushed-feeds/data/aptos/aptos_mainnet.json"; | ||
|
|
||
| # Push Feeds on Aptos | ||
|
|
||
| ## Aptos Mainnet | ||
|
|
||
| <Callout type="info" emoji="ℹ️"> | ||
| If you would like to see additional feeds on this list, please fill in this | ||
| [form](https://tally.so/r/nGz2jj) to signal your interest. | ||
| </Callout> | ||
|
|
||
| <SponsoredFeedsTable feeds={aptosMainnet} networkName="Aptos mainnet" /> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import { Callout } from "nextra/components"; | ||
|
|
||
| import { SponsoredFeedsTable } from "../../../components/SponsoredFeedsTableWithData"; | ||
| import fogoTestnet from "../pushed-feeds/data/svm/fogo_testnet.json"; | ||
|
|
||
| # Push Feeds on Fogo | ||
|
|
||
| ## Fogo Testnet | ||
|
|
||
| <Callout type="info" emoji="ℹ️"> | ||
| If you would like to see additional feeds on this list, please fill in this | ||
| [form](https://tally.so/r/nGz2jj) to signal your interest. | ||
| </Callout> | ||
|
|
||
| <SponsoredFeedsTable feeds={fogoTestnet} networkName="Fogo testnet" /> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import { Callout } from "nextra/components"; | ||
|
|
||
| import { SponsoredFeedsTable } from "../../../components/SponsoredFeedsTableWithData"; | ||
| import movementMainnet from "../pushed-feeds/data/movement/movement_mainnet.json"; | ||
|
|
||
| # Push Feeds on Movement | ||
|
|
||
| ## Movement Mainnet | ||
|
|
||
| <Callout type="info" emoji="ℹ️"> | ||
| If you would like to see additional feeds on this list, please fill in this | ||
| [form](https://tally.so/r/nGz2jj) to signal your interest. | ||
| </Callout> | ||
|
|
||
| <SponsoredFeedsTable feeds={movementMainnet} networkName="Movement mainnet" /> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| import { Callout } from "nextra/components"; | ||
|
|
||
| import { SponsoredFeedsTable } from "../../../components/SponsoredFeedsTableWithData"; | ||
| import solanaMainnet from "../pushed-feeds/data/svm/solana_mainnet.json"; | ||
|
|
||
| # Push Feeds on Solana | ||
|
|
||
| <Callout type="info" emoji="ℹ️"> | ||
| If you would like to see additional feeds on this list, please fill in this | ||
| [form](https://tally.so/r/nGz2jj) to signal your interest. | ||
| </Callout> | ||
|
|
||
| ## Solana Mainnet | ||
|
|
||
| <SponsoredFeedsTable | ||
| feeds={solanaMainnet} | ||
| networkName="Solana mainnet and devnet" | ||
| /> | ||
|
|
||
| Note: The addresses represent the price feed account for shard 0 of the relevant price feed id. |
Uh oh!
There was an error while loading. Please reload this page.