Skip to content

Commit 08c69cb

Browse files
committed
chore(dev-hub) Move source to lib
1 parent dc5bac0 commit 08c69cb

File tree

18 files changed

+39
-22
lines changed

18 files changed

+39
-22
lines changed

apps/developer-hub/content/docs/express-relay/contract-addresses.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ description: >-
44
Express Relay is currently deployed on the following SVM environments:
55
---
66

7-
import CopyAddress from "../../../src/components/CopyAddress";
8-
97
<Tabs items={['Production', 'Testing']}>
108
<Tab value="production">
119

apps/developer-hub/content/docs/price-feeds/v1/contract-addresses/aptos.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ full: false
77
index: false
88
---
99

10-
import CopyAddress from "../../../../src/components/CopyAddress";
11-
1210
# Price Feed Contract Addresses on Aptos
1311

1412
Pyth is currently deployed on Aptos Mainnet, Aptos Testnet, and Movement devnet.

apps/developer-hub/content/docs/price-feeds/v1/contract-addresses/fuel.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ full: false
77
index: false
88
---
99

10-
import CopyAddress from "../../../../src/components/CopyAddress";
11-
1210
# Price Feed Contract Addresses on Fuel
1311

1412
Pyth is currently deployed on Fuel Mainnet and Fuel Testnet.

apps/developer-hub/content/docs/price-feeds/v1/contract-addresses/movement.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ full: false
88
index: false
99
---
1010

11-
import CopyAddress from "../../../../src/components/CopyAddress";
12-
1311
# Price Feed Contract Addresses on Movement
1412

1513
Pyth is currently deployed on the following Movement networks.

apps/developer-hub/content/docs/price-feeds/v1/contract-addresses/solana.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ full: false
77
index: false
88
---
99

10-
import CopyAddress from "../../../../src/components/CopyAddress";
11-
1210
# Program Addresses on Solana and other SVM chains
1311

1412
The Pyth Oracle consists of two different programs.

apps/developer-hub/content/docs/price-feeds/v1/contract-addresses/starknet.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ full: false
77
index: false
88
---
99

10-
import CopyAddress from "../../../../src/components/CopyAddress";
11-
1210
# Price Feed Contract Addresses on Starknet
1311

1412
Pyth is deployed on both Starknet Mainnet and Testnet.

apps/developer-hub/content/docs/price-feeds/v1/contract-addresses/ton.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ full: false
77
index: false
88
---
99

10-
import CopyAddress from "../../../../src/components/CopyAddress";
11-
1210
# Price Feed Contract Addresses on TON
1311

1412
Pyth is currently deployed on TON Mainnet and TON Testnet.

apps/developer-hub/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@
3737
"react-aria": "catalog:",
3838
"react-dom": "catalog:",
3939
"rehype-katex": "^7.0.1",
40+
"remark": "^15.0.1",
41+
"remark-gfm": "^4.0.1",
4042
"remark-math": "^6.0.0",
43+
"remark-mdx": "^3.1.1",
4144
"viem": "catalog:",
4245
"zod": "catalog:",
4346
"zod-validation-error": "catalog:"

apps/developer-hub/src/app/(docs)/[section]/[...slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export { DocumentationPage as default } from "../../../../components/Pages/Docum
22
import type { Metadata } from "next";
33
import { notFound } from "next/navigation";
44

5-
import { source } from "../../../../source";
5+
import { source } from "../../../../lib/source";
66

77
export function generateStaticParams() {
88
return source.generateParams();

apps/developer-hub/src/app/(docs)/[section]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export { LandingPage as default } from "../../../components/Pages/LandingPage";
22
import type { Metadata } from "next";
33
import { notFound } from "next/navigation";
44

5-
import { source } from "../../../source";
5+
import { source } from "../../../lib/source";
66

77
export function generateStaticParams() {
88
return source.generateParams();

0 commit comments

Comments
 (0)