Skip to content

Commit 4bf46b1

Browse files
committed
fix: links
1 parent 810f2d9 commit 4bf46b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pages/price-feeds/how-pyth-works.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Pyth's oracle program runs on [Pythnet](how-pyth-works/pythnet.md).
1111
The prices constructed on Pythnet are transferred [cross-chain](how-pyth-works/cross-chain.md) to reach consumers on these blockchains.
1212

1313
The critical component of the system is the [oracle program](how-pyth-works/oracle-program.md) that combines the data from each individual publisher.
14-
This program maintains a number of different [Solana accounts](how-pyth-works/account-structure.md) that list the products on Pyth and their current price data.
14+
This program maintains a number of different [Solana accounts](pythnet-reference/account-structure.md) that list the products on Pyth and their current price data.
1515
Publishers publish their price and confidence by interacting with the oracle program on every slot.
1616
The program stores this information in its accounts.
1717
The first price update in a slot additionally triggers [price aggregation](how-pyth-works/price-aggregation.md), which combines the price data from the previous slot into a single aggregate price and confidence interval.

pages/price-feeds/how-pyth-works/oracle-program.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ The oracle program is responsible for several tasks:
77
3. Combining the individual data providers' prices into a single aggregate price and confidence interval.
88
4. Performing any additional stateful computations on the resulting price series, such as computing moving averages.
99

10-
The oracle solves these problems by maintaining a collection of [Solana accounts](account-structure.md) to represent the set of price feeds.
11-
Each feed has two accounts: a product account to store [metadata](product-metadata.md) and a price account.
10+
The oracle solves these problems by maintaining a collection of [Solana accounts](pythnet-reference/account-structure.md) to represent the set of price feeds.
11+
Each feed has two accounts: a product account to store [metadata](pythnet-reference/product-metadata.md) and a price account.
1212
The price account stores a list of authorized data providers for this specific price feed, and allocates storage space for each data provider's price.
1313
The oracle program exposes an instruction called `upd_price` that enables an authorized data provider to update the price account with their current estimate of the price and confidence interval.
1414
Additionally, the first time that `upd_price` is called in a slot, it will [aggregate](price-aggregation.md) the individual data provider's prices into an aggregate price and confidence interval.

0 commit comments

Comments
 (0)