Source Code
Overview
GLMR Balance
GLMR Value
$0.00Latest 6 from a total of 6 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| _set Price Feed ... | 1651191 | 1266 days ago | IN | 0 GLMR | 0.04840148 | ||||
| _set Price Feed ... | 1651189 | 1266 days ago | IN | 0 GLMR | 0.02415155 | ||||
| _set Price Feed ... | 1651178 | 1266 days ago | IN | 0 GLMR | 0.02798586 | ||||
| _set Price Feed ... | 1651176 | 1266 days ago | IN | 0 GLMR | 0.07732432 | ||||
| _set Price Feed ... | 1651175 | 1266 days ago | IN | 0 GLMR | 0.0803352 | ||||
| _set Price Feed ... | 1651173 | 1266 days ago | IN | 0 GLMR | 0.0803352 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 5937413 | 658 days ago | 0 GLMR | ||||
| 5937413 | 658 days ago | 0 GLMR | ||||
| 5937413 | 658 days ago | 0 GLMR | ||||
| 5937413 | 658 days ago | 0 GLMR | ||||
| 5937413 | 658 days ago | 0 GLMR | ||||
| 5937413 | 658 days ago | 0 GLMR | ||||
| 5729956 | 687 days ago | 0 GLMR | ||||
| 5729956 | 687 days ago | 0 GLMR | ||||
| 5729956 | 687 days ago | 0 GLMR | ||||
| 5729956 | 687 days ago | 0 GLMR | ||||
| 5729956 | 687 days ago | 0 GLMR | ||||
| 5729956 | 687 days ago | 0 GLMR | ||||
| 5729954 | 687 days ago | 0 GLMR | ||||
| 5729954 | 687 days ago | 0 GLMR | ||||
| 5729954 | 687 days ago | 0 GLMR | ||||
| 5729954 | 687 days ago | 0 GLMR | ||||
| 5729954 | 687 days ago | 0 GLMR | ||||
| 5729954 | 687 days ago | 0 GLMR | ||||
| 5729948 | 687 days ago | 0 GLMR | ||||
| 5729948 | 687 days ago | 0 GLMR | ||||
| 5729948 | 687 days ago | 0 GLMR | ||||
| 5729948 | 687 days ago | 0 GLMR | ||||
| 5729948 | 687 days ago | 0 GLMR | ||||
| 5729948 | 687 days ago | 0 GLMR | ||||
| 5729948 | 687 days ago | 0 GLMR |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ChainlinkPriceOracle
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@chainlink/contracts/src/v0.7/interfaces/AggregatorV3Interface.sol";
import "../interfaces/IPriceOracle.sol";
/**
* @title Ola's ChainLink based price oracle.
* @author Ola
*/
contract ChainlinkPriceOracle is IPriceOracle, Ownable {
// Underlying -> ChainLink Feed address
mapping(address => address) public chainLinkFeeds;
// Underlying -> ChainLink Feed decimals
mapping(address => uint8) public chainLinkFeedDecimals;
// Underlying -> assets decimals
mapping(address => uint8) public assetsDecimals;
event NewFeedForAsset(address indexed asset, address oldFeed, address newFeed);
event NewFeedDecimalsForAsset(address indexed asset, uint8 oldFeedDecimals, uint8 newFeedDecimals);
/**
* @notice Get the price an asset
* @param asset The asset to get the price of
* @return The asset price mantissa (scaled by 1e(36 - assetDecimals)).
* Zero means the price is unavailable.
*/
function getAssetPrice(address asset) external override view returns (uint) {
return _getPriceForAssetInternal(asset);
}
/**
* @notice Get the price update timestamp for the asset
* @param asset The asset address for price update timestamp retrieval.
* @return Last price update timestamp for the asset
*/
function getAssetPriceUpdateTimestamp(address asset) external override view returns (uint) {
return _getPriceUpdateTimestampForAssetInternal(asset);
}
/**
* @notice Get the underlying price of a cToken asset
* @param cToken The cToken to get the underlying price of
* @return The underlying asset price mantissa (scaled by 1e(36 - assetDecimals)).
* Zero means the price is unavailable.
*/
function getUnderlyingPrice(address cToken) external override view returns (uint) {
return _getPriceForAssetInternal(ICTokenForPriceOracle(cToken).underlying());
}
/**
* @notice Get the price update timestamp for the cToken underlying
* @param cToken The cToken address for price update timestamp retrieval.
* @return Last price update timestamp for the cToken underlying asset
*/
function getUnderlyingPriceUpdateTimestamp(address cToken) external override view returns (uint) {
return _getPriceUpdateTimestampForAssetInternal(ICTokenForPriceOracle(cToken).underlying());
}
function _setPriceFeedForUnderlying(address _underlying, address _chainlinkFeed, uint8 _priceFeedDecimals) onlyOwner external {
_setPriceFeedForUnderlyingInternal(_underlying, _chainlinkFeed, _priceFeedDecimals);
}
function _setPriceFeedsForUnderlyings(address[] calldata _underlyings, address[] calldata _chainlinkFeeds, uint8[] calldata _priceFeedsDecimals) onlyOwner external {
require(_underlyings.length == _chainlinkFeeds.length, "underlyings and chainlinkFeeds should be 1:1");
require(_underlyings.length == _priceFeedsDecimals.length, "underlyings and priceFeedsDecimals should be 1:1");
for (uint i = 0; i < _underlyings.length; i++) {
_setPriceFeedForUnderlyingInternal(_underlyings[i], _chainlinkFeeds[i], _priceFeedsDecimals[i]);
}
}
function getPriceForAsset(address asset) public view returns (uint) {
return _getPriceForAssetInternal(asset);
}
function hasFeedForAsset(address asset) public view returns (bool) {
return chainLinkFeeds[asset] != address(0);
}
function chainLinkRawReportedPrice(address asset) public view returns (int) {
return getChainLinkPrice(AggregatorV3Interface(chainLinkFeeds[asset]));
}
function isPriceOracle() public override pure returns (bool) {
return true;
}
function _setPriceFeedForUnderlyingInternal(address underlying, address chainlinkFeed, uint8 priceFeedDecimals) internal {
address existingFeed = chainLinkFeeds[underlying];
uint8 existingDecimals = chainLinkFeedDecimals[underlying];
require(existingFeed == address(0), "Cannot reassign feed");
uint8 decimalsForAsset;
if (underlying == address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)) {
decimalsForAsset = 18;
} else {
decimalsForAsset = ERC20(underlying).decimals();
}
// Update if the feed is different
if (existingFeed != chainlinkFeed) {
chainLinkFeeds[underlying] = chainlinkFeed;
chainLinkFeedDecimals[underlying] = priceFeedDecimals;
assetsDecimals[underlying] = decimalsForAsset;
emit NewFeedForAsset(underlying, existingFeed, chainlinkFeed);
emit NewFeedDecimalsForAsset(underlying, existingDecimals, priceFeedDecimals);
}
}
/**
* @notice Get the underlying price of a cToken asset
* @param asset The asset (Erc20 or native)
* @return The asset price mantissa (scaled by 1e(36 - assetDecimals)).
* Zero means the price is unavailable.
*/
function _getPriceForAssetInternal(address asset) internal view returns (uint) {
if (hasFeedForAsset(asset)) {
uint8 feedDecimals = chainLinkFeedDecimals[asset];
uint8 assetDecimals = assetsDecimals[asset];
address feed = chainLinkFeeds[asset];
int feedPriceRaw = getChainLinkPrice(AggregatorV3Interface(feed));
uint feedPrice = uint(feedPriceRaw);
// Safety
require(feedPriceRaw == int(feedPrice), "Price Conversion error");
// Needs to be scaled to e36 and then divided by the asset's decimals
if (feedDecimals == 8) {
return (mul(1e28, feedPrice) / (10 ** assetDecimals));
} else if (feedDecimals == 18) {
return (mul(1e18, feedPrice) / (10 ** assetDecimals));
} else {
return 0;
}
} else {
return 0;
}
}
function _getPriceUpdateTimestampForAssetInternal(address asset) internal view returns (uint) {
if (hasFeedForAsset(asset)) {
return getChainLinkUpdateTimestamp(AggregatorV3Interface(chainLinkFeeds[asset]));
} else {
return 0;
}
}
function getChainLinkPrice(AggregatorV3Interface priceFeed) internal view returns (int) {
(
uint80 roundID,
int price,
uint startedAt,
uint timeStamp,
uint80 answeredInRound
) = priceFeed.latestRoundData();
return price;
}
function getChainLinkUpdateTimestamp(AggregatorV3Interface priceFeed) internal view returns (uint) {
(
uint80 roundID,
int price,
uint startedAt,
uint timeStamp,
uint80 answeredInRound
) = priceFeed.latestRoundData();
return timeStamp;
}
/// @dev Overflow proof multiplication
function mul(uint a, uint b) internal pure returns (uint) {
if (a == 0) return 0;
uint c = a * b;
require(c / a == b, "multiplication overflow");
return c;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../utils/Context.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.
*/
abstract 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 virtual 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;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../../utils/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) public {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal virtual {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
interface AggregatorV3Interface {
function decimals()
external
view
returns (
uint8
);
function description()
external
view
returns (
string memory
);
function version()
external
view
returns (
uint256
);
// getRoundData and latestRoundData should both raise "No data present"
// if they do not have data to report, instead of returning unset values
// which could be misinterpreted as actual reported values.
function getRoundData(
uint80 _roundId
)
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
function latestRoundData()
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
// Price oracle interface for solidity 0.7
interface ICTokenForPriceOracle {
function underlying() external view returns (address);
}
/**
* 0.7.6 Interface for "PriceOracle.sol"
*/
interface IPriceOracle {
function isPriceOracle() external view returns (bool);
function getAssetPrice(address asset) external view returns (uint);
function getAssetPriceUpdateTimestamp(address asset) external view returns (uint);
function getUnderlyingPrice(address cToken) external view returns (uint);
function getUnderlyingPriceUpdateTimestamp(address cToken) external view returns (uint);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/*
* @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 view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @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, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @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) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @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) {
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, reverting 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) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting 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) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* 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);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* 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) {
require(b > 0, errorMessage);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* 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;
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint8","name":"oldFeedDecimals","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"newFeedDecimals","type":"uint8"}],"name":"NewFeedDecimalsForAsset","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"address","name":"oldFeed","type":"address"},{"indexed":false,"internalType":"address","name":"newFeed","type":"address"}],"name":"NewFeedForAsset","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"},{"inputs":[{"internalType":"address","name":"_underlying","type":"address"},{"internalType":"address","name":"_chainlinkFeed","type":"address"},{"internalType":"uint8","name":"_priceFeedDecimals","type":"uint8"}],"name":"_setPriceFeedForUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_underlyings","type":"address[]"},{"internalType":"address[]","name":"_chainlinkFeeds","type":"address[]"},{"internalType":"uint8[]","name":"_priceFeedsDecimals","type":"uint8[]"}],"name":"_setPriceFeedsForUnderlyings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"assetsDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"chainLinkFeedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"chainLinkFeeds","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"}],"name":"chainLinkRawReportedPrice","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"}],"name":"getAssetPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"}],"name":"getAssetPriceUpdateTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"}],"name":"getPriceForAsset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cToken","type":"address"}],"name":"getUnderlyingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"cToken","type":"address"}],"name":"getUnderlyingPriceUpdateTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"}],"name":"hasFeedForAsset","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPriceOracle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50600061001b61006a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35061006e565b3390565b610eb58061007d6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063d4bf4ccc11610066578063d4bf4ccc146102e1578063eeb269fe146102bb578063f2fde38b146103f5578063fc57d4df1461041b57610100565b8063715018a6146102855780638da5cb5b1461028d57806393329b5214610295578063b3596f07146102bb57610100565b806343a75671116100d357806343a75671146101f7578063561b8313146102315780635f3496601461025757806366331bba1461027d57610100565b806309f8110e146101055780632ae3c3481461014157806333f0ddc314610183578063388a9347146101bb575b600080fd5b61012b6004803603602081101561011b57600080fd5b50356001600160a01b0316610441565b6040805160ff9092168252519081900360200190f35b6101676004803603602081101561015757600080fd5b50356001600160a01b0316610456565b604080516001600160a01b039092168252519081900360200190f35b6101a96004803603602081101561019957600080fd5b50356001600160a01b0316610471565b60408051918252519081900360200190f35b6101f5600480360360608110156101d157600080fd5b5080356001600160a01b03908116916020810135909116906040013560ff1661049f565b005b61021d6004803603602081101561020d57600080fd5b50356001600160a01b0316610511565b604080519115158252519081900360200190f35b61012b6004803603602081101561024757600080fd5b50356001600160a01b0316610531565b6101a96004803603602081101561026d57600080fd5b50356001600160a01b0316610546565b61021d6105b5565b6101f56105ba565b610167610666565b6101a9600480360360208110156102ab57600080fd5b50356001600160a01b0316610675565b6101a9600480360360208110156102d157600080fd5b50356001600160a01b0316610680565b6101f5600480360360608110156102f757600080fd5b81019060208101813564010000000081111561031257600080fd5b82018360208201111561032457600080fd5b8035906020019184602083028401116401000000008311171561034657600080fd5b91939092909160208101903564010000000081111561036457600080fd5b82018360208201111561037657600080fd5b8035906020019184602083028401116401000000008311171561039857600080fd5b9193909290916020810190356401000000008111156103b657600080fd5b8201836020820111156103c857600080fd5b803590602001918460208302840111640100000000831117156103ea57600080fd5b50909250905061068b565b6101f56004803603602081101561040b57600080fd5b50356001600160a01b03166107db565b6101a96004803603602081101561043157600080fd5b50356001600160a01b03166108dd565b60036020526000908152604090205460ff1681565b6001602052600090815260409020546001600160a01b031681565b6001600160a01b038082166000908152600160205260408120549091610497911661094c565b90505b919050565b6104a76109c8565b6001600160a01b03166104b8610666565b6001600160a01b031614610501576040805162461bcd60e51b81526020600482018190526024820152600080516020610e60833981519152604482015290519081900360640190fd5b61050c8383836109cc565b505050565b6001600160a01b0390811660009081526001602052604090205416151590565b60026020526000908152604090205460ff1681565b6000610497826001600160a01b0316636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561058457600080fd5b505afa158015610598573d6000803e3d6000fd5b505050506040513d60208110156105ae57600080fd5b5051610bde565b600190565b6105c26109c8565b6001600160a01b03166105d3610666565b6001600160a01b03161461061c576040805162461bcd60e51b81526020600482018190526024820152600080516020610e60833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600061049782610bde565b600061049782610c21565b6106936109c8565b6001600160a01b03166106a4610666565b6001600160a01b0316146106ed576040805162461bcd60e51b81526020600482018190526024820152600080516020610e60833981519152604482015290519081900360640190fd5b84831461072b5760405162461bcd60e51b815260040180806020018281038252602c815260200180610dde602c913960400191505060405180910390fd5b8481146107695760405162461bcd60e51b8152600401808060200182810382526030815260200180610e306030913960400191505060405180910390fd5b60005b858110156107d2576107ca87878381811061078357fe5b905060200201356001600160a01b031686868481811061079f57fe5b905060200201356001600160a01b03168585858181106107bb57fe5b9050602002013560ff166109cc565b60010161076c565b50505050505050565b6107e36109c8565b6001600160a01b03166107f4610666565b6001600160a01b03161461083d576040805162461bcd60e51b81526020600482018190526024820152600080516020610e60833981519152604482015290519081900360640190fd5b6001600160a01b0381166108825760405162461bcd60e51b8152600401808060200182810382526026815260200180610e0a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610497826001600160a01b0316636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561091b57600080fd5b505afa15801561092f573d6000803e3d6000fd5b505050506040513d602081101561094557600080fd5b5051610c21565b600080600080600080866001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b15801561098e57600080fd5b505afa1580156109a2573d6000803e3d6000fd5b505050506040513d60a08110156109b857600080fd5b5060200151979650505050505050565b3390565b6001600160a01b0380841660009081526001602090815260408083205460029092529091205491169060ff168115610a42576040805162461bcd60e51b815260206004820152601460248201527310d85b9b9bdd081c99585cdcda59db881999595960621b604482015290519081900360640190fd5b60006001600160a01b03861673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610a7157506012610ad9565b856001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610aaa57600080fd5b505afa158015610abe573d6000803e3d6000fd5b505050506040513d6020811015610ad457600080fd5b505190505b846001600160a01b0316836001600160a01b031614610bd6576001600160a01b0380871660008181526001602090815260408083208054868c166001600160a01b0319909116811790915560028352818420805460ff808d1660ff19928316179092556003855294839020805491891691909516179093558051948816855290840191909152805191927f33232b700ab62b15cace2ecf9e2e94a9c01f0119d48e2c9cb9d5528270d1994e929081900390910190a26040805160ff80851682528616602082015281516001600160a01b038916927f49a47c0f46776c67cf6827fe94c505f47dbca93838c1e7967fd0bdb77c673dc2928290030190a25b505050505050565b6000610be982610511565b15610c19576001600160a01b03808316600090815260016020526040902054610c129116610ce9565b905061049a565b50600061049a565b6000610c2c82610511565b15610c19576001600160a01b03808316600090815260026020908152604080832054600383528184205460019093529083205460ff918216949290911692911690610c768261094c565b9050808460ff1660081415610cb6578360ff16600a0a610ca26b204fce5e3e2502611000000083610d65565b81610ca957fe5b049550505050505061049a565b8460ff1660121415610cdb578360ff16600a0a610ca2670de0b6b3a764000083610d65565b60009550505050505061049a565b600080600080600080866001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b158015610d2b57600080fd5b505afa158015610d3f573d6000803e3d6000fd5b505050506040513d60a0811015610d5557600080fd5b5060600151979650505050505050565b600082610d7457506000610dd7565b82820282848281610d8157fe5b0414610dd4576040805162461bcd60e51b815260206004820152601760248201527f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000604482015290519081900360640190fd5b90505b9291505056fe756e6465726c79696e677320616e6420636861696e6c696e6b46656564732073686f756c6420626520313a314f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373756e6465726c79696e677320616e642070726963654665656473446563696d616c732073686f756c6420626520313a314f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220a0cd401e216cab0ff81ee52ac52534def4cee4f6198f0f4b4862835972faf0e664736f6c63430007060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063d4bf4ccc11610066578063d4bf4ccc146102e1578063eeb269fe146102bb578063f2fde38b146103f5578063fc57d4df1461041b57610100565b8063715018a6146102855780638da5cb5b1461028d57806393329b5214610295578063b3596f07146102bb57610100565b806343a75671116100d357806343a75671146101f7578063561b8313146102315780635f3496601461025757806366331bba1461027d57610100565b806309f8110e146101055780632ae3c3481461014157806333f0ddc314610183578063388a9347146101bb575b600080fd5b61012b6004803603602081101561011b57600080fd5b50356001600160a01b0316610441565b6040805160ff9092168252519081900360200190f35b6101676004803603602081101561015757600080fd5b50356001600160a01b0316610456565b604080516001600160a01b039092168252519081900360200190f35b6101a96004803603602081101561019957600080fd5b50356001600160a01b0316610471565b60408051918252519081900360200190f35b6101f5600480360360608110156101d157600080fd5b5080356001600160a01b03908116916020810135909116906040013560ff1661049f565b005b61021d6004803603602081101561020d57600080fd5b50356001600160a01b0316610511565b604080519115158252519081900360200190f35b61012b6004803603602081101561024757600080fd5b50356001600160a01b0316610531565b6101a96004803603602081101561026d57600080fd5b50356001600160a01b0316610546565b61021d6105b5565b6101f56105ba565b610167610666565b6101a9600480360360208110156102ab57600080fd5b50356001600160a01b0316610675565b6101a9600480360360208110156102d157600080fd5b50356001600160a01b0316610680565b6101f5600480360360608110156102f757600080fd5b81019060208101813564010000000081111561031257600080fd5b82018360208201111561032457600080fd5b8035906020019184602083028401116401000000008311171561034657600080fd5b91939092909160208101903564010000000081111561036457600080fd5b82018360208201111561037657600080fd5b8035906020019184602083028401116401000000008311171561039857600080fd5b9193909290916020810190356401000000008111156103b657600080fd5b8201836020820111156103c857600080fd5b803590602001918460208302840111640100000000831117156103ea57600080fd5b50909250905061068b565b6101f56004803603602081101561040b57600080fd5b50356001600160a01b03166107db565b6101a96004803603602081101561043157600080fd5b50356001600160a01b03166108dd565b60036020526000908152604090205460ff1681565b6001602052600090815260409020546001600160a01b031681565b6001600160a01b038082166000908152600160205260408120549091610497911661094c565b90505b919050565b6104a76109c8565b6001600160a01b03166104b8610666565b6001600160a01b031614610501576040805162461bcd60e51b81526020600482018190526024820152600080516020610e60833981519152604482015290519081900360640190fd5b61050c8383836109cc565b505050565b6001600160a01b0390811660009081526001602052604090205416151590565b60026020526000908152604090205460ff1681565b6000610497826001600160a01b0316636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561058457600080fd5b505afa158015610598573d6000803e3d6000fd5b505050506040513d60208110156105ae57600080fd5b5051610bde565b600190565b6105c26109c8565b6001600160a01b03166105d3610666565b6001600160a01b03161461061c576040805162461bcd60e51b81526020600482018190526024820152600080516020610e60833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600061049782610bde565b600061049782610c21565b6106936109c8565b6001600160a01b03166106a4610666565b6001600160a01b0316146106ed576040805162461bcd60e51b81526020600482018190526024820152600080516020610e60833981519152604482015290519081900360640190fd5b84831461072b5760405162461bcd60e51b815260040180806020018281038252602c815260200180610dde602c913960400191505060405180910390fd5b8481146107695760405162461bcd60e51b8152600401808060200182810382526030815260200180610e306030913960400191505060405180910390fd5b60005b858110156107d2576107ca87878381811061078357fe5b905060200201356001600160a01b031686868481811061079f57fe5b905060200201356001600160a01b03168585858181106107bb57fe5b9050602002013560ff166109cc565b60010161076c565b50505050505050565b6107e36109c8565b6001600160a01b03166107f4610666565b6001600160a01b03161461083d576040805162461bcd60e51b81526020600482018190526024820152600080516020610e60833981519152604482015290519081900360640190fd5b6001600160a01b0381166108825760405162461bcd60e51b8152600401808060200182810382526026815260200180610e0a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610497826001600160a01b0316636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561091b57600080fd5b505afa15801561092f573d6000803e3d6000fd5b505050506040513d602081101561094557600080fd5b5051610c21565b600080600080600080866001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b15801561098e57600080fd5b505afa1580156109a2573d6000803e3d6000fd5b505050506040513d60a08110156109b857600080fd5b5060200151979650505050505050565b3390565b6001600160a01b0380841660009081526001602090815260408083205460029092529091205491169060ff168115610a42576040805162461bcd60e51b815260206004820152601460248201527310d85b9b9bdd081c99585cdcda59db881999595960621b604482015290519081900360640190fd5b60006001600160a01b03861673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415610a7157506012610ad9565b856001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610aaa57600080fd5b505afa158015610abe573d6000803e3d6000fd5b505050506040513d6020811015610ad457600080fd5b505190505b846001600160a01b0316836001600160a01b031614610bd6576001600160a01b0380871660008181526001602090815260408083208054868c166001600160a01b0319909116811790915560028352818420805460ff808d1660ff19928316179092556003855294839020805491891691909516179093558051948816855290840191909152805191927f33232b700ab62b15cace2ecf9e2e94a9c01f0119d48e2c9cb9d5528270d1994e929081900390910190a26040805160ff80851682528616602082015281516001600160a01b038916927f49a47c0f46776c67cf6827fe94c505f47dbca93838c1e7967fd0bdb77c673dc2928290030190a25b505050505050565b6000610be982610511565b15610c19576001600160a01b03808316600090815260016020526040902054610c129116610ce9565b905061049a565b50600061049a565b6000610c2c82610511565b15610c19576001600160a01b03808316600090815260026020908152604080832054600383528184205460019093529083205460ff918216949290911692911690610c768261094c565b9050808460ff1660081415610cb6578360ff16600a0a610ca26b204fce5e3e2502611000000083610d65565b81610ca957fe5b049550505050505061049a565b8460ff1660121415610cdb578360ff16600a0a610ca2670de0b6b3a764000083610d65565b60009550505050505061049a565b600080600080600080866001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b158015610d2b57600080fd5b505afa158015610d3f573d6000803e3d6000fd5b505050506040513d60a0811015610d5557600080fd5b5060600151979650505050505050565b600082610d7457506000610dd7565b82820282848281610d8157fe5b0414610dd4576040805162461bcd60e51b815260206004820152601760248201527f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000604482015290519081900360640190fd5b90505b9291505056fe756e6465726c79696e677320616e6420636861696e6c696e6b46656564732073686f756c6420626520313a314f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373756e6465726c79696e677320616e642070726963654665656473446563696d616c732073686f756c6420626520313a314f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220a0cd401e216cab0ff81ee52ac52534def4cee4f6198f0f4b4862835972faf0e664736f6c63430007060033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in GLMR
Multichain Portfolio | 35 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.