#cosmwasm #oracle #pyth

pyth-sdk-cw

Data structures and utilites for the Pyth price oracle

5 releases (2 stable)

1.2.0 May 18, 2023
1.0.0 Feb 14, 2023
0.3.0 Dec 7, 2022
0.2.0 Aug 18, 2022
0.1.0 Jul 14, 2022

#5 in #pyth

Download history 104/week @ 2024-01-04 92/week @ 2024-01-11 132/week @ 2024-01-18 104/week @ 2024-01-25 78/week @ 2024-02-01 140/week @ 2024-02-08 121/week @ 2024-02-15 239/week @ 2024-02-22 106/week @ 2024-02-29 136/week @ 2024-03-07 147/week @ 2024-03-14 111/week @ 2024-03-21 101/week @ 2024-03-28 78/week @ 2024-04-04 175/week @ 2024-04-11 177/week @ 2024-04-18

543 downloads per month
Used in 9 crates (2 directly)

Apache-2.0

12KB
214 lines

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

Dependencies

~7MB
~145K SLoC