PriceRepositoryStorage
State Variables
STORAGE_SLOT
bytes32 internal constant STORAGE_SLOT = keccak256("premia.contracts.storage.PriceRepository");
Functions
layout
function layout() internal pure returns (Layout storage l);
Structs
Layout
struct Layout {
mapping(address token => mapping(address denomination => mapping(uint256 timestamp => UD60x18 price))) prices;
}