Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00Latest 19 from a total of 19 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Issue New Series | 139095560 | 788 days ago | IN | 0 ETH | 0.00009899 | ||||
| Issue New Series | 137738786 | 792 days ago | IN | 0 ETH | 0.00003748 | ||||
| Issue New Series | 137737475 | 792 days ago | IN | 0 ETH | 0.00004043 | ||||
| Issue New Series | 124805371 | 833 days ago | IN | 0 ETH | 0.00007418 | ||||
| Issue New Series | 124803539 | 833 days ago | IN | 0 ETH | 0.00006783 | ||||
| Issue New Series | 122590260 | 840 days ago | IN | 0 ETH | 0.00009565 | ||||
| Issue New Series | 122404459 | 841 days ago | IN | 0 ETH | 0.0003037 | ||||
| Issue New Series | 122403622 | 841 days ago | IN | 0 ETH | 0.00032398 | ||||
| Issue New Series | 119001958 | 852 days ago | IN | 0 ETH | 0.0000875 | ||||
| Issue New Series | 119000485 | 852 days ago | IN | 0 ETH | 0.00008076 | ||||
| Issue New Series | 117059458 | 857 days ago | IN | 0 ETH | 0.00009486 | ||||
| Issue New Series | 114808847 | 864 days ago | IN | 0 ETH | 0.00013511 | ||||
| Issue New Series | 114807775 | 864 days ago | IN | 0 ETH | 0.0001326 | ||||
| Issue New Series | 114806425 | 864 days ago | IN | 0 ETH | 0.00013258 | ||||
| Issue New Series | 112485154 | 871 days ago | IN | 0 ETH | 0.00017867 | ||||
| Issue New Series | 112463362 | 871 days ago | IN | 0 ETH | 0.00019902 | ||||
| Issue New Series | 106520131 | 889 days ago | IN | 0 ETH | 0.0001983 | ||||
| Issue New Series | 106466075 | 889 days ago | IN | 0 ETH | 0.00025594 | ||||
| Issue New Series | 106461987 | 889 days ago | IN | 0 ETH | 0.00026338 |
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
OptionCatalogue
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 100 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9;
import "./tokens/ERC20.sol";
import "./libraries/Types.sol";
import "./libraries/CustomErrors.sol";
import "./libraries/AccessControl.sol";
import "./libraries/OptionsCompute.sol";
import "prb-math/contracts/PRBMathSD59x18.sol";
/**
* @title OptionCatalogue
* @dev Store information on options approved for sale and to buy as well as netDhvExposure of the option
*/
contract OptionCatalogue is AccessControl {
using PRBMathSD59x18 for int256;
///////////////////////////
/// immutable variables ///
///////////////////////////
// asset that is used for collateral asset
address public immutable collateralAsset;
/////////////////////////////////////
/// governance settable variables ///
/////////////////////////////////////
// storage of option information and approvals
mapping(bytes32 => OptionStores) public optionStores;
// array of expirations currently supported (mainly for frontend use)
uint64[] public expirations;
// details of supported options first key is expiration then isPut then an array of strikes (mainly for frontend use)
mapping(uint256 => mapping(bool => uint128[])) public optionDetails;
//////////////////////////
/// constant variables ///
//////////////////////////
// oToken decimals
uint8 private constant OPYN_DECIMALS = 8;
// scale otoken conversion decimals
uint8 private constant CONVERSION_DECIMALS = 18 - OPYN_DECIMALS;
/////////////////////////
/// structs && events ///
/////////////////////////
struct OptionStores {
bool approvedOption;
bool isBuyable;
bool isSellable;
}
event SeriesApproved(
bytes32 indexed optionHash,
uint64 expiration,
uint128 strike,
bool isPut,
bool isBuyable,
bool isSellable
);
event SeriesAltered(
bytes32 indexed optionHash,
uint64 expiration,
uint128 strike,
bool isPut,
bool isBuyable,
bool isSellable
);
constructor(address _authority, address _collateralAsset) AccessControl(IAuthority(_authority)) {
collateralAsset = _collateralAsset;
}
//////////////////////////////////////////////////////
/// access-controlled state changing functionality ///
//////////////////////////////////////////////////////
/**
* @notice issue an option series for buying or sale
* @param options option type to approve - strike in e18
* @dev only callable by the manager
*/
function issueNewSeries(Types.Option[] memory options) external {
_onlyManager();
uint256 addressLength = options.length;
for (uint256 i = 0; i < addressLength; i++) {
Types.Option memory o = options[i];
// make sure the strike gets formatted properly
uint128 strike = uint128(
OptionsCompute.formatStrikePrice(o.strike, collateralAsset) * 10 ** (CONVERSION_DECIMALS)
);
if ((o.expiration - 28800) % 86400 != 0) {
revert CustomErrors.InvalidExpiry();
}
// get the hash of the option (how the option is stored on the books)
bytes32 optionHash = keccak256(abi.encodePacked(o.expiration, strike, o.isPut));
// if the option is already issued then skip it
if (optionStores[optionHash].approvedOption) {
continue;
}
// store information on the series
optionStores[optionHash] = OptionStores(
true, // approval
o.isBuyable,
o.isSellable
);
// store it in an array, these are mainly for frontend/informational use
// if the strike array is empty for calls and puts for that expiry it means that this expiry hasnt been issued yet
// so we should save the expory
if (
optionDetails[o.expiration][true].length == 0 && optionDetails[o.expiration][false].length == 0
) {
expirations.push(o.expiration);
}
// we wouldnt get here if the strike already existed, so we store it in the array
// there shouldnt be any duplicates in the strike array or expiration array
optionDetails[o.expiration][o.isPut].push(strike);
// emit an event of the series creation, now users can write options on this series
emit SeriesApproved(optionHash, o.expiration, strike, o.isPut, o.isBuyable, o.isSellable);
}
}
/**
* @notice change whether an issued option is for buy or sale
* @param options option type to change status on - strike in e18
* @dev only callable by the manager
*/
function changeOptionBuyOrSell(Types.Option[] memory options) external {
_onlyManager();
uint256 adLength = options.length;
for (uint256 i = 0; i < adLength; i++) {
Types.Option memory o = options[i];
// make sure the strike gets formatted properly, we get it to e8 format in the converter
// then convert it back to e18
uint128 strike = uint128(
OptionsCompute.formatStrikePrice(o.strike, collateralAsset) * 10 ** (CONVERSION_DECIMALS)
);
// get the option hash
bytes32 optionHash = keccak256(abi.encodePacked(o.expiration, strike, o.isPut));
// if its already approved then we can change its parameters, if its not approved then revert as there is a mistake
if (optionStores[optionHash].approvedOption) {
optionStores[optionHash].isBuyable = o.isBuyable;
optionStores[optionHash].isSellable = o.isSellable;
emit SeriesAltered(optionHash, o.expiration, strike, o.isPut, o.isBuyable, o.isSellable);
} else {
revert CustomErrors.UnapprovedSeries();
}
}
}
///////////////////////////
/// non-complex getters ///
///////////////////////////
/**
* @notice get list of all expirations ever activated
* @return list of expirations
*/
function getExpirations() external view returns (uint64[] memory) {
return expirations;
}
/**
* @notice get list of all strikes for a specific expiration and flavour
* @return list of strikes for a specific expiry and flavour
*/
function getOptionDetails(uint64 expiration, bool isPut) external view returns (uint128[] memory) {
return optionDetails[expiration][isPut];
}
function getOptionStores(bytes32 oHash) external view returns (OptionStores memory) {
return optionStores[oHash];
}
function isBuyable(bytes32 oHash) external view returns (bool) {
return optionStores[oHash].isBuyable;
}
function isSellable(bytes32 oHash) external view returns (bool) {
return optionStores[oHash].isSellable;
}
function approvedOptions(bytes32 oHash) external view returns (bool) {
return optionStores[oHash].approvedOption;
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.0;
interface IAuthority {
/* ========== EVENTS ========== */
event GovernorPushed(address indexed from, address indexed to);
event GuardianPushed(address indexed to);
event ManagerPushed(address indexed from, address indexed to);
event GovernorPulled(address indexed from, address indexed to);
event GuardianRevoked(address indexed to);
event ManagerPulled(address indexed from, address indexed to);
/* ========== VIEW ========== */
function governor() external view returns (address);
function guardian(address _target) external view returns (bool);
function manager() external view returns (address);
function pullManager() external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
import "../interfaces/IAuthority.sol";
error UNAUTHORIZED();
/**
* @title Contract used for access control functionality, based off of OlympusDao Access Control
*/
abstract contract AccessControl {
/* ========== EVENTS ========== */
event AuthorityUpdated(IAuthority authority);
/* ========== STATE VARIABLES ========== */
IAuthority public authority;
/* ========== Constructor ========== */
constructor(IAuthority _authority) {
authority = _authority;
emit AuthorityUpdated(_authority);
}
/* ========== GOV ONLY ========== */
function setAuthority(IAuthority _newAuthority) external {
_onlyGovernor();
authority = _newAuthority;
emit AuthorityUpdated(_newAuthority);
}
/* ========== INTERNAL CHECKS ========== */
function _onlyGovernor() internal view {
if (msg.sender != authority.governor()) revert UNAUTHORIZED();
}
function _onlyGuardian() internal view {
if (!authority.guardian(msg.sender) && msg.sender != authority.governor()) revert UNAUTHORIZED();
}
function _onlyManager() internal view {
if (msg.sender != authority.manager() && msg.sender != authority.governor())
revert UNAUTHORIZED();
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
import "prb-math/contracts/PRBMathSD59x18.sol";
import "prb-math/contracts/PRBMathUD60x18.sol";
import { NormalDist } from "./NormalDist.sol";
/**
* @title Library used to calculate an option price using Black Scholes
*/
library BlackScholes {
using PRBMathSD59x18 for int256;
using PRBMathSD59x18 for int8;
using PRBMathUD60x18 for uint256;
uint256 private constant ONE_YEAR_SECONDS = 31557600;
uint256 private constant ONE = 1000000000000000000;
uint256 private constant TWO = 2000000000000000000;
struct Intermediates {
uint256 d1Denominator;
int256 d1;
int256 eToNegRT;
}
function callOptionPrice(
int256 d1,
int256 d1Denominator,
int256 price,
int256 strike,
int256 eToNegRT
) public pure returns (uint256) {
int256 d2 = d1 - d1Denominator;
int256 cdfD1 = NormalDist.cdf(d1);
int256 cdfD2 = NormalDist.cdf(d2);
int256 priceCdf = price.mul(cdfD1);
int256 strikeBy = strike.mul(eToNegRT).mul(cdfD2);
assert(priceCdf >= strikeBy);
return uint256(priceCdf - strikeBy);
}
function callOptionPriceGreeks(
int256 d1,
int256 d1Denominator,
int256 price,
int256 strike,
int256 eToNegRT
) public pure returns (uint256 quote, int256 delta) {
int256 d2 = d1 - d1Denominator;
int256 cdfD1 = NormalDist.cdf(d1);
int256 cdfD2 = NormalDist.cdf(d2);
int256 priceCdf = price.mul(cdfD1);
int256 strikeBy = strike.mul(eToNegRT).mul(cdfD2);
assert(priceCdf >= strikeBy);
quote = uint256(priceCdf - strikeBy);
delta = cdfD1;
}
function putOptionPriceGreeks(
int256 d1,
int256 d1Denominator,
int256 price,
int256 strike,
int256 eToNegRT
) public pure returns (uint256 quote, int256 delta) {
int256 d2 = d1Denominator - d1;
int256 cdfD1 = NormalDist.cdf(-d1);
int256 cdfD2 = NormalDist.cdf(d2);
int256 priceCdf = price.mul(cdfD1);
int256 strikeBy = strike.mul(eToNegRT).mul(cdfD2);
assert(strikeBy >= priceCdf);
quote = uint256(strikeBy - priceCdf);
delta = -cdfD1;
}
function putOptionPrice(
int256 d1,
int256 d1Denominator,
int256 price,
int256 strike,
int256 eToNegRT
) public pure returns (uint256) {
int256 d2 = d1Denominator - d1;
int256 cdfD1 = NormalDist.cdf(-d1);
int256 cdfD2 = NormalDist.cdf(d2);
int256 priceCdf = price.mul(cdfD1);
int256 strikeBy = strike.mul(eToNegRT).mul(cdfD2);
assert(strikeBy >= priceCdf);
return uint256(strikeBy - priceCdf);
}
function getTimeStamp() private view returns (uint256) {
return block.timestamp;
}
function getD1(
uint256 price,
uint256 strike,
uint256 time,
uint256 vol,
uint256 rfr
) private pure returns (int256 d1, uint256 d1Denominator) {
uint256 d1Right = (vol.mul(vol).div(TWO) + rfr).mul(time);
int256 d1Left = int256(price.div(strike)).ln();
int256 d1Numerator = d1Left + int256(d1Right);
d1Denominator = vol.mul(time.sqrt());
d1 = d1Numerator.div(int256(d1Denominator));
}
function getIntermediates(
uint256 price,
uint256 strike,
uint256 time,
uint256 vol,
uint256 rfr
) private pure returns (Intermediates memory) {
(int256 d1, uint256 d1Denominator) = getD1(price, strike, time, vol, rfr);
return
Intermediates({
d1Denominator: d1Denominator,
d1: d1,
eToNegRT: (int256(rfr).mul(int256(time)).mul(-int256(ONE))).exp()
});
}
function blackScholesCalc(
uint256 price,
uint256 strike,
uint256 expiration,
uint256 vol,
uint256 rfr,
bool isPut
) public view returns (uint256) {
uint256 time = (expiration - getTimeStamp()).div(ONE_YEAR_SECONDS);
Intermediates memory i = getIntermediates(price, strike, time, vol, rfr);
if (!isPut) {
return
callOptionPrice(
int256(i.d1),
int256(i.d1Denominator),
int256(price),
int256(strike),
i.eToNegRT
);
} else {
return
putOptionPrice(
int256(i.d1),
int256(i.d1Denominator),
int256(price),
int256(strike),
i.eToNegRT
);
}
}
function blackScholesCalcGreeks(
uint256 price,
uint256 strike,
uint256 expiration,
uint256 vol,
uint256 rfr,
bool isPut
) public view returns (uint256 quote, int256 delta) {
uint256 time = (expiration - getTimeStamp()).div(ONE_YEAR_SECONDS);
Intermediates memory i = getIntermediates(price, strike, time, vol, rfr);
if (!isPut) {
return
callOptionPriceGreeks(
int256(i.d1),
int256(i.d1Denominator),
int256(price),
int256(strike),
i.eToNegRT
);
} else {
return
putOptionPriceGreeks(
int256(i.d1),
int256(i.d1Denominator),
int256(price),
int256(strike),
i.eToNegRT
);
}
}
function getDelta(
uint256 price,
uint256 strike,
uint256 expiration,
uint256 vol,
uint256 rfr,
bool isPut
) public view returns (int256) {
uint256 time = (expiration - getTimeStamp()).div(ONE_YEAR_SECONDS);
(int256 d1, ) = getD1(price, strike, time, vol, rfr);
if (!isPut) {
return NormalDist.cdf(d1);
} else {
return -NormalDist.cdf(-d1);
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
interface CustomErrors {
error NotKeeper();
error IVNotFound();
error NotHandler();
error NotUpdater();
error VaultExpired();
error InvalidInput();
error InvalidPrice();
error InvalidBuyer();
error InvalidOrder();
error OrderExpired();
error InvalidExpiry();
error InvalidAmount();
error TradingPaused();
error InvalidAddress();
error IssuanceFailed();
error EpochNotClosed();
error NoPositionsOpen();
error InvalidDecimals();
error InActivePosition();
error NoActivePosition();
error TradingNotPaused();
error NotLiquidityPool();
error UnauthorizedExit();
error UnapprovedSeries();
error SeriesNotBuyable();
error ExchangeNotPaused();
error DeltaNotDecreased();
error NonExistentOtoken();
error SeriesNotSellable();
error InvalidGmxCallback();
error GmxCallbackPending();
error OrderExpiryTooLong();
error InvalidShareAmount();
error ExistingWithdrawal();
error TotalSupplyReached();
error StrikeAssetInvalid();
error InsufficientBalance();
error OptionStrikeInvalid();
error OptionExpiryInvalid();
error RangeOrderNotFilled();
error NoExistingWithdrawal();
error SpotMovedBeyondRange();
error ReactorAlreadyExists();
error UnauthorizedFulfill();
error NonWhitelistedOtoken();
error CollateralAssetInvalid();
error UnderlyingAssetInvalid();
error CollateralAmountInvalid();
error WithdrawExceedsLiquidity();
error InsufficientShareBalance();
error MaxLiquidityBufferReached();
error LiabilitiesGreaterThanAssets();
error CustomOrderInsufficientPrice();
error CustomOrderInvalidDeltaValue();
error DeltaQuoteError(uint256 quote, int256 delta);
error TimeDeltaExceedsThreshold(uint256 timeDelta);
error PriceDeltaExceedsThreshold(uint256 priceDelta);
error StrikeAmountExceedsLiquidity(uint256 strikeAmount, uint256 strikeLiquidity);
error MinStrikeAmountExceedsLiquidity(uint256 strikeAmount, uint256 strikeAmountMin);
error UnderlyingAmountExceedsLiquidity(uint256 underlyingAmount, uint256 underlyingLiquidity);
error MinUnderlyingAmountExceedsLiquidity(uint256 underlyingAmount, uint256 underlyingAmountMin);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
import "prb-math/contracts/PRBMathSD59x18.sol";
/**
* @title Library used for approximating a normal distribution
*/
library NormalDist {
using PRBMathSD59x18 for int256;
int256 private constant ONE = 1000000000000000000;
int256 private constant ONE_HALF = 500000000000000000;
int256 private constant SQRT_TWO = 1414213562373095048;
// z-scores
// A1 0.254829592
int256 private constant A1 = 254829592000000000;
// A2 -0.284496736
int256 private constant A2 = -284496736000000000;
// A3 1.421413741
int256 private constant A3 = 1421413741000000000;
// A4 -1.453152027
int256 private constant A4 = -1453152027000000000;
// A5 1.061405429
int256 private constant A5 = 1061405429000000000;
// P 0.3275911
int256 private constant P = 327591100000000000;
function cdf(int256 x) public pure returns (int256) {
int256 phiParam = x.div(SQRT_TWO);
int256 onePlusPhi = ONE + (phi(phiParam));
return ONE_HALF.mul(onePlusPhi);
}
function phi(int256 x) public pure returns (int256) {
int256 sign = x >= 0 ? ONE : -ONE;
int256 abs = x.abs();
// A&S formula 7.1.26
int256 t = ONE.div(ONE + (P.mul(abs)));
int256 scoresByT = getScoresFromT(t);
int256 eToXs = abs.mul(-ONE).mul(abs).exp();
int256 y = ONE - (scoresByT.mul(eToXs));
return sign.mul(y);
}
function getScoresFromT(int256 t) public pure returns (int256) {
int256 byA5T = A5.mul(t);
int256 byA4T = (byA5T + A4).mul(t);
int256 byA3T = (byA4T + A3).mul(t);
int256 byA2T = (byA3T + A2).mul(t);
int256 byA1T = (byA2T + A1).mul(t);
return byA1T;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9;
import "./Types.sol";
import "./CustomErrors.sol";
import "./BlackScholes.sol";
import "../tokens/ERC20.sol";
import "prb-math/contracts/PRBMathUD60x18.sol";
import "prb-math/contracts/PRBMathSD59x18.sol";
/**
* @title Library used for various helper functionality for the Liquidity Pool
*/
library OptionsCompute {
using PRBMathUD60x18 for uint256;
using PRBMathSD59x18 for int256;
uint8 private constant SCALE_DECIMALS = 18;
uint256 private constant SCALE_UP = 10 ** 18;
// oToken decimals
uint8 private constant OPYN_DECIMALS = 8;
// otoken conversion decimal
uint8 private constant OPYN_CONVERSION_DECIMAL = 10;
/// @dev assumes decimals are coming in as e18
function convertToDecimals(uint256 value, uint256 decimals) internal pure returns (uint256) {
if (decimals > SCALE_DECIMALS) {
revert();
}
uint256 difference = SCALE_DECIMALS - decimals;
return value / (10 ** difference);
}
/// @dev converts from specified decimals to e18
function convertFromDecimals(
uint256 value,
uint256 decimals
) internal pure returns (uint256 difference) {
if (decimals > SCALE_DECIMALS) {
revert();
}
difference = SCALE_DECIMALS - decimals;
return value * (10 ** difference);
}
/// @dev converts from specified decimalsA to decimalsB
function convertFromDecimals(
uint256 value,
uint8 decimalsA,
uint8 decimalsB
) internal pure returns (uint256) {
uint8 difference;
if (decimalsA > decimalsB) {
difference = decimalsA - decimalsB;
return value / (10 ** difference);
}
difference = decimalsB - decimalsA;
return value * (10 ** difference);
}
// doesnt allow for interest bearing collateral
function convertToCollateralDenominated(
uint256 quote,
uint256 underlyingPrice,
Types.OptionSeries memory optionSeries
) internal pure returns (uint256 convertedQuote) {
if (optionSeries.strikeAsset != optionSeries.collateral) {
// convert value from strike asset to collateral asset
return (quote * SCALE_UP) / underlyingPrice;
} else {
return quote;
}
}
/**
* @dev computes the percentage change between two integers
* @param n new value in e18
* @param o old value in e18
* @return pC uint256 the percentage change in e18
*/
function calculatePercentageChange(uint256 n, uint256 o) internal pure returns (uint256 pC) {
// if new > old then its a percentage increase so do:
// ((new - old) * 1e18) / old
// if new < old then its a percentage decrease so do:
// ((old - new) * 1e18) / old
if (n > o) {
pC = (n - o).div(o);
} else {
pC = (o - n).div(o);
}
}
/**
* @notice get the latest oracle fed portfolio values and check when they were last updated and make sure this is within a reasonable window in
* terms of price and time
*/
function validatePortfolioValues(
uint256 spotPrice,
Types.PortfolioValues memory portfolioValues,
uint256 maxTimeDeviationThreshold,
uint256 maxPriceDeviationThreshold
) public view {
uint256 timeDelta = block.timestamp - portfolioValues.timestamp;
// If too much time has passed we want to prevent a possible oracle attack
if (timeDelta > maxTimeDeviationThreshold) {
revert CustomErrors.TimeDeltaExceedsThreshold(timeDelta);
}
uint256 priceDelta = calculatePercentageChange(spotPrice, portfolioValues.spotPrice);
// If price has deviated too much we want to prevent a possible oracle attack
if (priceDelta > maxPriceDeviationThreshold) {
revert CustomErrors.PriceDeltaExceedsThreshold(priceDelta);
}
}
/**
* @notice Converts strike price to 1e8 format and floors least significant digits if needed
* @param strikePrice strikePrice in 1e18 format
* @param collateral address of collateral asset
* @return if the transaction succeeded
*/
function formatStrikePrice(uint256 strikePrice, address collateral) public view returns (uint256) {
// convert strike to 1e8 format
uint256 price = strikePrice / (10 ** OPYN_CONVERSION_DECIMAL);
uint256 collateralDecimals = ERC20(collateral).decimals();
if (collateralDecimals >= OPYN_DECIMALS) return price;
uint256 difference = OPYN_DECIMALS - collateralDecimals;
// round floor strike to prevent errors in Gamma protocol
return (price / (10 ** difference)) * (10 ** difference);
}
/**
* @notice get the greeks of a quotePrice for a given optionSeries
* @param optionSeries Types.OptionSeries struct for describing the option to price greeks - strike in e18
* @return quote Quote price of the option - in e18
* @return delta delta of the option being priced - in e18
*/
function quotePriceGreeks(
Types.OptionSeries memory optionSeries,
bool isBuying,
uint256 bidAskIVSpread,
uint256 riskFreeRate,
uint256 iv,
uint256 underlyingPrice,
bool overrideIV
) internal view returns (uint256 quote, int256 delta) {
if (iv == 0) {
revert CustomErrors.IVNotFound();
}
// reduce IV by a factor of bidAskIVSpread if we are buying the options
if (isBuying && !overrideIV) {
iv = (iv * (SCALE_UP - (bidAskIVSpread))) / SCALE_UP;
}
// revert CustomErrors.if the expiry is in the past
if (optionSeries.expiration <= block.timestamp) {
revert CustomErrors.OptionExpiryInvalid();
}
(quote, delta) = BlackScholes.blackScholesCalcGreeks(
underlyingPrice,
optionSeries.strike,
optionSeries.expiration,
iv,
riskFreeRate,
optionSeries.isPut
);
}
function min(uint256 v1, uint256 v2) internal pure returns (uint256) {
return v1 > v2 ? v2 : v1;
}
function max(int256 v1, int256 v2) internal pure returns (int256) {
return v1 > v2 ? v1 : v2;
}
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
return int256(value);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
library Types {
struct OptionSeries {
uint64 expiration;
uint128 strike;
bool isPut;
address underlying;
address strikeAsset;
address collateral;
}
struct PortfolioValues {
int256 delta;
int256 gamma;
int256 vega;
int256 theta;
int256 callPutsValue;
uint256 timestamp;
uint256 spotPrice;
}
struct Option {
uint64 expiration;
uint128 strike;
bool isPut;
bool isBuyable;
bool isSellable;
}
struct Order {
OptionSeries optionSeries;
uint256 amount;
uint256 price;
uint256 orderExpiry;
address buyer;
address seriesAddress;
uint128 lowerSpotMovementRange;
uint128 upperSpotMovementRange;
bool isBuyBack;
}
// strike and expiry date range for options
struct OptionParams {
uint128 minCallStrikePrice;
uint128 maxCallStrikePrice;
uint128 minPutStrikePrice;
uint128 maxPutStrikePrice;
uint128 minExpiry;
uint128 maxExpiry;
}
struct UtilizationState {
uint256 totalOptionPrice; //e18
int256 totalDelta; // e18
uint256 collateralToAllocate; //collateral decimals
uint256 utilizationBefore; // e18
uint256 utilizationAfter; //e18
uint256 utilizationPrice; //e18
bool isDecreased;
uint256 deltaTiltAmount; //e18
uint256 underlyingPrice; // strike asset decimals
uint256 iv; // e18
}
}// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;
/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
/*///////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
event Transfer(address indexed from, address indexed to, uint256 amount);
event Approval(address indexed owner, address indexed spender, uint256 amount);
/*///////////////////////////////////////////////////////////////
METADATA STORAGE
//////////////////////////////////////////////////////////////*/
string public name;
string public symbol;
uint8 public immutable decimals;
/*///////////////////////////////////////////////////////////////
ERC20 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 public totalSupply;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
/*///////////////////////////////////////////////////////////////
EIP-2612 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 internal immutable INITIAL_CHAIN_ID;
bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;
mapping(address => uint256) public nonces;
/*///////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals
) {
name = _name;
symbol = _symbol;
decimals = _decimals;
INITIAL_CHAIN_ID = block.chainid;
INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
}
/*///////////////////////////////////////////////////////////////
ERC20 LOGIC
//////////////////////////////////////////////////////////////*/
function approve(address spender, uint256 amount) public virtual returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transfer(address to, uint256 amount) public virtual returns (bool) {
balanceOf[msg.sender] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(msg.sender, to, amount);
return true;
}
function transferFrom(
address from,
address to,
uint256 amount
) public virtual returns (bool) {
uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.
if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;
balanceOf[from] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(from, to, amount);
return true;
}
/*///////////////////////////////////////////////////////////////
EIP-2612 LOGIC
//////////////////////////////////////////////////////////////*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");
// Unchecked because the only math done is incrementing
// the owner's nonce which cannot realistically overflow.
unchecked {
bytes32 digest = keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256(
"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
);
address recoveredAddress = ecrecover(digest, v, r, s);
require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");
allowance[recoveredAddress][spender] = value;
}
emit Approval(owner, spender, value);
}
function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
}
function computeDomainSeparator() internal view virtual returns (bytes32) {
return
keccak256(
abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(bytes(name)),
keccak256("1"),
block.chainid,
address(this)
)
);
}
/*///////////////////////////////////////////////////////////////
INTERNAL MINT/BURN LOGIC
//////////////////////////////////////////////////////////////*/
function _mint(address to, uint256 amount) internal virtual {
totalSupply += amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(address(0), to, amount);
}
function _burn(address from, uint256 amount) internal virtual {
balanceOf[from] -= amount;
// Cannot underflow because a user's balance
// will never be larger than the total supply.
unchecked {
totalSupply -= amount;
}
emit Transfer(from, address(0), amount);
}
}// SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
/// @notice Emitted when the result overflows uint256.
error PRBMath__MulDivFixedPointOverflow(uint256 prod1);
/// @notice Emitted when the result overflows uint256.
error PRBMath__MulDivOverflow(uint256 prod1, uint256 denominator);
/// @notice Emitted when one of the inputs is type(int256).min.
error PRBMath__MulDivSignedInputTooSmall();
/// @notice Emitted when the intermediary absolute result overflows int256.
error PRBMath__MulDivSignedOverflow(uint256 rAbs);
/// @notice Emitted when the input is MIN_SD59x18.
error PRBMathSD59x18__AbsInputTooSmall();
/// @notice Emitted when ceiling a number overflows SD59x18.
error PRBMathSD59x18__CeilOverflow(int256 x);
/// @notice Emitted when one of the inputs is MIN_SD59x18.
error PRBMathSD59x18__DivInputTooSmall();
/// @notice Emitted when one of the intermediary unsigned results overflows SD59x18.
error PRBMathSD59x18__DivOverflow(uint256 rAbs);
/// @notice Emitted when the input is greater than 133.084258667509499441.
error PRBMathSD59x18__ExpInputTooBig(int256 x);
/// @notice Emitted when the input is greater than 192.
error PRBMathSD59x18__Exp2InputTooBig(int256 x);
/// @notice Emitted when flooring a number underflows SD59x18.
error PRBMathSD59x18__FloorUnderflow(int256 x);
/// @notice Emitted when converting a basic integer to the fixed-point format overflows SD59x18.
error PRBMathSD59x18__FromIntOverflow(int256 x);
/// @notice Emitted when converting a basic integer to the fixed-point format underflows SD59x18.
error PRBMathSD59x18__FromIntUnderflow(int256 x);
/// @notice Emitted when the product of the inputs is negative.
error PRBMathSD59x18__GmNegativeProduct(int256 x, int256 y);
/// @notice Emitted when multiplying the inputs overflows SD59x18.
error PRBMathSD59x18__GmOverflow(int256 x, int256 y);
/// @notice Emitted when the input is less than or equal to zero.
error PRBMathSD59x18__LogInputTooSmall(int256 x);
/// @notice Emitted when one of the inputs is MIN_SD59x18.
error PRBMathSD59x18__MulInputTooSmall();
/// @notice Emitted when the intermediary absolute result overflows SD59x18.
error PRBMathSD59x18__MulOverflow(uint256 rAbs);
/// @notice Emitted when the intermediary absolute result overflows SD59x18.
error PRBMathSD59x18__PowuOverflow(uint256 rAbs);
/// @notice Emitted when the input is negative.
error PRBMathSD59x18__SqrtNegativeInput(int256 x);
/// @notice Emitted when the calculating the square root overflows SD59x18.
error PRBMathSD59x18__SqrtOverflow(int256 x);
/// @notice Emitted when addition overflows UD60x18.
error PRBMathUD60x18__AddOverflow(uint256 x, uint256 y);
/// @notice Emitted when ceiling a number overflows UD60x18.
error PRBMathUD60x18__CeilOverflow(uint256 x);
/// @notice Emitted when the input is greater than 133.084258667509499441.
error PRBMathUD60x18__ExpInputTooBig(uint256 x);
/// @notice Emitted when the input is greater than 192.
error PRBMathUD60x18__Exp2InputTooBig(uint256 x);
/// @notice Emitted when converting a basic integer to the fixed-point format format overflows UD60x18.
error PRBMathUD60x18__FromUintOverflow(uint256 x);
/// @notice Emitted when multiplying the inputs overflows UD60x18.
error PRBMathUD60x18__GmOverflow(uint256 x, uint256 y);
/// @notice Emitted when the input is less than 1.
error PRBMathUD60x18__LogInputTooSmall(uint256 x);
/// @notice Emitted when the calculating the square root overflows UD60x18.
error PRBMathUD60x18__SqrtOverflow(uint256 x);
/// @notice Emitted when subtraction underflows UD60x18.
error PRBMathUD60x18__SubUnderflow(uint256 x, uint256 y);
/// @dev Common mathematical functions used in both PRBMathSD59x18 and PRBMathUD60x18. Note that this shared library
/// does not always assume the signed 59.18-decimal fixed-point or the unsigned 60.18-decimal fixed-point
/// representation. When it does not, it is explicitly mentioned in the NatSpec documentation.
library PRBMath {
/// STRUCTS ///
struct SD59x18 {
int256 value;
}
struct UD60x18 {
uint256 value;
}
/// STORAGE ///
/// @dev How many trailing decimals can be represented.
uint256 internal constant SCALE = 1e18;
/// @dev Largest power of two divisor of SCALE.
uint256 internal constant SCALE_LPOTD = 262144;
/// @dev SCALE inverted mod 2^256.
uint256 internal constant SCALE_INVERSE =
78156646155174841979727994598816262306175212592076161876661_508869554232690281;
/// FUNCTIONS ///
/// @notice Calculates the binary exponent of x using the binary fraction method.
/// @dev Has to use 192.64-bit fixed-point numbers.
/// See https://ethereum.stackexchange.com/a/96594/24693.
/// @param x The exponent as an unsigned 192.64-bit fixed-point number.
/// @return result The result as an unsigned 60.18-decimal fixed-point number.
function exp2(uint256 x) internal pure returns (uint256 result) {
unchecked {
// Start from 0.5 in the 192.64-bit fixed-point format.
result = 0x800000000000000000000000000000000000000000000000;
// Multiply the result by root(2, 2^-i) when the bit at position i is 1. None of the intermediary results overflows
// because the initial result is 2^191 and all magic factors are less than 2^65.
if (x & 0x8000000000000000 > 0) {
result = (result * 0x16A09E667F3BCC909) >> 64;
}
if (x & 0x4000000000000000 > 0) {
result = (result * 0x1306FE0A31B7152DF) >> 64;
}
if (x & 0x2000000000000000 > 0) {
result = (result * 0x1172B83C7D517ADCE) >> 64;
}
if (x & 0x1000000000000000 > 0) {
result = (result * 0x10B5586CF9890F62A) >> 64;
}
if (x & 0x800000000000000 > 0) {
result = (result * 0x1059B0D31585743AE) >> 64;
}
if (x & 0x400000000000000 > 0) {
result = (result * 0x102C9A3E778060EE7) >> 64;
}
if (x & 0x200000000000000 > 0) {
result = (result * 0x10163DA9FB33356D8) >> 64;
}
if (x & 0x100000000000000 > 0) {
result = (result * 0x100B1AFA5ABCBED61) >> 64;
}
if (x & 0x80000000000000 > 0) {
result = (result * 0x10058C86DA1C09EA2) >> 64;
}
if (x & 0x40000000000000 > 0) {
result = (result * 0x1002C605E2E8CEC50) >> 64;
}
if (x & 0x20000000000000 > 0) {
result = (result * 0x100162F3904051FA1) >> 64;
}
if (x & 0x10000000000000 > 0) {
result = (result * 0x1000B175EFFDC76BA) >> 64;
}
if (x & 0x8000000000000 > 0) {
result = (result * 0x100058BA01FB9F96D) >> 64;
}
if (x & 0x4000000000000 > 0) {
result = (result * 0x10002C5CC37DA9492) >> 64;
}
if (x & 0x2000000000000 > 0) {
result = (result * 0x1000162E525EE0547) >> 64;
}
if (x & 0x1000000000000 > 0) {
result = (result * 0x10000B17255775C04) >> 64;
}
if (x & 0x800000000000 > 0) {
result = (result * 0x1000058B91B5BC9AE) >> 64;
}
if (x & 0x400000000000 > 0) {
result = (result * 0x100002C5C89D5EC6D) >> 64;
}
if (x & 0x200000000000 > 0) {
result = (result * 0x10000162E43F4F831) >> 64;
}
if (x & 0x100000000000 > 0) {
result = (result * 0x100000B1721BCFC9A) >> 64;
}
if (x & 0x80000000000 > 0) {
result = (result * 0x10000058B90CF1E6E) >> 64;
}
if (x & 0x40000000000 > 0) {
result = (result * 0x1000002C5C863B73F) >> 64;
}
if (x & 0x20000000000 > 0) {
result = (result * 0x100000162E430E5A2) >> 64;
}
if (x & 0x10000000000 > 0) {
result = (result * 0x1000000B172183551) >> 64;
}
if (x & 0x8000000000 > 0) {
result = (result * 0x100000058B90C0B49) >> 64;
}
if (x & 0x4000000000 > 0) {
result = (result * 0x10000002C5C8601CC) >> 64;
}
if (x & 0x2000000000 > 0) {
result = (result * 0x1000000162E42FFF0) >> 64;
}
if (x & 0x1000000000 > 0) {
result = (result * 0x10000000B17217FBB) >> 64;
}
if (x & 0x800000000 > 0) {
result = (result * 0x1000000058B90BFCE) >> 64;
}
if (x & 0x400000000 > 0) {
result = (result * 0x100000002C5C85FE3) >> 64;
}
if (x & 0x200000000 > 0) {
result = (result * 0x10000000162E42FF1) >> 64;
}
if (x & 0x100000000 > 0) {
result = (result * 0x100000000B17217F8) >> 64;
}
if (x & 0x80000000 > 0) {
result = (result * 0x10000000058B90BFC) >> 64;
}
if (x & 0x40000000 > 0) {
result = (result * 0x1000000002C5C85FE) >> 64;
}
if (x & 0x20000000 > 0) {
result = (result * 0x100000000162E42FF) >> 64;
}
if (x & 0x10000000 > 0) {
result = (result * 0x1000000000B17217F) >> 64;
}
if (x & 0x8000000 > 0) {
result = (result * 0x100000000058B90C0) >> 64;
}
if (x & 0x4000000 > 0) {
result = (result * 0x10000000002C5C860) >> 64;
}
if (x & 0x2000000 > 0) {
result = (result * 0x1000000000162E430) >> 64;
}
if (x & 0x1000000 > 0) {
result = (result * 0x10000000000B17218) >> 64;
}
if (x & 0x800000 > 0) {
result = (result * 0x1000000000058B90C) >> 64;
}
if (x & 0x400000 > 0) {
result = (result * 0x100000000002C5C86) >> 64;
}
if (x & 0x200000 > 0) {
result = (result * 0x10000000000162E43) >> 64;
}
if (x & 0x100000 > 0) {
result = (result * 0x100000000000B1721) >> 64;
}
if (x & 0x80000 > 0) {
result = (result * 0x10000000000058B91) >> 64;
}
if (x & 0x40000 > 0) {
result = (result * 0x1000000000002C5C8) >> 64;
}
if (x & 0x20000 > 0) {
result = (result * 0x100000000000162E4) >> 64;
}
if (x & 0x10000 > 0) {
result = (result * 0x1000000000000B172) >> 64;
}
if (x & 0x8000 > 0) {
result = (result * 0x100000000000058B9) >> 64;
}
if (x & 0x4000 > 0) {
result = (result * 0x10000000000002C5D) >> 64;
}
if (x & 0x2000 > 0) {
result = (result * 0x1000000000000162E) >> 64;
}
if (x & 0x1000 > 0) {
result = (result * 0x10000000000000B17) >> 64;
}
if (x & 0x800 > 0) {
result = (result * 0x1000000000000058C) >> 64;
}
if (x & 0x400 > 0) {
result = (result * 0x100000000000002C6) >> 64;
}
if (x & 0x200 > 0) {
result = (result * 0x10000000000000163) >> 64;
}
if (x & 0x100 > 0) {
result = (result * 0x100000000000000B1) >> 64;
}
if (x & 0x80 > 0) {
result = (result * 0x10000000000000059) >> 64;
}
if (x & 0x40 > 0) {
result = (result * 0x1000000000000002C) >> 64;
}
if (x & 0x20 > 0) {
result = (result * 0x10000000000000016) >> 64;
}
if (x & 0x10 > 0) {
result = (result * 0x1000000000000000B) >> 64;
}
if (x & 0x8 > 0) {
result = (result * 0x10000000000000006) >> 64;
}
if (x & 0x4 > 0) {
result = (result * 0x10000000000000003) >> 64;
}
if (x & 0x2 > 0) {
result = (result * 0x10000000000000001) >> 64;
}
if (x & 0x1 > 0) {
result = (result * 0x10000000000000001) >> 64;
}
// We're doing two things at the same time:
//
// 1. Multiply the result by 2^n + 1, where "2^n" is the integer part and the one is added to account for
// the fact that we initially set the result to 0.5. This is accomplished by subtracting from 191
// rather than 192.
// 2. Convert the result to the unsigned 60.18-decimal fixed-point format.
//
// This works because 2^(191-ip) = 2^ip / 2^191, where "ip" is the integer part "2^n".
result *= SCALE;
result >>= (191 - (x >> 64));
}
}
/// @notice Finds the zero-based index of the first one in the binary representation of x.
/// @dev See the note on msb in the "Find First Set" Wikipedia article https://en.wikipedia.org/wiki/Find_first_set
/// @param x The uint256 number for which to find the index of the most significant bit.
/// @return msb The index of the most significant bit as an uint256.
function mostSignificantBit(uint256 x) internal pure returns (uint256 msb) {
if (x >= 2**128) {
x >>= 128;
msb += 128;
}
if (x >= 2**64) {
x >>= 64;
msb += 64;
}
if (x >= 2**32) {
x >>= 32;
msb += 32;
}
if (x >= 2**16) {
x >>= 16;
msb += 16;
}
if (x >= 2**8) {
x >>= 8;
msb += 8;
}
if (x >= 2**4) {
x >>= 4;
msb += 4;
}
if (x >= 2**2) {
x >>= 2;
msb += 2;
}
if (x >= 2**1) {
// No need to shift x any more.
msb += 1;
}
}
/// @notice Calculates floor(x*y÷denominator) with full precision.
///
/// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv.
///
/// Requirements:
/// - The denominator cannot be zero.
/// - The result must fit within uint256.
///
/// Caveats:
/// - This function does not work with fixed-point numbers.
///
/// @param x The multiplicand as an uint256.
/// @param y The multiplier as an uint256.
/// @param denominator The divisor as an uint256.
/// @return result The result as an uint256.
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
unchecked {
result = prod0 / denominator;
}
return result;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (prod1 >= denominator) {
revert PRBMath__MulDivOverflow(prod1, denominator);
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
unchecked {
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 lpotdod = denominator & (~denominator + 1);
assembly {
// Divide denominator by lpotdod.
denominator := div(denominator, lpotdod)
// Divide [prod1 prod0] by lpotdod.
prod0 := div(prod0, lpotdod)
// Flip lpotdod such that it is 2^256 / lpotdod. If lpotdod is zero, then it becomes one.
lpotdod := add(div(sub(0, lpotdod), lpotdod), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * lpotdod;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/// @notice Calculates floor(x*y÷1e18) with full precision.
///
/// @dev Variant of "mulDiv" with constant folding, i.e. in which the denominator is always 1e18. Before returning the
/// final result, we add 1 if (x * y) % SCALE >= HALF_SCALE. Without this, 6.6e-19 would be truncated to 0 instead of
/// being rounded to 1e-18. See "Listing 6" and text above it at https://accu.org/index.php/journals/1717.
///
/// Requirements:
/// - The result must fit within uint256.
///
/// Caveats:
/// - The body is purposely left uncommented; see the NatSpec comments in "PRBMath.mulDiv" to understand how this works.
/// - It is assumed that the result can never be type(uint256).max when x and y solve the following two equations:
/// 1. x * y = type(uint256).max * SCALE
/// 2. (x * y) % SCALE >= SCALE / 2
///
/// @param x The multiplicand as an unsigned 60.18-decimal fixed-point number.
/// @param y The multiplier as an unsigned 60.18-decimal fixed-point number.
/// @return result The result as an unsigned 60.18-decimal fixed-point number.
function mulDivFixedPoint(uint256 x, uint256 y) internal pure returns (uint256 result) {
uint256 prod0;
uint256 prod1;
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
if (prod1 >= SCALE) {
revert PRBMath__MulDivFixedPointOverflow(prod1);
}
uint256 remainder;
uint256 roundUpUnit;
assembly {
remainder := mulmod(x, y, SCALE)
roundUpUnit := gt(remainder, 499999999999999999)
}
if (prod1 == 0) {
unchecked {
result = (prod0 / SCALE) + roundUpUnit;
return result;
}
}
assembly {
result := add(
mul(
or(
div(sub(prod0, remainder), SCALE_LPOTD),
mul(sub(prod1, gt(remainder, prod0)), add(div(sub(0, SCALE_LPOTD), SCALE_LPOTD), 1))
),
SCALE_INVERSE
),
roundUpUnit
)
}
}
/// @notice Calculates floor(x*y÷denominator) with full precision.
///
/// @dev An extension of "mulDiv" for signed numbers. Works by computing the signs and the absolute values separately.
///
/// Requirements:
/// - None of the inputs can be type(int256).min.
/// - The result must fit within int256.
///
/// @param x The multiplicand as an int256.
/// @param y The multiplier as an int256.
/// @param denominator The divisor as an int256.
/// @return result The result as an int256.
function mulDivSigned(
int256 x,
int256 y,
int256 denominator
) internal pure returns (int256 result) {
if (x == type(int256).min || y == type(int256).min || denominator == type(int256).min) {
revert PRBMath__MulDivSignedInputTooSmall();
}
// Get hold of the absolute values of x, y and the denominator.
uint256 ax;
uint256 ay;
uint256 ad;
unchecked {
ax = x < 0 ? uint256(-x) : uint256(x);
ay = y < 0 ? uint256(-y) : uint256(y);
ad = denominator < 0 ? uint256(-denominator) : uint256(denominator);
}
// Compute the absolute value of (x*y)÷denominator. The result must fit within int256.
uint256 rAbs = mulDiv(ax, ay, ad);
if (rAbs > uint256(type(int256).max)) {
revert PRBMath__MulDivSignedOverflow(rAbs);
}
// Get the signs of x, y and the denominator.
uint256 sx;
uint256 sy;
uint256 sd;
assembly {
sx := sgt(x, sub(0, 1))
sy := sgt(y, sub(0, 1))
sd := sgt(denominator, sub(0, 1))
}
// XOR over sx, sy and sd. This is checking whether there are one or three negative signs in the inputs.
// If yes, the result should be negative.
result = sx ^ sy ^ sd == 0 ? -int256(rAbs) : int256(rAbs);
}
/// @notice Calculates the square root of x, rounding down.
/// @dev Uses the Babylonian method https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method.
///
/// Caveats:
/// - This function does not work with fixed-point numbers.
///
/// @param x The uint256 number for which to calculate the square root.
/// @return result The result as an uint256.
function sqrt(uint256 x) internal pure returns (uint256 result) {
if (x == 0) {
return 0;
}
// Set the initial guess to the least power of two that is greater than or equal to sqrt(x).
uint256 xAux = uint256(x);
result = 1;
if (xAux >= 0x100000000000000000000000000000000) {
xAux >>= 128;
result <<= 64;
}
if (xAux >= 0x10000000000000000) {
xAux >>= 64;
result <<= 32;
}
if (xAux >= 0x100000000) {
xAux >>= 32;
result <<= 16;
}
if (xAux >= 0x10000) {
xAux >>= 16;
result <<= 8;
}
if (xAux >= 0x100) {
xAux >>= 8;
result <<= 4;
}
if (xAux >= 0x10) {
xAux >>= 4;
result <<= 2;
}
if (xAux >= 0x8) {
result <<= 1;
}
// The operations can never overflow because the result is max 2^127 when it enters this block.
unchecked {
result = (result + x / result) >> 1;
result = (result + x / result) >> 1;
result = (result + x / result) >> 1;
result = (result + x / result) >> 1;
result = (result + x / result) >> 1;
result = (result + x / result) >> 1;
result = (result + x / result) >> 1; // Seven iterations should be enough
uint256 roundedDownResult = x / result;
return result >= roundedDownResult ? roundedDownResult : result;
}
}
}// SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "./PRBMath.sol";
/// @title PRBMathSD59x18
/// @author Paul Razvan Berg
/// @notice Smart contract library for advanced fixed-point math that works with int256 numbers considered to have 18
/// trailing decimals. We call this number representation signed 59.18-decimal fixed-point, since the numbers can have
/// a sign and there can be up to 59 digits in the integer part and up to 18 decimals in the fractional part. The numbers
/// are bound by the minimum and the maximum values permitted by the Solidity type int256.
library PRBMathSD59x18 {
/// @dev log2(e) as a signed 59.18-decimal fixed-point number.
int256 internal constant LOG2_E = 1_442695040888963407;
/// @dev Half the SCALE number.
int256 internal constant HALF_SCALE = 5e17;
/// @dev The maximum value a signed 59.18-decimal fixed-point number can have.
int256 internal constant MAX_SD59x18 =
57896044618658097711785492504343953926634992332820282019728_792003956564819967;
/// @dev The maximum whole value a signed 59.18-decimal fixed-point number can have.
int256 internal constant MAX_WHOLE_SD59x18 =
57896044618658097711785492504343953926634992332820282019728_000000000000000000;
/// @dev The minimum value a signed 59.18-decimal fixed-point number can have.
int256 internal constant MIN_SD59x18 =
-57896044618658097711785492504343953926634992332820282019728_792003956564819968;
/// @dev The minimum whole value a signed 59.18-decimal fixed-point number can have.
int256 internal constant MIN_WHOLE_SD59x18 =
-57896044618658097711785492504343953926634992332820282019728_000000000000000000;
/// @dev How many trailing decimals can be represented.
int256 internal constant SCALE = 1e18;
/// INTERNAL FUNCTIONS ///
/// @notice Calculate the absolute value of x.
///
/// @dev Requirements:
/// - x must be greater than MIN_SD59x18.
///
/// @param x The number to calculate the absolute value for.
/// @param result The absolute value of x.
function abs(int256 x) internal pure returns (int256 result) {
unchecked {
if (x == MIN_SD59x18) {
revert PRBMathSD59x18__AbsInputTooSmall();
}
result = x < 0 ? -x : x;
}
}
/// @notice Calculates the arithmetic average of x and y, rounding down.
/// @param x The first operand as a signed 59.18-decimal fixed-point number.
/// @param y The second operand as a signed 59.18-decimal fixed-point number.
/// @return result The arithmetic average as a signed 59.18-decimal fixed-point number.
function avg(int256 x, int256 y) internal pure returns (int256 result) {
// The operations can never overflow.
unchecked {
int256 sum = (x >> 1) + (y >> 1);
if (sum < 0) {
// If at least one of x and y is odd, we add 1 to the result. This is because shifting negative numbers to the
// right rounds down to infinity.
assembly {
result := add(sum, and(or(x, y), 1))
}
} else {
// If both x and y are odd, we add 1 to the result. This is because if both numbers are odd, the 0.5
// remainder gets truncated twice.
result = sum + (x & y & 1);
}
}
}
/// @notice Yields the least greatest signed 59.18 decimal fixed-point number greater than or equal to x.
///
/// @dev Optimized for fractional value inputs, because for every whole value there are (1e18 - 1) fractional counterparts.
/// See https://en.wikipedia.org/wiki/Floor_and_ceiling_functions.
///
/// Requirements:
/// - x must be less than or equal to MAX_WHOLE_SD59x18.
///
/// @param x The signed 59.18-decimal fixed-point number to ceil.
/// @param result The least integer greater than or equal to x, as a signed 58.18-decimal fixed-point number.
function ceil(int256 x) internal pure returns (int256 result) {
if (x > MAX_WHOLE_SD59x18) {
revert PRBMathSD59x18__CeilOverflow(x);
}
unchecked {
int256 remainder = x % SCALE;
if (remainder == 0) {
result = x;
} else {
// Solidity uses C fmod style, which returns a modulus with the same sign as x.
result = x - remainder;
if (x > 0) {
result += SCALE;
}
}
}
}
/// @notice Divides two signed 59.18-decimal fixed-point numbers, returning a new signed 59.18-decimal fixed-point number.
///
/// @dev Variant of "mulDiv" that works with signed numbers. Works by computing the signs and the absolute values separately.
///
/// Requirements:
/// - All from "PRBMath.mulDiv".
/// - None of the inputs can be MIN_SD59x18.
/// - The denominator cannot be zero.
/// - The result must fit within int256.
///
/// Caveats:
/// - All from "PRBMath.mulDiv".
///
/// @param x The numerator as a signed 59.18-decimal fixed-point number.
/// @param y The denominator as a signed 59.18-decimal fixed-point number.
/// @param result The quotient as a signed 59.18-decimal fixed-point number.
function div(int256 x, int256 y) internal pure returns (int256 result) {
if (x == MIN_SD59x18 || y == MIN_SD59x18) {
revert PRBMathSD59x18__DivInputTooSmall();
}
// Get hold of the absolute values of x and y.
uint256 ax;
uint256 ay;
unchecked {
ax = x < 0 ? uint256(-x) : uint256(x);
ay = y < 0 ? uint256(-y) : uint256(y);
}
// Compute the absolute value of (x*SCALE)÷y. The result must fit within int256.
uint256 rAbs = PRBMath.mulDiv(ax, uint256(SCALE), ay);
if (rAbs > uint256(MAX_SD59x18)) {
revert PRBMathSD59x18__DivOverflow(rAbs);
}
// Get the signs of x and y.
uint256 sx;
uint256 sy;
assembly {
sx := sgt(x, sub(0, 1))
sy := sgt(y, sub(0, 1))
}
// XOR over sx and sy. This is basically checking whether the inputs have the same sign. If yes, the result
// should be positive. Otherwise, it should be negative.
result = sx ^ sy == 1 ? -int256(rAbs) : int256(rAbs);
}
/// @notice Returns Euler's number as a signed 59.18-decimal fixed-point number.
/// @dev See https://en.wikipedia.org/wiki/E_(mathematical_constant).
function e() internal pure returns (int256 result) {
result = 2_718281828459045235;
}
/// @notice Calculates the natural exponent of x.
///
/// @dev Based on the insight that e^x = 2^(x * log2(e)).
///
/// Requirements:
/// - All from "log2".
/// - x must be less than 133.084258667509499441.
///
/// Caveats:
/// - All from "exp2".
/// - For any x less than -41.446531673892822322, the result is zero.
///
/// @param x The exponent as a signed 59.18-decimal fixed-point number.
/// @return result The result as a signed 59.18-decimal fixed-point number.
function exp(int256 x) internal pure returns (int256 result) {
// Without this check, the value passed to "exp2" would be less than -59.794705707972522261.
if (x < -41_446531673892822322) {
return 0;
}
// Without this check, the value passed to "exp2" would be greater than 192.
if (x >= 133_084258667509499441) {
revert PRBMathSD59x18__ExpInputTooBig(x);
}
// Do the fixed-point multiplication inline to save gas.
unchecked {
int256 doubleScaleProduct = x * LOG2_E;
result = exp2((doubleScaleProduct + HALF_SCALE) / SCALE);
}
}
/// @notice Calculates the binary exponent of x using the binary fraction method.
///
/// @dev See https://ethereum.stackexchange.com/q/79903/24693.
///
/// Requirements:
/// - x must be 192 or less.
/// - The result must fit within MAX_SD59x18.
///
/// Caveats:
/// - For any x less than -59.794705707972522261, the result is zero.
///
/// @param x The exponent as a signed 59.18-decimal fixed-point number.
/// @return result The result as a signed 59.18-decimal fixed-point number.
function exp2(int256 x) internal pure returns (int256 result) {
// This works because 2^(-x) = 1/2^x.
if (x < 0) {
// 2^59.794705707972522262 is the maximum number whose inverse does not truncate down to zero.
if (x < -59_794705707972522261) {
return 0;
}
// Do the fixed-point inversion inline to save gas. The numerator is SCALE * SCALE.
unchecked {
result = 1e36 / exp2(-x);
}
} else {
// 2^192 doesn't fit within the 192.64-bit format used internally in this function.
if (x >= 192e18) {
revert PRBMathSD59x18__Exp2InputTooBig(x);
}
unchecked {
// Convert x to the 192.64-bit fixed-point format.
uint256 x192x64 = (uint256(x) << 64) / uint256(SCALE);
// Safe to convert the result to int256 directly because the maximum input allowed is 192.
result = int256(PRBMath.exp2(x192x64));
}
}
}
/// @notice Yields the greatest signed 59.18 decimal fixed-point number less than or equal to x.
///
/// @dev Optimized for fractional value inputs, because for every whole value there are (1e18 - 1) fractional counterparts.
/// See https://en.wikipedia.org/wiki/Floor_and_ceiling_functions.
///
/// Requirements:
/// - x must be greater than or equal to MIN_WHOLE_SD59x18.
///
/// @param x The signed 59.18-decimal fixed-point number to floor.
/// @param result The greatest integer less than or equal to x, as a signed 58.18-decimal fixed-point number.
function floor(int256 x) internal pure returns (int256 result) {
if (x < MIN_WHOLE_SD59x18) {
revert PRBMathSD59x18__FloorUnderflow(x);
}
unchecked {
int256 remainder = x % SCALE;
if (remainder == 0) {
result = x;
} else {
// Solidity uses C fmod style, which returns a modulus with the same sign as x.
result = x - remainder;
if (x < 0) {
result -= SCALE;
}
}
}
}
/// @notice Yields the excess beyond the floor of x for positive numbers and the part of the number to the right
/// of the radix point for negative numbers.
/// @dev Based on the odd function definition. https://en.wikipedia.org/wiki/Fractional_part
/// @param x The signed 59.18-decimal fixed-point number to get the fractional part of.
/// @param result The fractional part of x as a signed 59.18-decimal fixed-point number.
function frac(int256 x) internal pure returns (int256 result) {
unchecked {
result = x % SCALE;
}
}
/// @notice Converts a number from basic integer form to signed 59.18-decimal fixed-point representation.
///
/// @dev Requirements:
/// - x must be greater than or equal to MIN_SD59x18 divided by SCALE.
/// - x must be less than or equal to MAX_SD59x18 divided by SCALE.
///
/// @param x The basic integer to convert.
/// @param result The same number in signed 59.18-decimal fixed-point representation.
function fromInt(int256 x) internal pure returns (int256 result) {
unchecked {
if (x < MIN_SD59x18 / SCALE) {
revert PRBMathSD59x18__FromIntUnderflow(x);
}
if (x > MAX_SD59x18 / SCALE) {
revert PRBMathSD59x18__FromIntOverflow(x);
}
result = x * SCALE;
}
}
/// @notice Calculates geometric mean of x and y, i.e. sqrt(x * y), rounding down.
///
/// @dev Requirements:
/// - x * y must fit within MAX_SD59x18, lest it overflows.
/// - x * y cannot be negative.
///
/// @param x The first operand as a signed 59.18-decimal fixed-point number.
/// @param y The second operand as a signed 59.18-decimal fixed-point number.
/// @return result The result as a signed 59.18-decimal fixed-point number.
function gm(int256 x, int256 y) internal pure returns (int256 result) {
if (x == 0) {
return 0;
}
unchecked {
// Checking for overflow this way is faster than letting Solidity do it.
int256 xy = x * y;
if (xy / x != y) {
revert PRBMathSD59x18__GmOverflow(x, y);
}
// The product cannot be negative.
if (xy < 0) {
revert PRBMathSD59x18__GmNegativeProduct(x, y);
}
// We don't need to multiply by the SCALE here because the x*y product had already picked up a factor of SCALE
// during multiplication. See the comments within the "sqrt" function.
result = int256(PRBMath.sqrt(uint256(xy)));
}
}
/// @notice Calculates 1 / x, rounding toward zero.
///
/// @dev Requirements:
/// - x cannot be zero.
///
/// @param x The signed 59.18-decimal fixed-point number for which to calculate the inverse.
/// @return result The inverse as a signed 59.18-decimal fixed-point number.
function inv(int256 x) internal pure returns (int256 result) {
unchecked {
// 1e36 is SCALE * SCALE.
result = 1e36 / x;
}
}
/// @notice Calculates the natural logarithm of x.
///
/// @dev Based on the insight that ln(x) = log2(x) / log2(e).
///
/// Requirements:
/// - All from "log2".
///
/// Caveats:
/// - All from "log2".
/// - This doesn't return exactly 1 for 2718281828459045235, for that we would need more fine-grained precision.
///
/// @param x The signed 59.18-decimal fixed-point number for which to calculate the natural logarithm.
/// @return result The natural logarithm as a signed 59.18-decimal fixed-point number.
function ln(int256 x) internal pure returns (int256 result) {
// Do the fixed-point multiplication inline to save gas. This is overflow-safe because the maximum value that log2(x)
// can return is 195205294292027477728.
unchecked {
result = (log2(x) * SCALE) / LOG2_E;
}
}
/// @notice Calculates the common logarithm of x.
///
/// @dev First checks if x is an exact power of ten and it stops if yes. If it's not, calculates the common
/// logarithm based on the insight that log10(x) = log2(x) / log2(10).
///
/// Requirements:
/// - All from "log2".
///
/// Caveats:
/// - All from "log2".
///
/// @param x The signed 59.18-decimal fixed-point number for which to calculate the common logarithm.
/// @return result The common logarithm as a signed 59.18-decimal fixed-point number.
function log10(int256 x) internal pure returns (int256 result) {
if (x <= 0) {
revert PRBMathSD59x18__LogInputTooSmall(x);
}
// Note that the "mul" in this block is the assembly mul operation, not the "mul" function defined in this contract.
// prettier-ignore
assembly {
switch x
case 1 { result := mul(SCALE, sub(0, 18)) }
case 10 { result := mul(SCALE, sub(1, 18)) }
case 100 { result := mul(SCALE, sub(2, 18)) }
case 1000 { result := mul(SCALE, sub(3, 18)) }
case 10000 { result := mul(SCALE, sub(4, 18)) }
case 100000 { result := mul(SCALE, sub(5, 18)) }
case 1000000 { result := mul(SCALE, sub(6, 18)) }
case 10000000 { result := mul(SCALE, sub(7, 18)) }
case 100000000 { result := mul(SCALE, sub(8, 18)) }
case 1000000000 { result := mul(SCALE, sub(9, 18)) }
case 10000000000 { result := mul(SCALE, sub(10, 18)) }
case 100000000000 { result := mul(SCALE, sub(11, 18)) }
case 1000000000000 { result := mul(SCALE, sub(12, 18)) }
case 10000000000000 { result := mul(SCALE, sub(13, 18)) }
case 100000000000000 { result := mul(SCALE, sub(14, 18)) }
case 1000000000000000 { result := mul(SCALE, sub(15, 18)) }
case 10000000000000000 { result := mul(SCALE, sub(16, 18)) }
case 100000000000000000 { result := mul(SCALE, sub(17, 18)) }
case 1000000000000000000 { result := 0 }
case 10000000000000000000 { result := SCALE }
case 100000000000000000000 { result := mul(SCALE, 2) }
case 1000000000000000000000 { result := mul(SCALE, 3) }
case 10000000000000000000000 { result := mul(SCALE, 4) }
case 100000000000000000000000 { result := mul(SCALE, 5) }
case 1000000000000000000000000 { result := mul(SCALE, 6) }
case 10000000000000000000000000 { result := mul(SCALE, 7) }
case 100000000000000000000000000 { result := mul(SCALE, 8) }
case 1000000000000000000000000000 { result := mul(SCALE, 9) }
case 10000000000000000000000000000 { result := mul(SCALE, 10) }
case 100000000000000000000000000000 { result := mul(SCALE, 11) }
case 1000000000000000000000000000000 { result := mul(SCALE, 12) }
case 10000000000000000000000000000000 { result := mul(SCALE, 13) }
case 100000000000000000000000000000000 { result := mul(SCALE, 14) }
case 1000000000000000000000000000000000 { result := mul(SCALE, 15) }
case 10000000000000000000000000000000000 { result := mul(SCALE, 16) }
case 100000000000000000000000000000000000 { result := mul(SCALE, 17) }
case 1000000000000000000000000000000000000 { result := mul(SCALE, 18) }
case 10000000000000000000000000000000000000 { result := mul(SCALE, 19) }
case 100000000000000000000000000000000000000 { result := mul(SCALE, 20) }
case 1000000000000000000000000000000000000000 { result := mul(SCALE, 21) }
case 10000000000000000000000000000000000000000 { result := mul(SCALE, 22) }
case 100000000000000000000000000000000000000000 { result := mul(SCALE, 23) }
case 1000000000000000000000000000000000000000000 { result := mul(SCALE, 24) }
case 10000000000000000000000000000000000000000000 { result := mul(SCALE, 25) }
case 100000000000000000000000000000000000000000000 { result := mul(SCALE, 26) }
case 1000000000000000000000000000000000000000000000 { result := mul(SCALE, 27) }
case 10000000000000000000000000000000000000000000000 { result := mul(SCALE, 28) }
case 100000000000000000000000000000000000000000000000 { result := mul(SCALE, 29) }
case 1000000000000000000000000000000000000000000000000 { result := mul(SCALE, 30) }
case 10000000000000000000000000000000000000000000000000 { result := mul(SCALE, 31) }
case 100000000000000000000000000000000000000000000000000 { result := mul(SCALE, 32) }
case 1000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 33) }
case 10000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 34) }
case 100000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 35) }
case 1000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 36) }
case 10000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 37) }
case 100000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 38) }
case 1000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 39) }
case 10000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 40) }
case 100000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 41) }
case 1000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 42) }
case 10000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 43) }
case 100000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 44) }
case 1000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 45) }
case 10000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 46) }
case 100000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 47) }
case 1000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 48) }
case 10000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 49) }
case 100000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 50) }
case 1000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 51) }
case 10000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 52) }
case 100000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 53) }
case 1000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 54) }
case 10000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 55) }
case 100000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 56) }
case 1000000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 57) }
case 10000000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 58) }
default {
result := MAX_SD59x18
}
}
if (result == MAX_SD59x18) {
// Do the fixed-point division inline to save gas. The denominator is log2(10).
unchecked {
result = (log2(x) * SCALE) / 3_321928094887362347;
}
}
}
/// @notice Calculates the binary logarithm of x.
///
/// @dev Based on the iterative approximation algorithm.
/// https://en.wikipedia.org/wiki/Binary_logarithm#Iterative_approximation
///
/// Requirements:
/// - x must be greater than zero.
///
/// Caveats:
/// - The results are not perfectly accurate to the last decimal, due to the lossy precision of the iterative approximation.
///
/// @param x The signed 59.18-decimal fixed-point number for which to calculate the binary logarithm.
/// @return result The binary logarithm as a signed 59.18-decimal fixed-point number.
function log2(int256 x) internal pure returns (int256 result) {
if (x <= 0) {
revert PRBMathSD59x18__LogInputTooSmall(x);
}
unchecked {
// This works because log2(x) = -log2(1/x).
int256 sign;
if (x >= SCALE) {
sign = 1;
} else {
sign = -1;
// Do the fixed-point inversion inline to save gas. The numerator is SCALE * SCALE.
assembly {
x := div(1000000000000000000000000000000000000, x)
}
}
// Calculate the integer part of the logarithm and add it to the result and finally calculate y = x * 2^(-n).
uint256 n = PRBMath.mostSignificantBit(uint256(x / SCALE));
// The integer part of the logarithm as a signed 59.18-decimal fixed-point number. The operation can't overflow
// because n is maximum 255, SCALE is 1e18 and sign is either 1 or -1.
result = int256(n) * SCALE;
// This is y = x * 2^(-n).
int256 y = x >> n;
// If y = 1, the fractional part is zero.
if (y == SCALE) {
return result * sign;
}
// Calculate the fractional part via the iterative approximation.
// The "delta >>= 1" part is equivalent to "delta /= 2", but shifting bits is faster.
for (int256 delta = int256(HALF_SCALE); delta > 0; delta >>= 1) {
y = (y * y) / SCALE;
// Is y^2 > 2 and so in the range [2,4)?
if (y >= 2 * SCALE) {
// Add the 2^(-m) factor to the logarithm.
result += delta;
// Corresponds to z/2 on Wikipedia.
y >>= 1;
}
}
result *= sign;
}
}
/// @notice Multiplies two signed 59.18-decimal fixed-point numbers together, returning a new signed 59.18-decimal
/// fixed-point number.
///
/// @dev Variant of "mulDiv" that works with signed numbers and employs constant folding, i.e. the denominator is
/// always 1e18.
///
/// Requirements:
/// - All from "PRBMath.mulDivFixedPoint".
/// - None of the inputs can be MIN_SD59x18
/// - The result must fit within MAX_SD59x18.
///
/// Caveats:
/// - The body is purposely left uncommented; see the NatSpec comments in "PRBMath.mulDiv" to understand how this works.
///
/// @param x The multiplicand as a signed 59.18-decimal fixed-point number.
/// @param y The multiplier as a signed 59.18-decimal fixed-point number.
/// @return result The product as a signed 59.18-decimal fixed-point number.
function mul(int256 x, int256 y) internal pure returns (int256 result) {
if (x == MIN_SD59x18 || y == MIN_SD59x18) {
revert PRBMathSD59x18__MulInputTooSmall();
}
unchecked {
uint256 ax;
uint256 ay;
ax = x < 0 ? uint256(-x) : uint256(x);
ay = y < 0 ? uint256(-y) : uint256(y);
uint256 rAbs = PRBMath.mulDivFixedPoint(ax, ay);
if (rAbs > uint256(MAX_SD59x18)) {
revert PRBMathSD59x18__MulOverflow(rAbs);
}
uint256 sx;
uint256 sy;
assembly {
sx := sgt(x, sub(0, 1))
sy := sgt(y, sub(0, 1))
}
result = sx ^ sy == 1 ? -int256(rAbs) : int256(rAbs);
}
}
/// @notice Returns PI as a signed 59.18-decimal fixed-point number.
function pi() internal pure returns (int256 result) {
result = 3_141592653589793238;
}
/// @notice Raises x to the power of y.
///
/// @dev Based on the insight that x^y = 2^(log2(x) * y).
///
/// Requirements:
/// - All from "exp2", "log2" and "mul".
/// - z cannot be zero.
///
/// Caveats:
/// - All from "exp2", "log2" and "mul".
/// - Assumes 0^0 is 1.
///
/// @param x Number to raise to given power y, as a signed 59.18-decimal fixed-point number.
/// @param y Exponent to raise x to, as a signed 59.18-decimal fixed-point number.
/// @return result x raised to power y, as a signed 59.18-decimal fixed-point number.
function pow(int256 x, int256 y) internal pure returns (int256 result) {
if (x == 0) {
result = y == 0 ? SCALE : int256(0);
} else {
result = exp2(mul(log2(x), y));
}
}
/// @notice Raises x (signed 59.18-decimal fixed-point number) to the power of y (basic unsigned integer) using the
/// famous algorithm "exponentiation by squaring".
///
/// @dev See https://en.wikipedia.org/wiki/Exponentiation_by_squaring
///
/// Requirements:
/// - All from "abs" and "PRBMath.mulDivFixedPoint".
/// - The result must fit within MAX_SD59x18.
///
/// Caveats:
/// - All from "PRBMath.mulDivFixedPoint".
/// - Assumes 0^0 is 1.
///
/// @param x The base as a signed 59.18-decimal fixed-point number.
/// @param y The exponent as an uint256.
/// @return result The result as a signed 59.18-decimal fixed-point number.
function powu(int256 x, uint256 y) internal pure returns (int256 result) {
uint256 xAbs = uint256(abs(x));
// Calculate the first iteration of the loop in advance.
uint256 rAbs = y & 1 > 0 ? xAbs : uint256(SCALE);
// Equivalent to "for(y /= 2; y > 0; y /= 2)" but faster.
uint256 yAux = y;
for (yAux >>= 1; yAux > 0; yAux >>= 1) {
xAbs = PRBMath.mulDivFixedPoint(xAbs, xAbs);
// Equivalent to "y % 2 == 1" but faster.
if (yAux & 1 > 0) {
rAbs = PRBMath.mulDivFixedPoint(rAbs, xAbs);
}
}
// The result must fit within the 59.18-decimal fixed-point representation.
if (rAbs > uint256(MAX_SD59x18)) {
revert PRBMathSD59x18__PowuOverflow(rAbs);
}
// Is the base negative and the exponent an odd number?
bool isNegative = x < 0 && y & 1 == 1;
result = isNegative ? -int256(rAbs) : int256(rAbs);
}
/// @notice Returns 1 as a signed 59.18-decimal fixed-point number.
function scale() internal pure returns (int256 result) {
result = SCALE;
}
/// @notice Calculates the square root of x, rounding down.
/// @dev Uses the Babylonian method https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method.
///
/// Requirements:
/// - x cannot be negative.
/// - x must be less than MAX_SD59x18 / SCALE.
///
/// @param x The signed 59.18-decimal fixed-point number for which to calculate the square root.
/// @return result The result as a signed 59.18-decimal fixed-point .
function sqrt(int256 x) internal pure returns (int256 result) {
unchecked {
if (x < 0) {
revert PRBMathSD59x18__SqrtNegativeInput(x);
}
if (x > MAX_SD59x18 / SCALE) {
revert PRBMathSD59x18__SqrtOverflow(x);
}
// Multiply x by the SCALE to account for the factor of SCALE that is picked up when multiplying two signed
// 59.18-decimal fixed-point numbers together (in this case, those two numbers are both the square root).
result = int256(PRBMath.sqrt(uint256(x * SCALE)));
}
}
/// @notice Converts a signed 59.18-decimal fixed-point number to basic integer form, rounding down in the process.
/// @param x The signed 59.18-decimal fixed-point number to convert.
/// @return result The same number in basic integer form.
function toInt(int256 x) internal pure returns (int256 result) {
unchecked {
result = x / SCALE;
}
}
}// SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "./PRBMath.sol";
/// @title PRBMathUD60x18
/// @author Paul Razvan Berg
/// @notice Smart contract library for advanced fixed-point math that works with uint256 numbers considered to have 18
/// trailing decimals. We call this number representation unsigned 60.18-decimal fixed-point, since there can be up to 60
/// digits in the integer part and up to 18 decimals in the fractional part. The numbers are bound by the minimum and the
/// maximum values permitted by the Solidity type uint256.
library PRBMathUD60x18 {
/// @dev Half the SCALE number.
uint256 internal constant HALF_SCALE = 5e17;
/// @dev log2(e) as an unsigned 60.18-decimal fixed-point number.
uint256 internal constant LOG2_E = 1_442695040888963407;
/// @dev The maximum value an unsigned 60.18-decimal fixed-point number can have.
uint256 internal constant MAX_UD60x18 =
115792089237316195423570985008687907853269984665640564039457_584007913129639935;
/// @dev The maximum whole value an unsigned 60.18-decimal fixed-point number can have.
uint256 internal constant MAX_WHOLE_UD60x18 =
115792089237316195423570985008687907853269984665640564039457_000000000000000000;
/// @dev How many trailing decimals can be represented.
uint256 internal constant SCALE = 1e18;
/// @notice Calculates the arithmetic average of x and y, rounding down.
/// @param x The first operand as an unsigned 60.18-decimal fixed-point number.
/// @param y The second operand as an unsigned 60.18-decimal fixed-point number.
/// @return result The arithmetic average as an unsigned 60.18-decimal fixed-point number.
function avg(uint256 x, uint256 y) internal pure returns (uint256 result) {
// The operations can never overflow.
unchecked {
// The last operand checks if both x and y are odd and if that is the case, we add 1 to the result. We need
// to do this because if both numbers are odd, the 0.5 remainder gets truncated twice.
result = (x >> 1) + (y >> 1) + (x & y & 1);
}
}
/// @notice Yields the least unsigned 60.18 decimal fixed-point number greater than or equal to x.
///
/// @dev Optimized for fractional value inputs, because for every whole value there are (1e18 - 1) fractional counterparts.
/// See https://en.wikipedia.org/wiki/Floor_and_ceiling_functions.
///
/// Requirements:
/// - x must be less than or equal to MAX_WHOLE_UD60x18.
///
/// @param x The unsigned 60.18-decimal fixed-point number to ceil.
/// @param result The least integer greater than or equal to x, as an unsigned 60.18-decimal fixed-point number.
function ceil(uint256 x) internal pure returns (uint256 result) {
if (x > MAX_WHOLE_UD60x18) {
revert PRBMathUD60x18__CeilOverflow(x);
}
assembly {
// Equivalent to "x % SCALE" but faster.
let remainder := mod(x, SCALE)
// Equivalent to "SCALE - remainder" but faster.
let delta := sub(SCALE, remainder)
// Equivalent to "x + delta * (remainder > 0 ? 1 : 0)" but faster.
result := add(x, mul(delta, gt(remainder, 0)))
}
}
/// @notice Divides two unsigned 60.18-decimal fixed-point numbers, returning a new unsigned 60.18-decimal fixed-point number.
///
/// @dev Uses mulDiv to enable overflow-safe multiplication and division.
///
/// Requirements:
/// - The denominator cannot be zero.
///
/// @param x The numerator as an unsigned 60.18-decimal fixed-point number.
/// @param y The denominator as an unsigned 60.18-decimal fixed-point number.
/// @param result The quotient as an unsigned 60.18-decimal fixed-point number.
function div(uint256 x, uint256 y) internal pure returns (uint256 result) {
result = PRBMath.mulDiv(x, SCALE, y);
}
/// @notice Returns Euler's number as an unsigned 60.18-decimal fixed-point number.
/// @dev See https://en.wikipedia.org/wiki/E_(mathematical_constant).
function e() internal pure returns (uint256 result) {
result = 2_718281828459045235;
}
/// @notice Calculates the natural exponent of x.
///
/// @dev Based on the insight that e^x = 2^(x * log2(e)).
///
/// Requirements:
/// - All from "log2".
/// - x must be less than 133.084258667509499441.
///
/// @param x The exponent as an unsigned 60.18-decimal fixed-point number.
/// @return result The result as an unsigned 60.18-decimal fixed-point number.
function exp(uint256 x) internal pure returns (uint256 result) {
// Without this check, the value passed to "exp2" would be greater than 192.
if (x >= 133_084258667509499441) {
revert PRBMathUD60x18__ExpInputTooBig(x);
}
// Do the fixed-point multiplication inline to save gas.
unchecked {
uint256 doubleScaleProduct = x * LOG2_E;
result = exp2((doubleScaleProduct + HALF_SCALE) / SCALE);
}
}
/// @notice Calculates the binary exponent of x using the binary fraction method.
///
/// @dev See https://ethereum.stackexchange.com/q/79903/24693.
///
/// Requirements:
/// - x must be 192 or less.
/// - The result must fit within MAX_UD60x18.
///
/// @param x The exponent as an unsigned 60.18-decimal fixed-point number.
/// @return result The result as an unsigned 60.18-decimal fixed-point number.
function exp2(uint256 x) internal pure returns (uint256 result) {
// 2^192 doesn't fit within the 192.64-bit format used internally in this function.
if (x >= 192e18) {
revert PRBMathUD60x18__Exp2InputTooBig(x);
}
unchecked {
// Convert x to the 192.64-bit fixed-point format.
uint256 x192x64 = (x << 64) / SCALE;
// Pass x to the PRBMath.exp2 function, which uses the 192.64-bit fixed-point number representation.
result = PRBMath.exp2(x192x64);
}
}
/// @notice Yields the greatest unsigned 60.18 decimal fixed-point number less than or equal to x.
/// @dev Optimized for fractional value inputs, because for every whole value there are (1e18 - 1) fractional counterparts.
/// See https://en.wikipedia.org/wiki/Floor_and_ceiling_functions.
/// @param x The unsigned 60.18-decimal fixed-point number to floor.
/// @param result The greatest integer less than or equal to x, as an unsigned 60.18-decimal fixed-point number.
function floor(uint256 x) internal pure returns (uint256 result) {
assembly {
// Equivalent to "x % SCALE" but faster.
let remainder := mod(x, SCALE)
// Equivalent to "x - remainder * (remainder > 0 ? 1 : 0)" but faster.
result := sub(x, mul(remainder, gt(remainder, 0)))
}
}
/// @notice Yields the excess beyond the floor of x.
/// @dev Based on the odd function definition https://en.wikipedia.org/wiki/Fractional_part.
/// @param x The unsigned 60.18-decimal fixed-point number to get the fractional part of.
/// @param result The fractional part of x as an unsigned 60.18-decimal fixed-point number.
function frac(uint256 x) internal pure returns (uint256 result) {
assembly {
result := mod(x, SCALE)
}
}
/// @notice Converts a number from basic integer form to unsigned 60.18-decimal fixed-point representation.
///
/// @dev Requirements:
/// - x must be less than or equal to MAX_UD60x18 divided by SCALE.
///
/// @param x The basic integer to convert.
/// @param result The same number in unsigned 60.18-decimal fixed-point representation.
function fromUint(uint256 x) internal pure returns (uint256 result) {
unchecked {
if (x > MAX_UD60x18 / SCALE) {
revert PRBMathUD60x18__FromUintOverflow(x);
}
result = x * SCALE;
}
}
/// @notice Calculates geometric mean of x and y, i.e. sqrt(x * y), rounding down.
///
/// @dev Requirements:
/// - x * y must fit within MAX_UD60x18, lest it overflows.
///
/// @param x The first operand as an unsigned 60.18-decimal fixed-point number.
/// @param y The second operand as an unsigned 60.18-decimal fixed-point number.
/// @return result The result as an unsigned 60.18-decimal fixed-point number.
function gm(uint256 x, uint256 y) internal pure returns (uint256 result) {
if (x == 0) {
return 0;
}
unchecked {
// Checking for overflow this way is faster than letting Solidity do it.
uint256 xy = x * y;
if (xy / x != y) {
revert PRBMathUD60x18__GmOverflow(x, y);
}
// We don't need to multiply by the SCALE here because the x*y product had already picked up a factor of SCALE
// during multiplication. See the comments within the "sqrt" function.
result = PRBMath.sqrt(xy);
}
}
/// @notice Calculates 1 / x, rounding toward zero.
///
/// @dev Requirements:
/// - x cannot be zero.
///
/// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the inverse.
/// @return result The inverse as an unsigned 60.18-decimal fixed-point number.
function inv(uint256 x) internal pure returns (uint256 result) {
unchecked {
// 1e36 is SCALE * SCALE.
result = 1e36 / x;
}
}
/// @notice Calculates the natural logarithm of x.
///
/// @dev Based on the insight that ln(x) = log2(x) / log2(e).
///
/// Requirements:
/// - All from "log2".
///
/// Caveats:
/// - All from "log2".
/// - This doesn't return exactly 1 for 2.718281828459045235, for that we would need more fine-grained precision.
///
/// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the natural logarithm.
/// @return result The natural logarithm as an unsigned 60.18-decimal fixed-point number.
function ln(uint256 x) internal pure returns (uint256 result) {
// Do the fixed-point multiplication inline to save gas. This is overflow-safe because the maximum value that log2(x)
// can return is 196205294292027477728.
unchecked {
result = (log2(x) * SCALE) / LOG2_E;
}
}
/// @notice Calculates the common logarithm of x.
///
/// @dev First checks if x is an exact power of ten and it stops if yes. If it's not, calculates the common
/// logarithm based on the insight that log10(x) = log2(x) / log2(10).
///
/// Requirements:
/// - All from "log2".
///
/// Caveats:
/// - All from "log2".
///
/// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the common logarithm.
/// @return result The common logarithm as an unsigned 60.18-decimal fixed-point number.
function log10(uint256 x) internal pure returns (uint256 result) {
if (x < SCALE) {
revert PRBMathUD60x18__LogInputTooSmall(x);
}
// Note that the "mul" in this block is the assembly multiplication operation, not the "mul" function defined
// in this contract.
// prettier-ignore
assembly {
switch x
case 1 { result := mul(SCALE, sub(0, 18)) }
case 10 { result := mul(SCALE, sub(1, 18)) }
case 100 { result := mul(SCALE, sub(2, 18)) }
case 1000 { result := mul(SCALE, sub(3, 18)) }
case 10000 { result := mul(SCALE, sub(4, 18)) }
case 100000 { result := mul(SCALE, sub(5, 18)) }
case 1000000 { result := mul(SCALE, sub(6, 18)) }
case 10000000 { result := mul(SCALE, sub(7, 18)) }
case 100000000 { result := mul(SCALE, sub(8, 18)) }
case 1000000000 { result := mul(SCALE, sub(9, 18)) }
case 10000000000 { result := mul(SCALE, sub(10, 18)) }
case 100000000000 { result := mul(SCALE, sub(11, 18)) }
case 1000000000000 { result := mul(SCALE, sub(12, 18)) }
case 10000000000000 { result := mul(SCALE, sub(13, 18)) }
case 100000000000000 { result := mul(SCALE, sub(14, 18)) }
case 1000000000000000 { result := mul(SCALE, sub(15, 18)) }
case 10000000000000000 { result := mul(SCALE, sub(16, 18)) }
case 100000000000000000 { result := mul(SCALE, sub(17, 18)) }
case 1000000000000000000 { result := 0 }
case 10000000000000000000 { result := SCALE }
case 100000000000000000000 { result := mul(SCALE, 2) }
case 1000000000000000000000 { result := mul(SCALE, 3) }
case 10000000000000000000000 { result := mul(SCALE, 4) }
case 100000000000000000000000 { result := mul(SCALE, 5) }
case 1000000000000000000000000 { result := mul(SCALE, 6) }
case 10000000000000000000000000 { result := mul(SCALE, 7) }
case 100000000000000000000000000 { result := mul(SCALE, 8) }
case 1000000000000000000000000000 { result := mul(SCALE, 9) }
case 10000000000000000000000000000 { result := mul(SCALE, 10) }
case 100000000000000000000000000000 { result := mul(SCALE, 11) }
case 1000000000000000000000000000000 { result := mul(SCALE, 12) }
case 10000000000000000000000000000000 { result := mul(SCALE, 13) }
case 100000000000000000000000000000000 { result := mul(SCALE, 14) }
case 1000000000000000000000000000000000 { result := mul(SCALE, 15) }
case 10000000000000000000000000000000000 { result := mul(SCALE, 16) }
case 100000000000000000000000000000000000 { result := mul(SCALE, 17) }
case 1000000000000000000000000000000000000 { result := mul(SCALE, 18) }
case 10000000000000000000000000000000000000 { result := mul(SCALE, 19) }
case 100000000000000000000000000000000000000 { result := mul(SCALE, 20) }
case 1000000000000000000000000000000000000000 { result := mul(SCALE, 21) }
case 10000000000000000000000000000000000000000 { result := mul(SCALE, 22) }
case 100000000000000000000000000000000000000000 { result := mul(SCALE, 23) }
case 1000000000000000000000000000000000000000000 { result := mul(SCALE, 24) }
case 10000000000000000000000000000000000000000000 { result := mul(SCALE, 25) }
case 100000000000000000000000000000000000000000000 { result := mul(SCALE, 26) }
case 1000000000000000000000000000000000000000000000 { result := mul(SCALE, 27) }
case 10000000000000000000000000000000000000000000000 { result := mul(SCALE, 28) }
case 100000000000000000000000000000000000000000000000 { result := mul(SCALE, 29) }
case 1000000000000000000000000000000000000000000000000 { result := mul(SCALE, 30) }
case 10000000000000000000000000000000000000000000000000 { result := mul(SCALE, 31) }
case 100000000000000000000000000000000000000000000000000 { result := mul(SCALE, 32) }
case 1000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 33) }
case 10000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 34) }
case 100000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 35) }
case 1000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 36) }
case 10000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 37) }
case 100000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 38) }
case 1000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 39) }
case 10000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 40) }
case 100000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 41) }
case 1000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 42) }
case 10000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 43) }
case 100000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 44) }
case 1000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 45) }
case 10000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 46) }
case 100000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 47) }
case 1000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 48) }
case 10000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 49) }
case 100000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 50) }
case 1000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 51) }
case 10000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 52) }
case 100000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 53) }
case 1000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 54) }
case 10000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 55) }
case 100000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 56) }
case 1000000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 57) }
case 10000000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 58) }
case 100000000000000000000000000000000000000000000000000000000000000000000000000000 { result := mul(SCALE, 59) }
default {
result := MAX_UD60x18
}
}
if (result == MAX_UD60x18) {
// Do the fixed-point division inline to save gas. The denominator is log2(10).
unchecked {
result = (log2(x) * SCALE) / 3_321928094887362347;
}
}
}
/// @notice Calculates the binary logarithm of x.
///
/// @dev Based on the iterative approximation algorithm.
/// https://en.wikipedia.org/wiki/Binary_logarithm#Iterative_approximation
///
/// Requirements:
/// - x must be greater than or equal to SCALE, otherwise the result would be negative.
///
/// Caveats:
/// - The results are nor perfectly accurate to the last decimal, due to the lossy precision of the iterative approximation.
///
/// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the binary logarithm.
/// @return result The binary logarithm as an unsigned 60.18-decimal fixed-point number.
function log2(uint256 x) internal pure returns (uint256 result) {
if (x < SCALE) {
revert PRBMathUD60x18__LogInputTooSmall(x);
}
unchecked {
// Calculate the integer part of the logarithm and add it to the result and finally calculate y = x * 2^(-n).
uint256 n = PRBMath.mostSignificantBit(x / SCALE);
// The integer part of the logarithm as an unsigned 60.18-decimal fixed-point number. The operation can't overflow
// because n is maximum 255 and SCALE is 1e18.
result = n * SCALE;
// This is y = x * 2^(-n).
uint256 y = x >> n;
// If y = 1, the fractional part is zero.
if (y == SCALE) {
return result;
}
// Calculate the fractional part via the iterative approximation.
// The "delta >>= 1" part is equivalent to "delta /= 2", but shifting bits is faster.
for (uint256 delta = HALF_SCALE; delta > 0; delta >>= 1) {
y = (y * y) / SCALE;
// Is y^2 > 2 and so in the range [2,4)?
if (y >= 2 * SCALE) {
// Add the 2^(-m) factor to the logarithm.
result += delta;
// Corresponds to z/2 on Wikipedia.
y >>= 1;
}
}
}
}
/// @notice Multiplies two unsigned 60.18-decimal fixed-point numbers together, returning a new unsigned 60.18-decimal
/// fixed-point number.
/// @dev See the documentation for the "PRBMath.mulDivFixedPoint" function.
/// @param x The multiplicand as an unsigned 60.18-decimal fixed-point number.
/// @param y The multiplier as an unsigned 60.18-decimal fixed-point number.
/// @return result The product as an unsigned 60.18-decimal fixed-point number.
function mul(uint256 x, uint256 y) internal pure returns (uint256 result) {
result = PRBMath.mulDivFixedPoint(x, y);
}
/// @notice Returns PI as an unsigned 60.18-decimal fixed-point number.
function pi() internal pure returns (uint256 result) {
result = 3_141592653589793238;
}
/// @notice Raises x to the power of y.
///
/// @dev Based on the insight that x^y = 2^(log2(x) * y).
///
/// Requirements:
/// - All from "exp2", "log2" and "mul".
///
/// Caveats:
/// - All from "exp2", "log2" and "mul".
/// - Assumes 0^0 is 1.
///
/// @param x Number to raise to given power y, as an unsigned 60.18-decimal fixed-point number.
/// @param y Exponent to raise x to, as an unsigned 60.18-decimal fixed-point number.
/// @return result x raised to power y, as an unsigned 60.18-decimal fixed-point number.
function pow(uint256 x, uint256 y) internal pure returns (uint256 result) {
if (x == 0) {
result = y == 0 ? SCALE : uint256(0);
} else {
result = exp2(mul(log2(x), y));
}
}
/// @notice Raises x (unsigned 60.18-decimal fixed-point number) to the power of y (basic unsigned integer) using the
/// famous algorithm "exponentiation by squaring".
///
/// @dev See https://en.wikipedia.org/wiki/Exponentiation_by_squaring
///
/// Requirements:
/// - The result must fit within MAX_UD60x18.
///
/// Caveats:
/// - All from "mul".
/// - Assumes 0^0 is 1.
///
/// @param x The base as an unsigned 60.18-decimal fixed-point number.
/// @param y The exponent as an uint256.
/// @return result The result as an unsigned 60.18-decimal fixed-point number.
function powu(uint256 x, uint256 y) internal pure returns (uint256 result) {
// Calculate the first iteration of the loop in advance.
result = y & 1 > 0 ? x : SCALE;
// Equivalent to "for(y /= 2; y > 0; y /= 2)" but faster.
for (y >>= 1; y > 0; y >>= 1) {
x = PRBMath.mulDivFixedPoint(x, x);
// Equivalent to "y % 2 == 1" but faster.
if (y & 1 > 0) {
result = PRBMath.mulDivFixedPoint(result, x);
}
}
}
/// @notice Returns 1 as an unsigned 60.18-decimal fixed-point number.
function scale() internal pure returns (uint256 result) {
result = SCALE;
}
/// @notice Calculates the square root of x, rounding down.
/// @dev Uses the Babylonian method https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method.
///
/// Requirements:
/// - x must be less than MAX_UD60x18 / SCALE.
///
/// @param x The unsigned 60.18-decimal fixed-point number for which to calculate the square root.
/// @return result The result as an unsigned 60.18-decimal fixed-point .
function sqrt(uint256 x) internal pure returns (uint256 result) {
unchecked {
if (x > MAX_UD60x18 / SCALE) {
revert PRBMathUD60x18__SqrtOverflow(x);
}
// Multiply x by the SCALE to account for the factor of SCALE that is picked up when multiplying two unsigned
// 60.18-decimal fixed-point numbers together (in this case, those two numbers are both the square root).
result = PRBMath.sqrt(x * SCALE);
}
}
/// @notice Converts a unsigned 60.18-decimal fixed-point number to basic integer form, rounding down in the process.
/// @param x The unsigned 60.18-decimal fixed-point number to convert.
/// @return result The same number in basic integer form.
function toUint(uint256 x) internal pure returns (uint256 result) {
unchecked {
result = x / SCALE;
}
}
}{
"optimizer": {
"enabled": true,
"runs": 100,
"details": {
"yul": true
}
},
"viaIR": false,
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {
"contracts/libraries/OptionsCompute.sol": {
"OptionsCompute": "0xcf263127e7dff09018af1f803bd3f9db58587a1c"
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_authority","type":"address"},{"internalType":"address","name":"_collateralAsset","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidExpiry","type":"error"},{"inputs":[],"name":"UNAUTHORIZED","type":"error"},{"inputs":[],"name":"UnapprovedSeries","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IAuthority","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"optionHash","type":"bytes32"},{"indexed":false,"internalType":"uint64","name":"expiration","type":"uint64"},{"indexed":false,"internalType":"uint128","name":"strike","type":"uint128"},{"indexed":false,"internalType":"bool","name":"isPut","type":"bool"},{"indexed":false,"internalType":"bool","name":"isBuyable","type":"bool"},{"indexed":false,"internalType":"bool","name":"isSellable","type":"bool"}],"name":"SeriesAltered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"optionHash","type":"bytes32"},{"indexed":false,"internalType":"uint64","name":"expiration","type":"uint64"},{"indexed":false,"internalType":"uint128","name":"strike","type":"uint128"},{"indexed":false,"internalType":"bool","name":"isPut","type":"bool"},{"indexed":false,"internalType":"bool","name":"isBuyable","type":"bool"},{"indexed":false,"internalType":"bool","name":"isSellable","type":"bool"}],"name":"SeriesApproved","type":"event"},{"inputs":[{"internalType":"bytes32","name":"oHash","type":"bytes32"}],"name":"approvedOptions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"contract IAuthority","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"expiration","type":"uint64"},{"internalType":"uint128","name":"strike","type":"uint128"},{"internalType":"bool","name":"isPut","type":"bool"},{"internalType":"bool","name":"isBuyable","type":"bool"},{"internalType":"bool","name":"isSellable","type":"bool"}],"internalType":"struct Types.Option[]","name":"options","type":"tuple[]"}],"name":"changeOptionBuyOrSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collateralAsset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"expirations","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExpirations","outputs":[{"internalType":"uint64[]","name":"","type":"uint64[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"expiration","type":"uint64"},{"internalType":"bool","name":"isPut","type":"bool"}],"name":"getOptionDetails","outputs":[{"internalType":"uint128[]","name":"","type":"uint128[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"oHash","type":"bytes32"}],"name":"getOptionStores","outputs":[{"components":[{"internalType":"bool","name":"approvedOption","type":"bool"},{"internalType":"bool","name":"isBuyable","type":"bool"},{"internalType":"bool","name":"isSellable","type":"bool"}],"internalType":"struct OptionCatalogue.OptionStores","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"oHash","type":"bytes32"}],"name":"isBuyable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"oHash","type":"bytes32"}],"name":"isSellable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"expiration","type":"uint64"},{"internalType":"uint128","name":"strike","type":"uint128"},{"internalType":"bool","name":"isPut","type":"bool"},{"internalType":"bool","name":"isBuyable","type":"bool"},{"internalType":"bool","name":"isSellable","type":"bool"}],"internalType":"struct Types.Option[]","name":"options","type":"tuple[]"}],"name":"issueNewSeries","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"optionDetails","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"optionStores","outputs":[{"internalType":"bool","name":"approvedOption","type":"bool"},{"internalType":"bool","name":"isBuyable","type":"bool"},{"internalType":"bool","name":"isSellable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IAuthority","name":"_newAuthority","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a060405234801561001057600080fd5b506040516113c73803806113c783398101604081905261002f916100b1565b600080546001600160a01b0319166001600160a01b03841690811790915560405190815282907f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a1506001600160a01b0316608052506100e4565b80516001600160a01b03811681146100ac57600080fd5b919050565b600080604083850312156100c457600080fd5b6100cd83610095565b91506100db60208401610095565b90509250929050565b6080516112ba61010d6000396000818161023d015281816103d8015261075e01526112ba6000f3fe608060405234801561001057600080fd5b50600436106100ca5760003560e01c8063948d6e371161007c578063948d6e37146101a8578063aabaecd614610238578063bf7e214f14610277578063c251ddf81461028a578063c71c5d0a146102b5578063dd1c6baa146102d5578063f5fc79e11461030057600080fd5b8063066966f3146100cf5780631e2d78891461010d5780634574991514610135578063491fa4a41461014a57806356e9d1e41461015d5780637a9e5e4b146101725780637b4c08f914610185575b600080fd5b6100f86100dd366004610ce6565b60009081526001602052604090205462010000900460ff1690565b60405190151581526020015b60405180910390f35b6100f861011b366004610ce6565b600090815260016020526040902054610100900460ff1690565b610148610143366004610d99565b610355565b005b610148610158366004610d99565b6106db565b6101656108de565b6040516101049190610eb2565b610148610180366004610f17565b610968565b6100f8610193366004610ce6565b60009081526001602052604090205460ff1690565b6102106101b6366004610ce6565b6040805160608082018352600080835260208084018290529284018190529384526001825292829020825193840183525460ff80821615158552610100820481161515928501929092526201000090041615159082015290565b6040805182511515815260208084015115159082015291810151151590820152606001610104565b61025f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610104565b60005461025f906001600160a01b031681565b61029d610298366004610ce6565b6109c4565b6040516001600160401b039091168152602001610104565b6102c86102c3366004610f3b565b610a01565b6040516101049190610f6e565b6102e86102e3366004610faf565b610aab565b6040516001600160801b039091168152602001610104565b61033661030e366004610ce6565b60016020526000908152604090205460ff808216916101008104821691620100009091041683565b6040805193151584529115156020840152151590820152606001610104565b61035d610b04565b805160005b818110156106d657600083828151811061037e5761037e610fe4565b602002602001015190506000600860126103989190611010565b6103a390600a611117565b60208301516040516351c4ae7360e11b815273cf263127e7dff09018af1f803bd3f9db58587a1c9163a3895ce69161040091907f000000000000000000000000000000000000000000000000000000000000000090600401611126565b602060405180830381865af415801561041d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104419190611148565b61044b9190611161565b90506201518061708083600001516104639190611180565b61046d91906111a8565b6001600160401b0316156104935760405162d36c8560e81b815260040160405180910390fd5b600082600001518284604001516040516020016104b2939291906111dc565b60408051601f1981840301815291815281516020928301206000818152600190935291205490915060ff16156104ea575050506106c4565b60408051606080820183526001808352908601511515602080840191825260808801511515848601908152600087815284835286812095518654945192511515620100000262ff0000199315156101000261ff00199215159290921661ffff199096169590951717919091169290921790935586516001600160401b0316815260038352838120918152915220541580156105a7575082516001600160401b03166000908152600360209081526040808320838052909152902054155b1561060d578251600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace6004820401805460039092166008026101000a6001600160401b038181021990931692909316929092021790555b82516001600160401b031660009081526003602090815260408083208187018051151585529083528184208054600180820183559186529390942060028404018054949093166010026101000a6001600160801b038181021990951694871602939093179091558451915160608601516080870151925185947fb3cde67957df62b50569520be360938d1647b691ee700f1bf5f238d1cb24661c946106b89491938993909190611213565b60405180910390a25050505b806106ce8161124e565b915050610362565b505050565b6106e3610b04565b805160005b818110156106d657600083828151811061070457610704610fe4565b6020026020010151905060006008601261071e9190611010565b61072990600a611117565b60208301516040516351c4ae7360e11b815273cf263127e7dff09018af1f803bd3f9db58587a1c9163a3895ce69161078691907f000000000000000000000000000000000000000000000000000000000000000090600401611126565b602060405180830381865af41580156107a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c79190611148565b6107d19190611161565b9050600082600001518284604001516040516020016107f2939291906111dc565b60408051601f1981840301815291815281516020928301206000818152600190935291205490915060ff16156108af57606083018051600083815260016020526040908190208054608088015162ffff00199091166101009415159490940262ff000019169390931762010000841515021790558551818701519351915185947f97dc283f5985b19ca03303b41feda757978c2f883145da9f3ec2cb449407e12d946108a2948993909190611213565b60405180910390a26108c8565b604051633c7b394760e21b815260040160405180910390fd5b50505080806108d69061124e565b9150506106e8565b6060600280548060200260200160405190810160405280929190818152602001828054801561095e57602002820191906000526020600020906000905b82829054906101000a90046001600160401b03166001600160401b03168152602001906008019060208260070104928301926001038202915080841161091b5790505b5050505050905090565b610970610c40565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b600281815481106109d457600080fd5b9060005260206000209060049182820401919006600802915054906101000a90046001600160401b031681565b6001600160401b03821660009081526003602090815260408083208415158452825291829020805483518184028101840190945280845260609392830182828015610a9d57602002820191906000526020600020906000905b82829054906101000a90046001600160801b03166001600160801b031681526020019060100190602082600f01049283019260010382029150808411610a5a5790505b505050505090505b92915050565b60036020528260005260406000206020528160005260406000208181548110610ad357600080fd5b906000526020600020906002918282040191900660100292509250509054906101000a90046001600160801b031681565b60008054906101000a90046001600160a01b03166001600160a01b031663481c6a756040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b799190611267565b6001600160a01b0316336001600160a01b031614158015610c20575060008054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015610be6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0a9190611267565b6001600160a01b0316336001600160a01b031614155b15610c3e5760405163075fd2b160e01b815260040160405180910390fd5b565b60008054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb59190611267565b6001600160a01b0316336001600160a01b031614610c3e5760405163075fd2b160e01b815260040160405180910390fd5b600060208284031215610cf857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715610d3757610d37610cff565b60405290565b604051601f8201601f191681016001600160401b0381118282101715610d6557610d65610cff565b604052919050565b80356001600160401b0381168114610d8457600080fd5b919050565b80358015158114610d8457600080fd5b60006020808385031215610dac57600080fd5b82356001600160401b0380821115610dc357600080fd5b818501915085601f830112610dd757600080fd5b813581811115610de957610de9610cff565b610df7848260051b01610d3d565b818152848101925060a0918202840185019188831115610e1657600080fd5b938501935b82851015610ea65780858a031215610e335760008081fd5b610e3b610d15565b610e4486610d6d565b8152858701356001600160801b0381168114610e605760008081fd5b818801526040610e71878201610d89565b908201526060610e82878201610d89565b908201526080610e93878201610d89565b9082015284529384019392850192610e1b565b50979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610ef35783516001600160401b031683529284019291840191600101610ece565b50909695505050505050565b6001600160a01b0381168114610f1457600080fd5b50565b600060208284031215610f2957600080fd5b8135610f3481610eff565b9392505050565b60008060408385031215610f4e57600080fd5b610f5783610d6d565b9150610f6560208401610d89565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015610ef35783516001600160801b031683529284019291840191600101610f8a565b600080600060608486031215610fc457600080fd5b83359250610fd460208501610d89565b9150604084013590509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff84168082101561102a5761102a610ffa565b90039392505050565b600181815b8085111561106e57816000190482111561105457611054610ffa565b8085161561106157918102915b93841c9390800290611038565b509250929050565b60008261108557506001610aa5565b8161109257506000610aa5565b81600181146110a857600281146110b2576110ce565b6001915050610aa5565b60ff8411156110c3576110c3610ffa565b50506001821b610aa5565b5060208310610133831016604e8410600b84101617156110f1575081810a610aa5565b6110fb8383611033565b806000190482111561110f5761110f610ffa565b029392505050565b6000610f3460ff841683611076565b6001600160801b039290921682526001600160a01b0316602082015260400190565b60006020828403121561115a57600080fd5b5051919050565b600081600019048311821515161561117b5761117b610ffa565b500290565b60006001600160401b03838116908316818110156111a0576111a0610ffa565b039392505050565b60006001600160401b03808416806111d057634e487b7160e01b600052601260045260246000fd5b92169190910692915050565b60c09390931b6001600160c01b031916835260809190911b6001600160801b0319166008830152151560f81b601882015260190190565b6001600160401b039590951685526001600160801b039390931660208501529015156040840152151560608301521515608082015260a00190565b60006001820161126057611260610ffa565b5060010190565b60006020828403121561127957600080fd5b8151610f3481610eff56fea26469706673582212206cac5ab0d7e65f8879c7d59252866c48c10e7ddc5fa176000a9bb7599475501164736f6c634300080e003300000000000000000000000074948daf8beb3d14ddca66d205be3bc58df39ac9000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ca5760003560e01c8063948d6e371161007c578063948d6e37146101a8578063aabaecd614610238578063bf7e214f14610277578063c251ddf81461028a578063c71c5d0a146102b5578063dd1c6baa146102d5578063f5fc79e11461030057600080fd5b8063066966f3146100cf5780631e2d78891461010d5780634574991514610135578063491fa4a41461014a57806356e9d1e41461015d5780637a9e5e4b146101725780637b4c08f914610185575b600080fd5b6100f86100dd366004610ce6565b60009081526001602052604090205462010000900460ff1690565b60405190151581526020015b60405180910390f35b6100f861011b366004610ce6565b600090815260016020526040902054610100900460ff1690565b610148610143366004610d99565b610355565b005b610148610158366004610d99565b6106db565b6101656108de565b6040516101049190610eb2565b610148610180366004610f17565b610968565b6100f8610193366004610ce6565b60009081526001602052604090205460ff1690565b6102106101b6366004610ce6565b6040805160608082018352600080835260208084018290529284018190529384526001825292829020825193840183525460ff80821615158552610100820481161515928501929092526201000090041615159082015290565b6040805182511515815260208084015115159082015291810151151590820152606001610104565b61025f7f000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e583181565b6040516001600160a01b039091168152602001610104565b60005461025f906001600160a01b031681565b61029d610298366004610ce6565b6109c4565b6040516001600160401b039091168152602001610104565b6102c86102c3366004610f3b565b610a01565b6040516101049190610f6e565b6102e86102e3366004610faf565b610aab565b6040516001600160801b039091168152602001610104565b61033661030e366004610ce6565b60016020526000908152604090205460ff808216916101008104821691620100009091041683565b6040805193151584529115156020840152151590820152606001610104565b61035d610b04565b805160005b818110156106d657600083828151811061037e5761037e610fe4565b602002602001015190506000600860126103989190611010565b6103a390600a611117565b60208301516040516351c4ae7360e11b815273cf263127e7dff09018af1f803bd3f9db58587a1c9163a3895ce69161040091907f000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e583190600401611126565b602060405180830381865af415801561041d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104419190611148565b61044b9190611161565b90506201518061708083600001516104639190611180565b61046d91906111a8565b6001600160401b0316156104935760405162d36c8560e81b815260040160405180910390fd5b600082600001518284604001516040516020016104b2939291906111dc565b60408051601f1981840301815291815281516020928301206000818152600190935291205490915060ff16156104ea575050506106c4565b60408051606080820183526001808352908601511515602080840191825260808801511515848601908152600087815284835286812095518654945192511515620100000262ff0000199315156101000261ff00199215159290921661ffff199096169590951717919091169290921790935586516001600160401b0316815260038352838120918152915220541580156105a7575082516001600160401b03166000908152600360209081526040808320838052909152902054155b1561060d578251600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace6004820401805460039092166008026101000a6001600160401b038181021990931692909316929092021790555b82516001600160401b031660009081526003602090815260408083208187018051151585529083528184208054600180820183559186529390942060028404018054949093166010026101000a6001600160801b038181021990951694871602939093179091558451915160608601516080870151925185947fb3cde67957df62b50569520be360938d1647b691ee700f1bf5f238d1cb24661c946106b89491938993909190611213565b60405180910390a25050505b806106ce8161124e565b915050610362565b505050565b6106e3610b04565b805160005b818110156106d657600083828151811061070457610704610fe4565b6020026020010151905060006008601261071e9190611010565b61072990600a611117565b60208301516040516351c4ae7360e11b815273cf263127e7dff09018af1f803bd3f9db58587a1c9163a3895ce69161078691907f000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e583190600401611126565b602060405180830381865af41580156107a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c79190611148565b6107d19190611161565b9050600082600001518284604001516040516020016107f2939291906111dc565b60408051601f1981840301815291815281516020928301206000818152600190935291205490915060ff16156108af57606083018051600083815260016020526040908190208054608088015162ffff00199091166101009415159490940262ff000019169390931762010000841515021790558551818701519351915185947f97dc283f5985b19ca03303b41feda757978c2f883145da9f3ec2cb449407e12d946108a2948993909190611213565b60405180910390a26108c8565b604051633c7b394760e21b815260040160405180910390fd5b50505080806108d69061124e565b9150506106e8565b6060600280548060200260200160405190810160405280929190818152602001828054801561095e57602002820191906000526020600020906000905b82829054906101000a90046001600160401b03166001600160401b03168152602001906008019060208260070104928301926001038202915080841161091b5790505b5050505050905090565b610970610c40565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b600281815481106109d457600080fd5b9060005260206000209060049182820401919006600802915054906101000a90046001600160401b031681565b6001600160401b03821660009081526003602090815260408083208415158452825291829020805483518184028101840190945280845260609392830182828015610a9d57602002820191906000526020600020906000905b82829054906101000a90046001600160801b03166001600160801b031681526020019060100190602082600f01049283019260010382029150808411610a5a5790505b505050505090505b92915050565b60036020528260005260406000206020528160005260406000208181548110610ad357600080fd5b906000526020600020906002918282040191900660100292509250509054906101000a90046001600160801b031681565b60008054906101000a90046001600160a01b03166001600160a01b031663481c6a756040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b799190611267565b6001600160a01b0316336001600160a01b031614158015610c20575060008054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015610be6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0a9190611267565b6001600160a01b0316336001600160a01b031614155b15610c3e5760405163075fd2b160e01b815260040160405180910390fd5b565b60008054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb59190611267565b6001600160a01b0316336001600160a01b031614610c3e5760405163075fd2b160e01b815260040160405180910390fd5b600060208284031215610cf857600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715610d3757610d37610cff565b60405290565b604051601f8201601f191681016001600160401b0381118282101715610d6557610d65610cff565b604052919050565b80356001600160401b0381168114610d8457600080fd5b919050565b80358015158114610d8457600080fd5b60006020808385031215610dac57600080fd5b82356001600160401b0380821115610dc357600080fd5b818501915085601f830112610dd757600080fd5b813581811115610de957610de9610cff565b610df7848260051b01610d3d565b818152848101925060a0918202840185019188831115610e1657600080fd5b938501935b82851015610ea65780858a031215610e335760008081fd5b610e3b610d15565b610e4486610d6d565b8152858701356001600160801b0381168114610e605760008081fd5b818801526040610e71878201610d89565b908201526060610e82878201610d89565b908201526080610e93878201610d89565b9082015284529384019392850192610e1b565b50979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610ef35783516001600160401b031683529284019291840191600101610ece565b50909695505050505050565b6001600160a01b0381168114610f1457600080fd5b50565b600060208284031215610f2957600080fd5b8135610f3481610eff565b9392505050565b60008060408385031215610f4e57600080fd5b610f5783610d6d565b9150610f6560208401610d89565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015610ef35783516001600160801b031683529284019291840191600101610f8a565b600080600060608486031215610fc457600080fd5b83359250610fd460208501610d89565b9150604084013590509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff84168082101561102a5761102a610ffa565b90039392505050565b600181815b8085111561106e57816000190482111561105457611054610ffa565b8085161561106157918102915b93841c9390800290611038565b509250929050565b60008261108557506001610aa5565b8161109257506000610aa5565b81600181146110a857600281146110b2576110ce565b6001915050610aa5565b60ff8411156110c3576110c3610ffa565b50506001821b610aa5565b5060208310610133831016604e8410600b84101617156110f1575081810a610aa5565b6110fb8383611033565b806000190482111561110f5761110f610ffa565b029392505050565b6000610f3460ff841683611076565b6001600160801b039290921682526001600160a01b0316602082015260400190565b60006020828403121561115a57600080fd5b5051919050565b600081600019048311821515161561117b5761117b610ffa565b500290565b60006001600160401b03838116908316818110156111a0576111a0610ffa565b039392505050565b60006001600160401b03808416806111d057634e487b7160e01b600052601260045260246000fd5b92169190910692915050565b60c09390931b6001600160c01b031916835260809190911b6001600160801b0319166008830152151560f81b601882015260190190565b6001600160401b039590951685526001600160801b039390931660208501529015156040840152151560608301521515608082015260a00190565b60006001820161126057611260610ffa565b5060010190565b60006020828403121561127957600080fd5b8151610f3481610eff56fea26469706673582212206cac5ab0d7e65f8879c7d59252866c48c10e7ddc5fa176000a9bb7599475501164736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000074948daf8beb3d14ddca66d205be3bc58df39ac9000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831
-----Decoded View---------------
Arg [0] : _authority (address): 0x74948DAf8Beb3d14ddca66d205bE3bc58Df39aC9
Arg [1] : _collateralAsset (address): 0xaf88d065e77c8cC2239327C5EDb3A432268e5831
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000074948daf8beb3d14ddca66d205be3bc58df39ac9
Arg [1] : 000000000000000000000000af88d065e77c8cc2239327c5edb3a432268e5831
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.