Skip to content

OfferLibrary

State Variables

OFFER_TYPE

string constant OFFER_TYPE =
    "Offer(uint256 minPrice,uint256 maxPrice,uint64 biddingStart,uint32 rampUpPeriod,uint32 timeout,uint256 lockStake)";

OFFER_TYPEHASH

bytes32 constant OFFER_TYPEHASH = keccak256(abi.encodePacked(OFFER_TYPE));

Functions

validate

Validates that price, ramp-up, timeout, and deadline are internally consistent and the offer has not expired.

function validate(Offer memory offer, RequestId requestId) internal view returns (uint64 deadline1);
Parameters
NameTypeDescription
offerOfferThe offer to validate.
requestIdRequestIdThe ID of the request associated with the offer.
Returns
NameTypeDescription
deadline1uint64The deadline for the offer.

blockAtPrice

Calculates the earliest block at which the offer will be worth at least the given price.

function blockAtPrice(Offer memory offer, uint256 price) internal pure returns (uint64);
Parameters
NameTypeDescription
offerOfferThe offer to calculate for.
priceuint256The price to calculate the block for.
Returns
NameTypeDescription
<none>uint64The earliest block at which the offer will be worth at least the given price.

priceAtBlock

Calculates the price at the given block.

function priceAtBlock(Offer memory offer, uint64 _block) internal pure returns (uint256);
Parameters
NameTypeDescription
offerOfferThe offer to calculate for.
_blockuint64The block to calculate the price for.
Returns
NameTypeDescription
<none>uint256The price at the given block.

deadline

Calculates the deadline for the offer.

function deadline(Offer memory offer) internal pure returns (uint64);
Parameters
NameTypeDescription
offerOfferThe offer to calculate the deadline for.
Returns
NameTypeDescription
<none>uint64The deadline for the offer.

eip712Digest

Computes the EIP-712 digest for the given offer.

function eip712Digest(Offer memory offer) internal pure returns (bytes32);
Parameters
NameTypeDescription
offerOfferThe offer to compute the digest for.
Returns
NameTypeDescription
<none>bytes32The EIP-712 digest of the offer.