/**
* SPDX-License-Identifier: UNLICENSED
*/
pragma solidity =0.6.10;
// File: contracts/interfaces/OpynPricerInterface.sol
interface OpynPricerInterface {
function getPrice() external view returns (uint256);
function getHistoricalPrice(uint80 _roundId) external view returns (uint256, uint256);
}
// File: contracts/packages/oz/Context.sol
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal virtual view returns (address payable) {
return msg.sender;
}
function _msgData() internal virtual view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: contracts/packages/oz/Ownable.sol
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: contracts/packages/oz/SafeMath.sol
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: contracts/core/Oracle.sol
/**
* @author Opyn Team
* @title Oracle Module
* @notice The Oracle module sets, retrieves, and stores USD prices (USD per asset) for underlying, collateral, and strike assets
* manages pricers that are used for different assets
*/
contract Oracle is Ownable {
using SafeMath for uint256;
/// @dev structure that stores price of asset and timestamp when the price was stored
struct Price {
uint256 price;
uint256 timestamp; // timestamp at which the price is pushed to this oracle
}
//// @dev disputer is a role defined by the owner that has the ability to dispute a price during the dispute period
address internal disputer;
bool migrated;
/// @dev mapping of asset pricer to its locking period
/// locking period is the period of time after the expiry timestamp where a price can not be pushed
mapping(address => uint256) internal pricerLockingPeriod;
/// @dev mapping of asset pricer to its dispute period
/// dispute period is the period of time after an expiry price has been pushed where a price can be disputed
mapping(address => uint256) internal pricerDisputePeriod;
/// @dev mapping between an asset and its pricer
mapping(address => address) internal assetPricer;
/// @dev mapping between asset, expiry timestamp, and the Price structure at the expiry timestamp
mapping(address => mapping(uint256 => Price)) internal storedPrice;
/// @dev mapping between stable asset and price
mapping(address => uint256) internal stablePrice;
/// @notice emits an event when the disputer is updated
event DisputerUpdated(address indexed newDisputer);
/// @notice emits an event when the pricer is updated for an asset
event PricerUpdated(address indexed asset, address indexed pricer);
/// @notice emits an event when the locking period is updated for a pricer
event PricerLockingPeriodUpdated(address indexed pricer, uint256 lockingPeriod);
/// @notice emits an event when the dispute period is updated for a pricer
event PricerDisputePeriodUpdated(address indexed pricer, uint256 disputePeriod);
/// @notice emits an event when an expiry price is updated for a specific asset
event ExpiryPriceUpdated(
address indexed asset,
uint256 indexed expiryTimestamp,
uint256 price,
uint256 onchainTimestamp
);
/// @notice emits an event when the disputer disputes a price during the dispute period
event ExpiryPriceDisputed(
address indexed asset,
uint256 indexed expiryTimestamp,
uint256 disputedPrice,
uint256 newPrice,
uint256 disputeTimestamp
);
/// @notice emits an event when a stable asset price changes
event StablePriceUpdated(address indexed asset, uint256 price);
/**
* @notice function to mgirate asset prices from old oracle to new deployed oracle
* @dev this can only be called by owner, should be used at the deployment time before setting Oracle module into AddressBook
* @param _asset asset address
* @param _expiries array of expiries timestamps
* @param _prices array of prices
*/
function migrateOracle(
address _asset,
uint256[] calldata _expiries,
uint256[] calldata _prices
) external onlyOwner {
require(!migrated, "Oracle: migration already done");
require(_expiries.length == _prices.length, "Oracle: invalid migration data");
for (uint256 i; i < _expiries.length; i++) {
storedPrice[_asset][_expiries[i]] = Price(_prices[i], now);
}
}
/**
* @notice end migration process
* @dev can only be called by owner, should be called before setting Oracle module into AddressBook
*/
function endMigration() external onlyOwner {
migrated = true;
}
/**
* @notice sets the pricer for an asset
* @dev can only be called by the owner
* @param _asset asset address
* @param _pricer pricer address
*/
function setAssetPricer(address _asset, address _pricer) external onlyOwner {
require(_pricer != address(0), "Oracle: cannot set pricer to address(0)");
require(stablePrice[_asset] == 0, "Oracle: could not set a pricer for stable asset");
assetPricer[_asset] = _pricer;
emit PricerUpdated(_asset, _pricer);
}
/**
* @notice sets the locking period for a pricer
* @dev can only be called by the owner
* @param _pricer pricer address
* @param _lockingPeriod locking period
*/
function setLockingPeriod(address _pricer, uint256 _lockingPeriod) external onlyOwner {
pricerLockingPeriod[_pricer] = _lockingPeriod;
emit PricerLockingPeriodUpdated(_pricer, _lockingPeriod);
}
/**
* @notice sets the dispute period for a pricer
* @dev can only be called by the owner
* for a composite pricer (ie CompoundPricer) that depends on or calls other pricers, ensure
* that the dispute period for the composite pricer is longer than the dispute period for the
* asset pricer that it calls to ensure safe usage as a dispute in the other pricer will cause
* the need for a dispute with the composite pricer's price
* @param _pricer pricer address
* @param _disputePeriod dispute period
*/
function setDisputePeriod(address _pricer, uint256 _disputePeriod) external onlyOwner {
pricerDisputePeriod[_pricer] = _disputePeriod;
emit PricerDisputePeriodUpdated(_pricer, _disputePeriod);
}
/**
* @notice set the disputer address
* @dev can only be called by the owner
* @param _disputer disputer address
*/
function setDisputer(address _disputer) external onlyOwner {
disputer = _disputer;
emit DisputerUpdated(_disputer);
}
/**
* @notice set stable asset price
* @dev price should be scaled by 1e8
* @param _asset asset address
* @param _price price
*/
function setStablePrice(address _asset, uint256 _price) external onlyOwner {
require(assetPricer[_asset] == address(0), "Oracle: could not set stable price for an asset with pricer");
stablePrice[_asset] = _price;
emit StablePriceUpdated(_asset, _price);
}
/**
* @notice dispute an asset price during the dispute period
* @dev only the disputer can dispute a price during the dispute period, by setting a new one
* @param _asset asset address
* @param _expiryTimestamp expiry timestamp
* @param _price the correct price
*/
function disputeExpiryPrice(
address _asset,
uint256 _expiryTimestamp,
uint256 _price
) external {
require(msg.sender == disputer, "Oracle: caller is not the disputer");
require(!isDisputePeriodOver(_asset, _expiryTimestamp), "Oracle: dispute period over");
Price storage priceToUpdate = storedPrice[_asset][_expiryTimestamp];
require(priceToUpdate.timestamp != 0, "Oracle: price to dispute does not exist");
uint256 oldPrice = priceToUpdate.price;
priceToUpdate.price = _price;
emit ExpiryPriceDisputed(_asset, _expiryTimestamp, oldPrice, _price, now);
}
/**
* @notice submits the expiry price to the oracle, can only be set from the pricer
* @dev asset price can only be set after the locking period is over and before the dispute period has started
* @param _asset asset address
* @param _expiryTimestamp expiry timestamp
* @param _price asset price at expiry
*/
function setExpiryPrice(
address _asset,
uint256 _expiryTimestamp,
uint256 _price
) external {
require(msg.sender == assetPricer[_asset], "Oracle: caller is not authorized to set expiry price");
require(isLockingPeriodOver(_asset, _expiryTimestamp), "Oracle: locking period is not over yet");
require(storedPrice[_asset][_expiryTimestamp].timestamp == 0, "Oracle: dispute period started");
storedPrice[_asset][_expiryTimestamp] = Price(_price, now);
emit ExpiryPriceUpdated(_asset, _expiryTimestamp, _price, now);
}
/**
* @notice get a live asset price from the asset's pricer contract
* @param _asset asset address
* @return price scaled by 1e8, denominated in USD
* e.g. 17568900000 => 175.689 USD
*/
function getPrice(address _asset) external view returns (uint256) {
uint256 price = stablePrice[_asset];
if (price == 0) {
require(assetPricer[_asset] != address(0), "Oracle: Pricer for this asset not set");
price = OpynPricerInterface(assetPricer[_asset]).getPrice();
}
return price;
}
/**
* @notice get the asset price at specific expiry timestamp
* @param _asset asset address
* @param _expiryTimestamp expiry timestamp
* @return price scaled by 1e8, denominated in USD
* @return isFinalized True, if the price is finalized, False if not
*/
function getExpiryPrice(address _asset, uint256 _expiryTimestamp) external view returns (uint256, bool) {
uint256 price = stablePrice[_asset];
bool isFinalized = true;
if (price == 0) {
price = storedPrice[_asset][_expiryTimestamp].price;
isFinalized = isDisputePeriodOver(_asset, _expiryTimestamp);
}
return (price, isFinalized);
}
/**
* @notice get the pricer for an asset
* @param _asset asset address
* @return pricer address
*/
function getPricer(address _asset) external view returns (address) {
return assetPricer[_asset];
}
/**
* @notice get the disputer address
* @return disputer address
*/
function getDisputer() external view returns (address) {
return disputer;
}
/**
* @notice get a pricer's locking period
* locking period is the period of time after the expiry timestamp where a price can not be pushed
* @dev during the locking period an expiry price can not be submitted to this contract
* @param _pricer pricer address
* @return locking period
*/
function getPricerLockingPeriod(address _pricer) external view returns (uint256) {
return pricerLockingPeriod[_pricer];
}
/**
* @notice get a pricer's dispute period
* dispute period is the period of time after an expiry price has been pushed where a price can be disputed
* @dev during the dispute period, the disputer can dispute the submitted price and modify it
* @param _pricer pricer address
* @return dispute period
*/
function getPricerDisputePeriod(address _pricer) external view returns (uint256) {
return pricerDisputePeriod[_pricer];
}
/**
* @notice get historical asset price and timestamp
* @dev if asset is a stable asset, will return stored price and timestamp equal to now
* @param _asset asset address to get it's historical price
* @param _roundId chainlink round id
* @return price and round timestamp
*/
function getChainlinkRoundData(address _asset, uint80 _roundId) external view returns (uint256, uint256) {
uint256 price = stablePrice[_asset];
uint256 timestamp = now;
if (price == 0) {
require(assetPricer[_asset] != address(0), "Oracle: Pricer for this asset not set");
(price, timestamp) = OpynPricerInterface(assetPricer[_asset]).getHistoricalPrice(_roundId);
}
return (price, timestamp);
}
/**
* @notice check if the locking period is over for setting the asset price at a particular expiry timestamp
* @param _asset asset address
* @param _expiryTimestamp expiry timestamp
* @return True if locking period is over, False if not
*/
function isLockingPeriodOver(address _asset, uint256 _expiryTimestamp) public view returns (bool) {
uint256 price = stablePrice[_asset];
if (price == 0) {
address pricer = assetPricer[_asset];
uint256 lockingPeriod = pricerLockingPeriod[pricer];
return now > _expiryTimestamp.add(lockingPeriod);
}
return true;
}
/**
* @notice check if the dispute period is over
* @param _asset asset address
* @param _expiryTimestamp expiry timestamp
* @return True if dispute period is over, False if not
*/
function isDisputePeriodOver(address _asset, uint256 _expiryTimestamp) public view returns (bool) {
uint256 price = stablePrice[_asset];
if (price == 0) {
// check if the pricer has a price for this expiry timestamp
Price memory price = storedPrice[_asset][_expiryTimestamp];
if (price.timestamp == 0) {
return false;
}
address pricer = assetPricer[_asset];
uint256 disputePeriod = pricerDisputePeriod[pricer];
return now > price.timestamp.add(disputePeriod);
}
return true;
}
}
{
"compilationTarget": {
"contracts/Oracle.sol": "Oracle"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
}
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newDisputer","type":"address"}],"name":"DisputerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"uint256","name":"expiryTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"disputedPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"disputeTimestamp","type":"uint256"}],"name":"ExpiryPriceDisputed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"uint256","name":"expiryTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"onchainTimestamp","type":"uint256"}],"name":"ExpiryPriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pricer","type":"address"},{"indexed":false,"internalType":"uint256","name":"disputePeriod","type":"uint256"}],"name":"PricerDisputePeriodUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pricer","type":"address"},{"indexed":false,"internalType":"uint256","name":"lockingPeriod","type":"uint256"}],"name":"PricerLockingPeriodUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"address","name":"pricer","type":"address"}],"name":"PricerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"StablePriceUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_expiryTimestamp","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"disputeExpiryPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint80","name":"_roundId","type":"uint80"}],"name":"getChainlinkRoundData","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDisputer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_expiryTimestamp","type":"uint256"}],"name":"getExpiryPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"}],"name":"getPricer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pricer","type":"address"}],"name":"getPricerDisputePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pricer","type":"address"}],"name":"getPricerLockingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_expiryTimestamp","type":"uint256"}],"name":"isDisputePeriodOver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_expiryTimestamp","type":"uint256"}],"name":"isLockingPeriodOver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256[]","name":"_expiries","type":"uint256[]"},{"internalType":"uint256[]","name":"_prices","type":"uint256[]"}],"name":"migrateOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"address","name":"_pricer","type":"address"}],"name":"setAssetPricer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pricer","type":"address"},{"internalType":"uint256","name":"_disputePeriod","type":"uint256"}],"name":"setDisputePeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_disputer","type":"address"}],"name":"setDisputer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_expiryTimestamp","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setExpiryPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pricer","type":"address"},{"internalType":"uint256","name":"_lockingPeriod","type":"uint256"}],"name":"setLockingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setStablePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]