Skip to content

TransientPriceLibrary

Functions

pack

Packs the struct into a uint256.

function pack(TransientPrice memory x) internal pure returns (uint256);

unpack

Unpacks the struct from a uint256.

function unpack(uint256 packed) internal pure returns (TransientPrice memory);

store

Packs and stores the object to transient storage.

function store(TransientPrice memory x, bytes32 requestDigest) internal;

load

Loads from transient storage and unpacks to TransientPrice.

function load(bytes32 requestDigest) internal view returns (TransientPrice memory);