Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 393f740

Browse files
committed
chore(pricefeeds) Fix broken links
1 parent f4ef2c4 commit 393f740

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

pages/price-feeds/core/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Data is sourced from 120+ first-party providers including major exchanges and ma
124124
</p>
125125
<div className="ml-5">
126126
<a
127-
href="./core/push-feeds"
127+
href="./core/use-real-time-data/push-integration"
128128
className="inline-flex items-center gap-2 bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md transition-colors text-sm font-medium"
129129
>
130130
Get Started with Push Integration
@@ -172,11 +172,11 @@ Data is sourced from 120+ first-party providers including major exchanges and ma
172172
title="Contract Addresses"
173173
href="./core/contract-addresses"
174174
/>
175-
<Card icon={<LightningIcon />} title="Push Feeds" href="./core/push-feeds" />
176175
<Card icon={<CodeIcon />} title="API Reference" href="./core/api-reference" />
177176
<Card
178177
icon={<SearchIcon />}
179178
title="Price Feed IDs"
180179
href="./core/price-feeds"
181180
/>
181+
<Card icon={<LightningIcon />} title="Push Feeds" href="./core/push-feeds" />
182182
</Cards>

pages/price-feeds/pro/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ client.subscribe({
131131
});
132132
```
133133
134-
NOTE: Every property passed to `client.subscribe` are explained in the [API Reference](./websocket-api-reference).
134+
NOTE: Every property passed to `client.subscribe` are explained in the [API Reference](https://pyth-lazer.dourolabs.app/docs).
135135
136136
</Steps>
137137

pages/price-feeds/pro/integrate-as-consumer/svm.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ You may find these additional resources helpful for verifying price updates on y
274274

275275
### Price Feed IDs
276276

277-
Pyth Pro supports a wide range of price feeds. Consult the [Price Feed IDs](../price-feeds.mdx) page for a complete list of supported price feeds.
277+
Pyth Pro supports a wide range of price feeds. Consult the [Price Feed IDs](../price-feed-ids.mdx) page for a complete list of supported price feeds.
278278

279279
### Examples
280280

pages/price-feeds/pro/payload-reference.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Main aggregate price calculated from all contributing publishers
112112

113113
- **Type**: `optional non-zero i64` (mantissa representation)
114114
- **Availability**: Only included if requested in subscription properties
115-
- **Algorithm**: Refer to [price aggregation](../../price-feeds/how-pyth-works/price-aggregation) for the current algorithm
115+
- **Algorithm**: Refer to [price aggregation](../../price-feeds/core/how-pyth-works/price-aggregation) for the current algorithm
116116
- **Invariants**: Non-zero when present (null values filtered out)
117117

118118
<Callout type="warning">
@@ -146,7 +146,7 @@ Confidence interval representing price uncertainty
146146

147147
- **Type**: `optional i64` (mantissa representation)
148148
- **Availability**: Only included if requested in subscription properties
149-
- **Algorithm**: Refer to [price aggregation](../../price-feeds/how-pyth-works/price-aggregation) for the current algorithm
149+
- **Algorithm**: Refer to [price aggregation](../../price-feeds/core/how-pyth-works/price-aggregation) for the current algorithm
150150
- **Invariants**: Positive when present
151151
- **Usage**: Risk management and price quality assessment
152152

@@ -158,7 +158,7 @@ Highest bid price across all contributing publishers
158158

159159
- **Type**: `optional non-zero i64` (mantissa representation)
160160
- **Availability**: Only included if requested in subscription properties
161-
- **Algorithm**: Refer to [price aggregation](../../price-feeds/how-pyth-works/price-aggregation) for the current algorithm
161+
- **Algorithm**: Refer to [price aggregation](../../price-feeds/core/how-pyth-works/price-aggregation) for the current algorithm
162162
- **Invariants**: Non-zero when present, typically ≤ current price
163163

164164
#### Lowest Market Ask - `best_ask_price`
@@ -167,7 +167,7 @@ Lowest ask price across all contributing publishers
167167

168168
- **Type**: `optional non-zero i64` (mantissa representation)
169169
- **Availability**: Only included if requested in subscription properties
170-
- **Algorithm**: Refer to [price aggregation](../../price-feeds/how-pyth-works/price-aggregation) for the current algorithm
170+
- **Algorithm**: Refer to [price aggregation](../../price-feeds/core/how-pyth-works/price-aggregation) for the current algorithm
171171
- **Invariants**: Non-zero when present, typically ≥ current price
172172

173173
### Derivatives Properties (FundingRate Feed Type Only)

0 commit comments

Comments
 (0)