Skip to content

Commit 7e0aeb5

Browse files
committed
fix: port across content and fix minor issues
1 parent 43a05a7 commit 7e0aeb5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+135
-237
lines changed

apps/developer-hub/content/docs/pyth-core/api-instances-and-providers/hermes.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
2-
title: 'Hermes: Open-Source Service for Pyth Price Updates'
2+
title: "Hermes: Open-Source Service for Pyth Price Updates"
33
description: >-
44
Experience real-time Pyth price feeds with Hermes: an open-source REST and
55
streaming API. Use public endpoints or self-host for reliable, decentralized
66
data.
77
full: false
88
index: false
99
---
10-
import { Callout } from "nextra/components";
1110

1211
# Hermes
1312

@@ -24,7 +23,7 @@ Network:
2423

2524
URL: https://hermes.pyth.network
2625

27-
<Callout type="info" emoji="⚠️">
26+
<Callout variant="info" icon="⚠️">
2827
For developers building on **Aptos testnet**, **Sui testnet** or **Near testnet**, please use the Hermes Beta endpoint:
2928

3029
URL: https://hermes-beta.pyth.network
Loading

apps/developer-hub/content/docs/pyth-core/contract-addresses/aptos.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
2-
title: 'Aptos Pyth Contract Addresses (Mainnet, Testnet, Devnet)'
2+
title: "Aptos Pyth Contract Addresses (Mainnet, Testnet, Devnet)"
33
description: >-
44
Browse Pyth’s Aptos contract addresses on Mainnet, Testnet, and Devnet with
55
direct links to Pyth, Wormhole, and the Deployer for quick reference.
66
full: false
77
index: false
88
---
9-
import CopyAddress from "../../../components/CopyAddress";
9+
10+
import CopyAddress from "../../../../src/components/CopyAddress";
1011

1112
# Price Feed Contract Addresses on Aptos
1213

apps/developer-hub/content/docs/pyth-core/contract-addresses/fuel.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ description: >-
66
full: false
77
index: false
88
---
9-
import CopyAddress from "../../../components/CopyAddress";
9+
10+
import CopyAddress from "../../../../src/components/CopyAddress";
1011

1112
# Price Feed Contract Addresses on Fuel
1213

apps/developer-hub/content/docs/pyth-core/contract-addresses/movement.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ description: >-
77
full: false
88
index: false
99
---
10-
import CopyAddress from "../../../components/CopyAddress";
10+
11+
import CopyAddress from "../../../../src/components/CopyAddress";
1112

1213
# Price Feed Contract Addresses on Movement
1314

apps/developer-hub/content/docs/pyth-core/contract-addresses/pythnet.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ description: >-
77
full: false
88
index: false
99
---
10-
# Price Feed Program Addresses on Pythnet
1110

12-
import { Callout } from "nextra/components";
11+
# Price Feed Program Addresses on Pythnet
1312

14-
<Callout type="warning" emoji="⚠️">
13+
<Callout variant="warning" icon="⚠️">
1514
**Important:** The addresses on this page are for the Pythnet network itself,
1615
which is used to construct and deliver Pyth prices to other blockchains. If
1716
you are building an application on EVM, Solana, SVM, or another chain, you

apps/developer-hub/content/docs/pyth-core/contract-addresses/solana.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ description: >-
66
full: false
77
index: false
88
---
9-
import CopyAddress from "../../../components/CopyAddress";
9+
10+
import CopyAddress from "../../../../src/components/CopyAddress";
1011

1112
# Program Addresses on Solana and other SVM chains
1213

apps/developer-hub/content/docs/pyth-core/contract-addresses/starknet.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
2-
title: 'Pyth Price Feed Contract Addresses on Starknet: Mainnet and Testnet'
2+
title: "Pyth Price Feed Contract Addresses on Starknet: Mainnet and Testnet"
33
description: >-
44
Pyth StarkNet contract addresses for Mainnet and Testnet, with links to their
55
StarkScan pages.
66
full: false
77
index: false
88
---
9-
import CopyAddress from "../../../components/CopyAddress";
9+
10+
import CopyAddress from "../../../../src/components/CopyAddress";
1011

1112
# Price Feed Contract Addresses on Starknet
1213

apps/developer-hub/content/docs/pyth-core/contract-addresses/ton.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ description: >-
66
full: false
77
index: false
88
---
9-
import CopyAddress from "../../../components/CopyAddress";
9+
10+
import CopyAddress from "../../../../src/components/CopyAddress";
1011

1112
# Price Feed Contract Addresses on TON
1213

apps/developer-hub/content/docs/pyth-core/create-your-first-pyth-app.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,13 @@ description: >-
77
full: false
88
index: false
99
---
10-
import { Callout } from "nextra/components";
1110

1211
# Create your first Pyth app
1312

1413
This tutorial walks through creating a complete application that uses Pyth Price feeds.
1514
The application includes a smart contract and an off-chain code invoking the contract.
1615

17-
<Callout type="info" emoji="ℹ️">
16+
<Callout variant="info" icon="ℹ️">
1817
The tutorial is an in-depth walkthrough of contract development; more
1918
experienced developers may want to refer to [Use Real-time Price
2019
Data](./use-real-time-data) for a more concise version.

0 commit comments

Comments
 (0)