Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,18 @@ const permanentRedirectArray = [
"/price-feeds/use-real-time-data/:path((?!pull-integration(?:/|$)).*)",
"/price-feeds/use-real-time-data/pull-integration/:path",
],
[
"/price-feeds/use-real-time-data",
"/price-feeds/use-real-time-data/pull-integration",
],
[
"/price-feeds/core/use-real-time-data/:path((?!pull-integration(?:/|$)).*)",
"/price-feeds/core/use-real-time-data/pull-integration/:path",
],
[
"/price-feeds/core/use-real-time-data",
"/price-feeds/core/use-real-time-data/pull-integration",
],

["/benchmarks", "/price-feeds/use-historic-price-data"],
[
Expand Down
2 changes: 1 addition & 1 deletion pages/price-feeds/core/derive-cross-rate.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ You may find these additional resources helpful.

#### How to use real-time data in EVM contracts

The [How to use real-time data in EVM contracts](./use-real-time-data/evm) guide provides a step-by-step guide on how to use real-time data in EVM contracts.
The [How to use real-time data in EVM contracts](./use-real-time-data/pull-integration/evm) guide provides a step-by-step guide on how to use real-time data in EVM contracts.

#### Price Feed IDs

Expand Down
2 changes: 1 addition & 1 deletion pages/price-feeds/core/price-feeds.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Price feeds also have different IDs in the Stable and Beta channels.

On Solana, each feed additionally has a collection of **price feed accounts** containing the feed's data.
The addresses of these accounts are programmatically derived from the feed id and a shard id, which is simply a 16-bit number.
See [How to Use Real-Time Data on Solana](./use-real-time-data/solana#price-feed-accounts) for more information on price feed accounts.
See [How to Use Real-Time Data on Solana](./use-real-time-data/pull-integration/solana#price-feed-accounts) for more information on price feed accounts.

## Feed Ids

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ contract SomeContract {
### SVM

Developers building on SVM chains can use Price Feed Accounts to integrate Pyth using push integration.
The [SVM guide](../use-real-time-data/solana#price-feed-accounts) explains in detail how to integrate Pyth using Price Feed Accounts.
The [SVM guide](./pull-integration/solana#price-feed-accounts) explains in detail how to integrate Pyth using Price Feed Accounts.

### Aptos

Expand Down
Loading