|
|
3 weeks ago | |
|---|---|---|
| .. | ||
| src | a615b5a17f chore: linting and typechecking yak shaving to the nth degree | 3 weeks ago |
| .gitignore | ab0cf6f7d8 chore: updated gitignore to excluse the built dist/ folder | 3 weeks ago |
| README.md | f04cae050f feat(target_chains/fuel): update fuel toolchains to the latest version (#1911) | 1 year ago |
| eslint.config.js | a615b5a17f chore: linting and typechecking yak shaving to the nth degree | 3 weeks ago |
| package.json | 5f7408b076 chore: went back to previous engines versions | 3 weeks ago |
| tsconfig.build.json | b693600a6d fix(pyth-fuel-js): fixed build and typings | 3 weeks ago |
| tsconfig.json | b693600a6d fix(pyth-fuel-js): fixed build and typings | 3 weeks ago |
Pyth provides real-time pricing data in a variety of asset classes, including cryptocurrency, equities, FX and commodities. This library allows you to use these real-time prices on Fuel network.
$ npm install --save @pythnetwork/pyth-fuel-js
$ yarn add @pythnetwork/pyth-fuel-js
This library is intended to be used in combination with hermes-client and fuels.
$ npm install --save fuels @pythnetwork/hermes-client
or
$ yarn add fuels @pythnetwork/hermes-client
Pyth stores prices off-chain to minimize gas fees, which allows us to offer a wider selection of products and faster update times.
See On-Demand Updates for more information about this approach.
To use Pyth prices on chain,
they must be fetched from a Hermes instance. The HermesClient class from Pyth's hermes-client library can be used to interact with Hermes,
providing a way to fetch these prices directly in your code.
In order to use Pyth prices in your protocol you need to submit the price update data to Pyth contract in your target
chain.
For a complete example of how to obtain Pyth prices and submit them to a Fuel network, check out the usage example in the src/examples directory.
We strongly recommend reading our guide which explains how to work with Pyth price feeds.