Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Commit b2192f9

Browse files
authored
Merge pull request #66 from pyth-network/doc_update
Point readmes to on-demand docs
2 parents d4f8185 + 15cbc19 commit b2192f9

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

pyth-aptos-js/README.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ $ yarn add @pythnetwork/pyth-aptos-js
1919
## Quickstart
2020

2121
Pyth stores prices off-chain to minimize gas fees, which allows us to offer a wider selection of products and faster update times.
22+
See [On-Demand Updates](https://docs.pyth.network/consume-data/on-demand) for more information about this approach.
2223
To use Pyth prices on chain,
2324
they must be fetched from an off-chain price service. The `AptosPriceServiceConnection` class can be used to interact with these services,
2425
providing a way to fetch these prices directly in your code. The following example wraps an existing RPC provider and shows how to obtain
@@ -129,16 +130,6 @@ export APTOS_KEY = "0x...";
129130
npm run example-relay -- --endpoint https://xc-testnet.pyth.network --price-ids 0xf9c0172ba10dfa4d19088d94f5bf61d3b54d5bd7483a322a982e1373ee8ea31b 0xca80ba6dc32e08d06f1aa886011eed1d77c77be9eb761cc10d72b7d0a2fd57a6 --full-node https://fullnode.testnet.aptoslabs.com/v1 --pyth-contract 0xaa706d631cde8c634fe1876b0c93e4dec69d0c6ccac30a734e9e257042e81541
130131
```
131132

132-
## How Pyth Works on Aptos
133-
134-
Pyth prices are published on Pythnet, and relayed to Aptos using the [Wormhole Network](https://wormholenetwork.com/) as a cross-chain message passing bridge. The Wormhole Network observes when Pyth prices on Pythnet have changed and publishes an off-chain signed message attesting to this fact. This is explained in more detail [here](https://docs.wormholenetwork.com/wormhole/).
135-
136-
This signed message can then be submitted to the Pyth contract on the Aptos networks, which will verify the Wormhole message and update the Pyth contract with the new price.
137-
138-
### On-demand price updates
139-
140-
Price updates are not submitted to the Aptos networks automatically: rather, when a consumer needs to use the value of a price they should first submit the latest Wormhole update for that price to the Pyth contract on the Aptos network they are working on. This will make the most recent price update available on-chain for Aptos contracts to use.
141-
142133
## Price Service endpoints
143134

144135
We provide public endpoints for the price service, although it is strongly recommended to host your own instance.

pyth-evm-js/README.md

+1-11
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ yarn add @pythnetwork/pyth-evm-js
1919
## Quickstart
2020

2121
Pyth stores prices off-chain to minimize gas fees, which allows us to offer a wider selection of products and faster update times.
22-
See [How Pyth Works in EVM](#how-pyth-works-in-evm) for more details about this approach. In order to use Pyth prices on chain,
22+
See [On-Demand Updates](https://docs.pyth.network/consume-data/on-demand) for more information about this approach. In order to use Pyth prices on chain,
2323
they must be fetched from an off-chain price service. The `EvmPriceServiceConnection` class can be used to interact with these services,
2424
providing a way to fetch these prices directly in your code. The following example wraps an existing RPC provider and shows how to obtain
2525
Pyth prices and submit them to the network:
@@ -145,16 +145,6 @@ You can run this example with `npm run example-relay`. A full command that updat
145145
npm run example-relay -- --network bnb_testnet --mnemonic "my good mnemonic" --endpoint https://xc-testnet.pyth.network --price-ids 0xf9c0172ba10dfa4d19088d94f5bf61d3b54d5bd7483a322a982e1373ee8ea31b 0xca80ba6dc32e08d06f1aa886011eed1d77c77be9eb761cc10d72b7d0a2fd57a6
146146
```
147147

148-
## How Pyth Works on EVM Chains
149-
150-
Pyth prices are published on Pythnet, and relayed to EVM chains using the [Wormhole Network](https://wormholenetwork.com/) as a cross-chain message passing bridge. The Wormhole Network observes when Pyth prices on Pythnet have changed and publishes an off-chain signed message attesting to this fact. This is explained in more detail [here](https://docs.wormholenetwork.com/wormhole/).
151-
152-
This signed message can then be submitted to the Pyth contract on the EVM networks, which will verify the Wormhole message and update the Pyth contract with the new price.
153-
154-
### On-demand price updates
155-
156-
Price updates are not submitted on the EVM networks automatically: rather, when a consumer needs to use the value of a price they should first submit the latest Wormhole update for that price to the Pyth contract on the EVM network they are working on. This will make the most recent price update available on-chain for EVM contracts to use.
157-
158148
## Price Service endpoints
159149

160150
Public endpoints for the Price Service are provided for both mainnet and testnet. These can be used regardless of which network you deploy your own contracts to as long as it is a Pyth supported network. For example, you can use the testnet Price Service whether you are deploying your contract to the BNB or Polygon testnet.

0 commit comments

Comments
 (0)