FormattedDataStreamsPrice

Git Source

Representation of data streams asset price with a uint256 price.

struct FormattedDataStreamsPrice {
    uint256 timestamp;
    uint256 price;
    uint256 ask;
    uint256 bid;
}

Properties

NameTypeDescription
timestampuint256The timestamp of the asset price.
priceuint256The price of the asset with 18 decimals.
askuint256The simulated price impact of a sell order.
biduint256The simulated price impact of a buy order.