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

Commit 8ea98da

Browse files
Fix pre-commit formatting issues in pyth-token.mdx, starknet.mdx, and ton.mdx (#901)
* Fix pre-commit formatting issues in pyth-token.mdx, starknet.mdx, and ton.mdx - Fix trailing whitespace in starknet.mdx and ton.mdx - Apply prettier formatting to all three files - Update import quotes to use double quotes in pyth-token.mdx - Reformat code block formatting in starknet.mdx and ton.mdx tabs Co-Authored-By: Jayant <[email protected]> * Fix MDX syntax errors in code block formatting The previous prettier formatting put code blocks on a single line with the opening tag, which broke MDX parsing. This commit fixes the issue by ensuring code blocks are on separate lines within Tabs.Tab components, following the pattern used elsewhere in the codebase. Co-Authored-By: Jayant <[email protected]> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Jayant <[email protected]>
1 parent a5e6299 commit 8ea98da

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

pages/home/pyth-token.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Steps } from 'nextra/components';
1+
import { Steps } from "nextra/components";
22

33
# PYTH Token
44

pages/price-feeds/use-real-time-data/pull-integration/starknet.mdx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,18 @@ Pyth also provides a javascript SDK to interact with the Pyth contract on Starkn
2121

2222
<Tabs items={["npm", "yarn"]}>
2323
<Tabs.Tab>
24-
```sh copy
25-
npm install --save @pythnetwork/pyth-starknet-js
26-
```
24+
25+
```sh copy
26+
npm install --save @pythnetwork/pyth-starknet-js
27+
```
28+
2729
</Tabs.Tab>
2830
<Tabs.Tab>
29-
```sh copy
30-
yarn add @pythnetwork/pyth-starknet-js
31-
```
31+
32+
```sh copy
33+
yarn add @pythnetwork/pyth-starknet-js
34+
```
35+
3236
</Tabs.Tab>
3337
</Tabs>
3438

pages/price-feeds/use-real-time-data/pull-integration/ton.mdx

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,18 @@ Install the Pyth TON SDK and other necessary dependencies using npm:
1414

1515
<Tabs items={["npm", "yarn"]}>
1616
<Tabs.Tab>
17-
```sh copy
18-
npm install @pythnetwork/pyth-ton-js @pythnetwork/hermes-client
19-
@ton/core @ton/ton @ton/crypto
20-
```
17+
18+
```sh copy
19+
npm install @pythnetwork/pyth-ton-js @pythnetwork/hermes-client @ton/core @ton/ton @ton/crypto
20+
```
21+
2122
</Tabs.Tab>
2223
<Tabs.Tab>
23-
```sh copy
24-
yarn add @pythnetwork/pyth-ton-js @pythnetwork/hermes-client
25-
@ton/core @ton/ton @ton/crypto
26-
```
24+
25+
```sh copy
26+
yarn add @pythnetwork/pyth-ton-js @pythnetwork/hermes-client @ton/core @ton/ton @ton/crypto
27+
```
28+
2729
</Tabs.Tab>
2830
</Tabs>
2931

0 commit comments

Comments
 (0)