Skip to content

Commit c60a41d

Browse files
committed
chore(pricefeeds) Rename Edits
1 parent b1f284b commit c60a41d

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

pages/price-feeds/push-feeds.mdx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ The feeds can vary by network. Please see the relevant section below for the net
1616
- [Sui](push-feeds/sui)
1717

1818
<Callout type="default" emoji="ℹ️">
19-
Deviation thresholds can be customized to fit builders' needs, and additional
20-
feeds can be requested for this list. If you need custom thresholds or would
21-
like to see additional feeds, please fill in this [form](https://tally.so/r/nGz2jj)
22-
to signal your interest.
19+
Deviation thresholds can be customized to fit builders' needs, and additional
20+
feeds can be requested for this list. If you need custom thresholds or would
21+
like to see additional feeds, please fill in this
22+
[form](https://tally.so/r/nGz2jj) to signal your interest.
2323
</Callout>
2424

2525
<Callout type="info" emoji="ℹ️">
2626
Push feeds are subject to change with prior notice. Please refer to the [dev-
27-
forum](https://dev-forum.pyth.network/c/announcements/6) for the latest changes.
27+
forum](https://dev-forum.pyth.network/c/announcements/6) for the latest
28+
changes.
2829
</Callout>
2930

3031
<Callout type="info" emoji="⚠️">

pages/price-feeds/use-real-time-data.mdx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ If your blockchain is not supported, please [ask in the dev-forum](https://dev-f
1414

1515
**Pull integration** is the default choice for most applications. You manually pull the latest price data in your smart contract when needed.
1616

17-
**Push integration** is for applications that don't want to manually update prices in every transaction and prefer to rely on [Price Pushers](/price-feeds/schedule-price-updates) or [push-feeds](/price-feeds/push-feeds) that automatically maintain up-to-date prices on-chain.
17+
**Push integration** is for applications that don't want to manually pull prices in every transaction and prefer to rely on [Price Pushers](/price-feeds/schedule-price-updates) or [Push-Feeds](/price-feeds/push-feeds) that automatically maintain up-to-date prices on-chain.
1818

1919
<Callout type="info">
2020
Pyth is fundamentally a pull oracle, and all feeds are available through both
21-
integration methods. If you don't see specific feeds in push-feeds, you can
22-
run a price pusher yourself or ask the team by filling out [this
23-
form](https://tally.so/r/nGz2jj).
21+
integration methods. If you want to use push integration, you can push the
22+
prices for the feeds you need. You can run a [Price
23+
Pusher](/price-feeds/schedule-price-updates) or ask the team to add the feeds
24+
you need by filling out [this form](https://tally.so/r/nGz2jj).
2425
</Callout>
2526

2627
## Pull Integration

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use real-time price data using push feeds, developers can use the following c
1717

1818
### EVM
1919

20-
Developers building on EVM chains can use Push Feeds to consume real-time price data by reading the price from the Pyth Oracle smart contract.
20+
Developers building on EVM chains can use push feeds to consume real-time price data by reading the price from the Pyth oracle smart contract.
2121

2222
```solidity copy
2323
PythStructs.Price memory price = pyth.getPriceNoOlderThan(priceFeedId, 60);
@@ -61,12 +61,12 @@ contract SomeContract {
6161

6262
### SVM
6363

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

6767
### Aptos
6868

69-
Developers building on Aptos can use Push Feeds to consume real-time price data by reading the price from the Pyth Oracle smart contract on Aptos.
69+
Developers building on Aptos can use push feeds to consume real-time price data by reading the price from the Pyth Oracle smart contract on Aptos.
7070

7171
```rust copy
7272
let btc_price_identifier = x"e62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43";

0 commit comments

Comments
 (0)