pyth-crosschain/target_chains/cosmwasm/sdk/rust
Dev Kalra ec65d3ca81
[cosmwasm] osmosis release (#767)
* update contract version

* update script to build for osmosis

* update pyth sdk cw version

* update release pipeline

* fix pipeline
2023-04-17 18:25:09 +05:30
..
src [cosmwasm] Osmosis multiple fee token support (#763) 2023-04-14 12:19:57 +05:30
Cargo.toml [cosmwasm] osmosis release (#767) 2023-04-17 18:25:09 +05:30
README.md Move cosmwasm sdk into standard tree structure (#761) 2023-04-13 12:27:34 -07:00

README.md

Pyth SDK CW

This crate exposes utilities to interact with the contract on the CosmWasm ecosystem. You can also look at the example contract which demonstrates how to read price feeds from on-chain CosmWasm applications.

Installation

Add this crate to the dependencies section of your CosmWasm contract's Cargo.toml file:

[dependencies]
pyth-sdk-cw = "1.0.0"

Usage

Simply import the structs exposed by the crate and use them while interacting with the pyth contract. For example:

// to query Pyth contract
use pyth_sdk_cw::{
    PriceFeedResponse,
    query_price_feed,
};

... {
    let price_feed_response: PriceFeedResponse = query_price_feed(&deps.querier, state.pyth_contract_addr, state.price_feed_id)?;
    let price_feed = price_feed_response.price_feed;
}
....

This snippet returns a PriceFeed struct which exposes methods for reading the current price along with other useful functionality. See the Pyth common SDK documentation for more information about this struct. The common SDK also provides methods for combining price feeds in several useful ways. These methods allow you to derive prices for alternative quote currencies -- for example, to derive the BTC/ETH price from the BTC/USD and ETH/USD price feeds -- and to price baskets of currencies.

Contracts and Price Feeds

Pyth is currently available on the following cosmwasm chains:

Testnet

Network Contract address
Injective inj1z60tg0tekdzcasenhuuwq3htjcd5slmgf7gpez

Available price feeds on these networks can be find below:

Price Feeds

Network Available Price Feeds
Injective Testnet https://pyth.network/developers/price-feed-ids#injective-testnet