// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.13; import "@equilibria/root/number/types/Fixed6.sol"; /// @dev A singular oracle version with its corresponding data struct OracleVersion { /// @dev the timestamp of the oracle update uint256 timestamp; /// @dev The oracle price of the corresponding version Fixed6 price; /// @dev Whether the version is valid bool valid; }