pyth-crosschain/target_chains/sui/README.md

3.8 KiB

Pyth on Sui

1. Background

Pyth price feeds on Sui are uniquely represented in the global store as PriceInfoObjects. These objects have the key ability and serve as wrappers around the PriceInfo object, which in turn wraps around the PriceFeed, the arrival time of the latest price update, and the attestation time of the latest update.

PriceInfoObjects are central to Pyth on Sui, since they are in unique correspondence with each Pyth price feed and must be passed in to functions that act on price feeds, e.g.

  • update_price_feeds
  • update_price_feed_from_single_vaa
  • update_price_feeds_if_fresh

2. How to Update and Consume Price Feeds

To update and then consume a price feed, one needs to build a Sui programmable transaction.

As with other chains, one first obtains a batch price attestation VAA (of type vector<u8>) off-chain for a Price Info Object whose feed is to be used. Assume the ID is PRICE_INFO_OBJECT_ID. Then, chain together the following sequence of function calls:

1. wormhole::parse_and_verify

Call parse_and_verify on the batch attestation VAA bytes to obtain a VAA hot potato object.

public fun parse_and_verify(
      wormhole_state: &State,
      buf: vector<u8>,
      the_clock: &Clock
  ): VAA

2.pyth:update_price_feeds

Vectorize the VAA from the previous step and pass it to update_price_feeds.

 public fun update_price_feeds(
        pyth_state: &PythState,
        verified_vaas: vector<VAA>,
        price_info_objects: &mut vector<PriceInfoObject>,
        fee: Coin<SUI>,
        clock: &Clock
    )

3. pyth::get_price

Finally, get the price of the updated price feed in PriceInfoObject.

public fun get_price(
      state: &PythState,
      price_info_object: &PriceInfoObject,
      clock: &Clock
): Price

Fetch the price of the updated Price Info Object.

3. Examples

See the ./scripts folder for examples of programmable transactions for creating price feeds, updating price feeds, and deploying contracts.

To build and test the contracts, run the following

$ make test
$ make build

4. Contracts Registry

Pyth on Testnet

Wormhole on Testnet

Pyth on Mainnet

Wormhole on Mainnet