You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 3, 2023. It is now read-only.
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
-
142
133
## Price Service endpoints
143
134
144
135
We provide public endpoints for the price service, although it is strongly recommended to host your own instance.
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,
23
23
they must be fetched from an off-chain price service. The `EvmPriceServiceConnection` class can be used to interact with these services,
24
24
providing a way to fetch these prices directly in your code. The following example wraps an existing RPC provider and shows how to obtain
25
25
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
145
145
npm run example-relay -- --network bnb_testnet --mnemonic "my good mnemonic" --endpoint https://xc-testnet.pyth.network --price-ids 0xf9c0172ba10dfa4d19088d94f5bf61d3b54d5bd7483a322a982e1373ee8ea31b 0xca80ba6dc32e08d06f1aa886011eed1d77c77be9eb761cc10d72b7d0a2fd57a6
146
146
```
147
147
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
-
158
148
## Price Service endpoints
159
149
160
150
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