IPyth
Overview
License: MIT
Author: Pyth Data Association Please refer to the guidance at https://docs.pyth.network/consumers/best-practices for how to consume prices safely.
Functions info
latestPriceInfoPublishTime (0x4c469d8c)
singleUpdateFeeInWei (0x48b6404d)
getEmaPriceUnsafe (0x9474f45b)
Returns the exponentially-weighted moving average price of a price feed without any sanity checks.
This function returns the same price as getEmaPrice
in the case where the price is available. However, if the price is not recent this function returns the latest available price.
The returned price can be from arbitrarily far in the past; this function makes no guarantees that the returned price is recent or useful for any particular application.
Users of this function should check the publishTime
in the price to ensure that the returned price is sufficiently recent for their application. If you are considering using this function, it may be safer / easier to use either getEmaPrice
or getEmaPriceNoOlderThan
.
Return values:
getEmaPriceNoOlderThan (0x711a2e28)
Returns the exponentially-weighted moving average price that is no older than age
seconds of the current time.
This function is a sanity-checked version of getEmaPriceUnsafe
which is useful in applications that require a sufficiently-recent price. Reverts if the price wasn't updated sufficiently recently.
Return values:
updatePriceFeeds (0xef9e5e28)
Update price feeds with given update messages. This method requires the caller to pay a fee in wei; the required fee can be computed by calling getUpdateFee
with the length of the updateData
array. Prices will be updated if they are more recent than the current stored prices. The call will succeed even if the update is not the most recent.
Reverts if the transferred fee is not sufficient or the updateData is invalid.
Parameters:
Last updated