Source Code
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PriceFeedsAdapterWithoutRoundsBlastLrtsV1
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
import {PriceFeedsAdapterWithoutRoundsPrimaryProd} from "@redstone-finance/on-chain-relayer/contracts/price-feeds/data-services/PriceFeedsAdapterWithoutRoundsPrimaryProd.sol";
import {OldGelatoAddress, GelatoAddress} from "../__addresses/Addresses.sol";
import {IBlastClaimableGas} from "../__common/IBlastClaimableGas.sol";
contract PriceFeedsAdapterWithoutRoundsBlastLrtsV1 is
PriceFeedsAdapterWithoutRoundsPrimaryProd
{
bytes32 private constant WEETHETH_ID = bytes32("weETH/ETH");
bytes32 private constant EZETHETH_ID = bytes32("ezETH/ETH");
bytes32 private constant APXETHETH_ID = bytes32("apxETH/ETH");
address internal constant MAIN_UPDATER_ADDRESS =
0x23eB64e32F94E38f1f46A65305A4aa3487f205A5;
address internal constant FALLBACK_UPDATER_ADDRESS =
0xDB459C2B4ddaa24359e7977F663EB4F9E6c87260;
address internal constant MANUAL_UPDATER_ADDRESS =
0x8b983A73f1C469b0BbB30790Efd027057718C980;
error UpdaterNotAuthorised(address signer);
IBlastClaimableGas private constant BlastClaimableGas =
IBlastClaimableGas(0x4300000000000000000000000000000000000002);
modifier onlyMainUpdater() {
require(msg.sender == MAIN_UPDATER_ADDRESS);
_;
}
function initialize() public virtual override initializer {
BlastClaimableGas.configureClaimableGas();
}
function claimMyContractsGas() public onlyMainUpdater {
BlastClaimableGas.claimAllGas(address(this), MAIN_UPDATER_ADDRESS);
}
function getDataFeedIds()
public
pure
virtual
override
returns (bytes32[] memory dataFeedIds)
{
dataFeedIds = new bytes32[](2);
dataFeedIds[0] = WEETHETH_ID;
dataFeedIds[1] = EZETHETH_ID;
dataFeedIds[2] = APXETHETH_ID;
}
function requireAuthorisedUpdater(
address updater
) public view virtual override {
if (
updater != MAIN_UPDATER_ADDRESS &&
updater != FALLBACK_UPDATER_ADDRESS &&
updater != MANUAL_UPDATER_ADDRESS &&
updater != GelatoAddress.ADDR &&
updater != OldGelatoAddress.ADDR
) {
// We allow anyone to publish the new price if 40 seconds have passed since the latest update
uint256 lastUpdateBlockTimestamp = getBlockTimestampFromLatestUpdate();
if (getBlockTimestamp() - lastUpdateBlockTimestamp < 40 seconds) {
revert UpdaterNotAuthorised(updater);
}
}
}
function getDataFeedIndex(
bytes32 dataFeedId
) public view virtual override returns (uint256) {
if (dataFeedId == WEETHETH_ID) {
return 0;
} else if (dataFeedId == EZETHETH_ID) {
return 1;
} else if (dataFeedId == APXETHETH_ID) {
return 2;
}
revert DataFeedIdNotFound(dataFeedId);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
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) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
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) {
unchecked {
// 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) {
unchecked {
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) {
unchecked {
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) {
return a + b;
}
/**
* @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 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) {
return a * b;
}
/**
* @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.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
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) {
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) {
unchecked {
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.
*
* 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) {
unchecked {
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) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./RedstoneConstants.sol";
/**
* @title The base contract with the main logic of data extraction from calldata
* @author The Redstone Oracles team
* @dev This contract was created to reuse the same logic in the RedstoneConsumerBase
* and the ProxyConnector contracts
*/
contract CalldataExtractor is RedstoneConstants {
using SafeMath for uint256;
error DataPackageTimestampMustNotBeZero();
error DataPackageTimestampsMustBeEqual();
error RedstonePayloadMustHaveAtLeastOneDataPackage();
function extractTimestampsAndAssertAllAreEqual() public pure returns (uint256 extractedTimestamp) {
uint256 calldataNegativeOffset = _extractByteSizeOfUnsignedMetadata();
uint256 dataPackagesCount = _extractDataPackagesCountFromCalldata(calldataNegativeOffset);
if (dataPackagesCount == 0) {
revert RedstonePayloadMustHaveAtLeastOneDataPackage();
}
calldataNegativeOffset += DATA_PACKAGES_COUNT_BS;
for (uint256 dataPackageIndex = 0; dataPackageIndex < dataPackagesCount; dataPackageIndex++) {
uint256 dataPackageByteSize = _getDataPackageByteSize(calldataNegativeOffset);
// Extracting timestamp for the current data package
uint48 dataPackageTimestamp; // uint48, because timestamp uses 6 bytes
uint256 timestampNegativeOffset = (calldataNegativeOffset + TIMESTAMP_NEGATIVE_OFFSET_IN_DATA_PACKAGE_WITH_STANDARD_SLOT_BS);
uint256 timestampOffset = msg.data.length - timestampNegativeOffset;
assembly {
dataPackageTimestamp := calldataload(timestampOffset)
}
if (dataPackageTimestamp == 0) {
revert DataPackageTimestampMustNotBeZero();
}
if (extractedTimestamp == 0) {
extractedTimestamp = dataPackageTimestamp;
} else if (dataPackageTimestamp != extractedTimestamp) {
revert DataPackageTimestampsMustBeEqual();
}
calldataNegativeOffset += dataPackageByteSize;
}
}
function _getDataPackageByteSize(uint256 calldataNegativeOffset) internal pure returns (uint256) {
(
uint256 dataPointsCount,
uint256 eachDataPointValueByteSize
) = _extractDataPointsDetailsForDataPackage(calldataNegativeOffset);
return
dataPointsCount *
(DATA_POINT_SYMBOL_BS + eachDataPointValueByteSize) +
DATA_PACKAGE_WITHOUT_DATA_POINTS_BS;
}
function _extractByteSizeOfUnsignedMetadata() internal pure returns (uint256) {
// Checking if the calldata ends with the RedStone marker
bool hasValidRedstoneMarker;
assembly {
let calldataLast32Bytes := calldataload(sub(calldatasize(), STANDARD_SLOT_BS))
hasValidRedstoneMarker := eq(
REDSTONE_MARKER_MASK,
and(calldataLast32Bytes, REDSTONE_MARKER_MASK)
)
}
if (!hasValidRedstoneMarker) {
revert CalldataMustHaveValidPayload();
}
// Using uint24, because unsigned metadata byte size number has 3 bytes
uint24 unsignedMetadataByteSize;
if (REDSTONE_MARKER_BS_PLUS_STANDARD_SLOT_BS > msg.data.length) {
revert CalldataOverOrUnderFlow();
}
assembly {
unsignedMetadataByteSize := calldataload(
sub(calldatasize(), REDSTONE_MARKER_BS_PLUS_STANDARD_SLOT_BS)
)
}
uint256 calldataNegativeOffset = unsignedMetadataByteSize
+ UNSIGNED_METADATA_BYTE_SIZE_BS
+ REDSTONE_MARKER_BS;
if (calldataNegativeOffset + DATA_PACKAGES_COUNT_BS > msg.data.length) {
revert IncorrectUnsignedMetadataSize();
}
return calldataNegativeOffset;
}
// We return uint16, because unsigned metadata byte size number has 2 bytes
function _extractDataPackagesCountFromCalldata(uint256 calldataNegativeOffset)
internal
pure
returns (uint16 dataPackagesCount)
{
uint256 calldataNegativeOffsetWithStandardSlot = calldataNegativeOffset + STANDARD_SLOT_BS;
if (calldataNegativeOffsetWithStandardSlot > msg.data.length) {
revert CalldataOverOrUnderFlow();
}
assembly {
dataPackagesCount := calldataload(
sub(calldatasize(), calldataNegativeOffsetWithStandardSlot)
)
}
return dataPackagesCount;
}
function _extractDataPointValueAndDataFeedId(
uint256 calldataNegativeOffsetForDataPackage,
uint256 defaultDataPointValueByteSize,
uint256 dataPointIndex
) internal pure virtual returns (bytes32 dataPointDataFeedId, uint256 dataPointValue) {
uint256 negativeOffsetToDataPoints = calldataNegativeOffsetForDataPackage + DATA_PACKAGE_WITHOUT_DATA_POINTS_BS;
uint256 dataPointNegativeOffset = negativeOffsetToDataPoints.add(
(1 + dataPointIndex).mul((defaultDataPointValueByteSize + DATA_POINT_SYMBOL_BS))
);
uint256 dataPointCalldataOffset = msg.data.length.sub(dataPointNegativeOffset);
assembly {
dataPointDataFeedId := calldataload(dataPointCalldataOffset)
dataPointValue := calldataload(add(dataPointCalldataOffset, DATA_POINT_SYMBOL_BS))
}
}
function _extractDataPointsDetailsForDataPackage(uint256 calldataNegativeOffsetForDataPackage)
internal
pure
returns (uint256 dataPointsCount, uint256 eachDataPointValueByteSize)
{
// Using uint24, because data points count byte size number has 3 bytes
uint24 dataPointsCount_;
// Using uint32, because data point value byte size has 4 bytes
uint32 eachDataPointValueByteSize_;
// Extract data points count
uint256 negativeCalldataOffset = calldataNegativeOffsetForDataPackage + SIG_BS;
uint256 calldataOffset = msg.data.length.sub(negativeCalldataOffset + STANDARD_SLOT_BS);
assembly {
dataPointsCount_ := calldataload(calldataOffset)
}
// Extract each data point value size
calldataOffset = calldataOffset.sub(DATA_POINTS_COUNT_BS);
assembly {
eachDataPointValueByteSize_ := calldataload(calldataOffset)
}
// Prepare returned values
dataPointsCount = dataPointsCount_;
eachDataPointValueByteSize = eachDataPointValueByteSize_;
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
/**
* @title The base contract with helpful constants
* @author The Redstone Oracles team
* @dev It mainly contains redstone-related values, which improve readability
* of other contracts (e.g. CalldataExtractor and RedstoneConsumerBase)
*/
contract RedstoneConstants {
// === Abbreviations ===
// BS - Bytes size
// PTR - Pointer (memory location)
// SIG - Signature
// Solidity and YUL constants
uint256 internal constant STANDARD_SLOT_BS = 32;
uint256 internal constant FREE_MEMORY_PTR = 0x40;
uint256 internal constant BYTES_ARR_LEN_VAR_BS = 32;
uint256 internal constant FUNCTION_SIGNATURE_BS = 4;
uint256 internal constant REVERT_MSG_OFFSET = 68; // Revert message structure described here: https://ethereum.stackexchange.com/a/66173/106364
uint256 internal constant STRING_ERR_MESSAGE_MASK = 0x08c379a000000000000000000000000000000000000000000000000000000000;
// RedStone protocol consts
uint256 internal constant SIG_BS = 65;
uint256 internal constant TIMESTAMP_BS = 6;
uint256 internal constant DATA_PACKAGES_COUNT_BS = 2;
uint256 internal constant DATA_POINTS_COUNT_BS = 3;
uint256 internal constant DATA_POINT_VALUE_BYTE_SIZE_BS = 4;
uint256 internal constant DATA_POINT_SYMBOL_BS = 32;
uint256 internal constant DEFAULT_DATA_POINT_VALUE_BS = 32;
uint256 internal constant UNSIGNED_METADATA_BYTE_SIZE_BS = 3;
uint256 internal constant REDSTONE_MARKER_BS = 9; // byte size of 0x000002ed57011e0000
uint256 internal constant REDSTONE_MARKER_MASK = 0x0000000000000000000000000000000000000000000000000002ed57011e0000;
// Derived values (based on consts)
uint256 internal constant TIMESTAMP_NEGATIVE_OFFSET_IN_DATA_PACKAGE_WITH_STANDARD_SLOT_BS = 104; // SIG_BS + DATA_POINTS_COUNT_BS + DATA_POINT_VALUE_BYTE_SIZE_BS + STANDARD_SLOT_BS
uint256 internal constant DATA_PACKAGE_WITHOUT_DATA_POINTS_BS = 78; // DATA_POINT_VALUE_BYTE_SIZE_BS + TIMESTAMP_BS + DATA_POINTS_COUNT_BS + SIG_BS
uint256 internal constant DATA_PACKAGE_WITHOUT_DATA_POINTS_AND_SIG_BS = 13; // DATA_POINT_VALUE_BYTE_SIZE_BS + TIMESTAMP_BS + DATA_POINTS_COUNT_BS
uint256 internal constant REDSTONE_MARKER_BS_PLUS_STANDARD_SLOT_BS = 41; // REDSTONE_MARKER_BS + STANDARD_SLOT_BS
// Error messages
error CalldataOverOrUnderFlow();
error IncorrectUnsignedMetadataSize();
error InsufficientNumberOfUniqueSigners(uint256 receivedSignersCount, uint256 requiredSignersCount);
error EachSignerMustProvideTheSameValue();
error EmptyCalldataPointersArr();
error InvalidCalldataPointer();
error CalldataMustHaveValidPayload();
error SignerNotAuthorised(address receivedSigner);
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./RedstoneConstants.sol";
import "./RedstoneDefaultsLib.sol";
import "./CalldataExtractor.sol";
import "../libs/BitmapLib.sol";
import "../libs/SignatureLib.sol";
/**
* @title The base contract with the main Redstone logic
* @author The Redstone Oracles team
* @dev Do not use this contract directly in consumer contracts, take a
* look at `RedstoneConsumerNumericBase` and `RedstoneConsumerBytesBase` instead
*/
abstract contract RedstoneConsumerBase is CalldataExtractor {
using SafeMath for uint256;
error GetDataServiceIdNotImplemented();
/* ========== VIRTUAL FUNCTIONS (MAY BE OVERRIDDEN IN CHILD CONTRACTS) ========== */
/**
* @dev This function must be implemented by the child consumer contract.
* It should return dataServiceId which DataServiceWrapper will use if not provided explicitly .
* If not overridden, value will always have to be provided explicitly in DataServiceWrapper.
* @return dataServiceId being consumed by contract
*/
function getDataServiceId() public view virtual returns (string memory) {
revert GetDataServiceIdNotImplemented();
}
/**
* @dev This function must be implemented by the child consumer contract.
* It should return a unique index for a given signer address if the signer
* is authorised, otherwise it should revert
* @param receivedSigner The address of a signer, recovered from ECDSA signature
* @return Unique index for a signer in the range [0..255]
*/
function getAuthorisedSignerIndex(address receivedSigner) public view virtual returns (uint8);
/**
* @dev This function may be overridden by the child consumer contract.
* It should validate the timestamp against the current time (block.timestamp)
* It should revert with a helpful message if the timestamp is not valid
* @param receivedTimestampMilliseconds Timestamp extracted from calldata
*/
function validateTimestamp(uint256 receivedTimestampMilliseconds) public view virtual {
RedstoneDefaultsLib.validateTimestamp(receivedTimestampMilliseconds);
}
/**
* @dev This function should be overridden by the child consumer contract.
* @return The minimum required value of unique authorised signers
*/
function getUniqueSignersThreshold() public view virtual returns (uint8) {
return 1;
}
/**
* @dev This function may be overridden by the child consumer contract.
* It should aggregate values from different signers to a single uint value.
* By default, it calculates the median value
* @param values An array of uint256 values from different signers
* @return Result of the aggregation in the form of a single number
*/
function aggregateValues(uint256[] memory values) public view virtual returns (uint256) {
return RedstoneDefaultsLib.aggregateValues(values);
}
/* ========== FUNCTIONS WITH IMPLEMENTATION (CAN NOT BE OVERRIDDEN) ========== */
/**
* @dev This is an internal helpful function for secure extraction oracle values
* from the tx calldata. Security is achieved by signatures verification, timestamp
* validation, and aggregating values from different authorised signers into a
* single numeric value. If any of the required conditions (e.g. too old timestamp or
* insufficient number of authorised signers) do not match, the function will revert.
*
* Note! You should not call this function in a consumer contract. You can use
* `getOracleNumericValuesFromTxMsg` or `getOracleNumericValueFromTxMsg` instead.
*
* @param dataFeedIds An array of unique data feed identifiers
* @return An array of the extracted and verified oracle values in the same order
* as they are requested in dataFeedIds array
*/
function _securelyExtractOracleValuesFromTxMsg(bytes32[] memory dataFeedIds)
internal
view
returns (uint256[] memory)
{
// Initializing helpful variables and allocating memory
uint256[] memory uniqueSignerCountForDataFeedIds = new uint256[](dataFeedIds.length);
uint256[] memory signersBitmapForDataFeedIds = new uint256[](dataFeedIds.length);
uint256[][] memory valuesForDataFeeds = new uint256[][](dataFeedIds.length);
for (uint256 i = 0; i < dataFeedIds.length; i++) {
// The line below is commented because newly allocated arrays are filled with zeros
// But we left it for better readability
// signersBitmapForDataFeedIds[i] = 0; // <- setting to an empty bitmap
valuesForDataFeeds[i] = new uint256[](getUniqueSignersThreshold());
}
// Extracting the number of data packages from calldata
uint256 calldataNegativeOffset = _extractByteSizeOfUnsignedMetadata();
uint256 dataPackagesCount = _extractDataPackagesCountFromCalldata(calldataNegativeOffset);
calldataNegativeOffset += DATA_PACKAGES_COUNT_BS;
// Saving current free memory pointer
uint256 freeMemPtr;
assembly {
freeMemPtr := mload(FREE_MEMORY_PTR)
}
// Data packages extraction in a loop
for (uint256 dataPackageIndex = 0; dataPackageIndex < dataPackagesCount; dataPackageIndex++) {
// Extract data package details and update calldata offset
uint256 dataPackageByteSize = _extractDataPackage(
dataFeedIds,
uniqueSignerCountForDataFeedIds,
signersBitmapForDataFeedIds,
valuesForDataFeeds,
calldataNegativeOffset
);
calldataNegativeOffset += dataPackageByteSize;
// Shifting memory pointer back to the "safe" value
assembly {
mstore(FREE_MEMORY_PTR, freeMemPtr)
}
}
// Validating numbers of unique signers and calculating aggregated values for each dataFeedId
return _getAggregatedValues(valuesForDataFeeds, uniqueSignerCountForDataFeedIds);
}
/**
* @dev This is a private helpful function, which extracts data for a data package based
* on the given negative calldata offset, verifies them, and in the case of successful
* verification updates the corresponding data package values in memory
*
* @param dataFeedIds an array of unique data feed identifiers
* @param uniqueSignerCountForDataFeedIds an array with the numbers of unique signers
* for each data feed
* @param signersBitmapForDataFeedIds an array of signer bitmaps for data feeds
* @param valuesForDataFeeds 2-dimensional array, valuesForDataFeeds[i][j] contains
* j-th value for the i-th data feed
* @param calldataNegativeOffset negative calldata offset for the given data package
*
* @return An array of the aggregated values
*/
function _extractDataPackage(
bytes32[] memory dataFeedIds,
uint256[] memory uniqueSignerCountForDataFeedIds,
uint256[] memory signersBitmapForDataFeedIds,
uint256[][] memory valuesForDataFeeds,
uint256 calldataNegativeOffset
) private view returns (uint256) {
uint256 signerIndex;
(
uint256 dataPointsCount,
uint256 eachDataPointValueByteSize
) = _extractDataPointsDetailsForDataPackage(calldataNegativeOffset);
// We use scopes to resolve problem with too deep stack
{
uint48 extractedTimestamp;
address signerAddress;
bytes32 signedHash;
bytes memory signedMessage;
uint256 signedMessageBytesCount;
signedMessageBytesCount = dataPointsCount.mul(eachDataPointValueByteSize + DATA_POINT_SYMBOL_BS)
+ DATA_PACKAGE_WITHOUT_DATA_POINTS_AND_SIG_BS; //DATA_POINT_VALUE_BYTE_SIZE_BS + TIMESTAMP_BS + DATA_POINTS_COUNT_BS
uint256 timestampCalldataOffset = msg.data.length.sub(
calldataNegativeOffset + TIMESTAMP_NEGATIVE_OFFSET_IN_DATA_PACKAGE_WITH_STANDARD_SLOT_BS);
uint256 signedMessageCalldataOffset = msg.data.length.sub(
calldataNegativeOffset + SIG_BS + signedMessageBytesCount);
assembly {
// Extracting the signed message
signedMessage := extractBytesFromCalldata(
signedMessageCalldataOffset,
signedMessageBytesCount
)
// Hashing the signed message
signedHash := keccak256(add(signedMessage, BYTES_ARR_LEN_VAR_BS), signedMessageBytesCount)
// Extracting timestamp
extractedTimestamp := calldataload(timestampCalldataOffset)
function initByteArray(bytesCount) -> ptr {
ptr := mload(FREE_MEMORY_PTR)
mstore(ptr, bytesCount)
ptr := add(ptr, BYTES_ARR_LEN_VAR_BS)
mstore(FREE_MEMORY_PTR, add(ptr, bytesCount))
}
function extractBytesFromCalldata(offset, bytesCount) -> extractedBytes {
let extractedBytesStartPtr := initByteArray(bytesCount)
calldatacopy(
extractedBytesStartPtr,
offset,
bytesCount
)
extractedBytes := sub(extractedBytesStartPtr, BYTES_ARR_LEN_VAR_BS)
}
}
// Validating timestamp
validateTimestamp(extractedTimestamp);
// Verifying the off-chain signature against on-chain hashed data
signerAddress = SignatureLib.recoverSignerAddress(
signedHash,
calldataNegativeOffset + SIG_BS
);
signerIndex = getAuthorisedSignerIndex(signerAddress);
}
// Updating helpful arrays
{
bytes32 dataPointDataFeedId;
uint256 dataPointValue;
for (uint256 dataPointIndex = 0; dataPointIndex < dataPointsCount; dataPointIndex++) {
// Extracting data feed id and value for the current data point
(dataPointDataFeedId, dataPointValue) = _extractDataPointValueAndDataFeedId(
calldataNegativeOffset,
eachDataPointValueByteSize,
dataPointIndex
);
for (
uint256 dataFeedIdIndex = 0;
dataFeedIdIndex < dataFeedIds.length;
dataFeedIdIndex++
) {
if (dataPointDataFeedId == dataFeedIds[dataFeedIdIndex]) {
uint256 bitmapSignersForDataFeedId = signersBitmapForDataFeedIds[dataFeedIdIndex];
if (
!BitmapLib.getBitFromBitmap(bitmapSignersForDataFeedId, signerIndex) && /* current signer was not counted for current dataFeedId */
uniqueSignerCountForDataFeedIds[dataFeedIdIndex] < getUniqueSignersThreshold()
) {
// Increase unique signer counter
uniqueSignerCountForDataFeedIds[dataFeedIdIndex]++;
// Add new value
valuesForDataFeeds[dataFeedIdIndex][
uniqueSignerCountForDataFeedIds[dataFeedIdIndex] - 1
] = dataPointValue;
// Update signers bitmap
signersBitmapForDataFeedIds[dataFeedIdIndex] = BitmapLib.setBitInBitmap(
bitmapSignersForDataFeedId,
signerIndex
);
}
// Breaking, as there couldn't be several indexes for the same feed ID
break;
}
}
}
}
// Return total data package byte size
return
DATA_PACKAGE_WITHOUT_DATA_POINTS_BS +
(eachDataPointValueByteSize + DATA_POINT_SYMBOL_BS) *
dataPointsCount;
}
/**
* @dev This is a private helpful function, which aggregates values from different
* authorised signers for the given arrays of values for each data feed
*
* @param valuesForDataFeeds 2-dimensional array, valuesForDataFeeds[i][j] contains
* j-th value for the i-th data feed
* @param uniqueSignerCountForDataFeedIds an array with the numbers of unique signers
* for each data feed
*
* @return An array of the aggregated values
*/
function _getAggregatedValues(
uint256[][] memory valuesForDataFeeds,
uint256[] memory uniqueSignerCountForDataFeedIds
) private view returns (uint256[] memory) {
uint256[] memory aggregatedValues = new uint256[](valuesForDataFeeds.length);
uint256 uniqueSignersThreshold = getUniqueSignersThreshold();
for (uint256 dataFeedIndex = 0; dataFeedIndex < valuesForDataFeeds.length; dataFeedIndex++) {
if (uniqueSignerCountForDataFeedIds[dataFeedIndex] < uniqueSignersThreshold) {
revert InsufficientNumberOfUniqueSigners(
uniqueSignerCountForDataFeedIds[dataFeedIndex],
uniqueSignersThreshold);
}
uint256 aggregatedValueForDataFeedId = aggregateValues(valuesForDataFeeds[dataFeedIndex]);
aggregatedValues[dataFeedIndex] = aggregatedValueForDataFeedId;
}
return aggregatedValues;
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
import "./RedstoneConsumerBase.sol";
/**
* @title The base contract for Redstone consumers' contracts that allows to
* securely calculate numeric redstone oracle values
* @author The Redstone Oracles team
* @dev This contract can extend other contracts to allow them
* securely fetch Redstone oracle data from transactions calldata
*/
abstract contract RedstoneConsumerNumericBase is RedstoneConsumerBase {
/**
* @dev This function can be used in a consumer contract to securely extract an
* oracle value for a given data feed id. Security is achieved by
* signatures verification, timestamp validation, and aggregating values
* from different authorised signers into a single numeric value. If any of the
* required conditions do not match, the function will revert.
* Note! This function expects that tx calldata contains redstone payload in the end
* Learn more about redstone payload here: https://github.com/redstone-finance/redstone-oracles-monorepo/tree/main/packages/evm-connector#readme
* @param dataFeedId bytes32 value that uniquely identifies the data feed
* @return Extracted and verified numeric oracle value for the given data feed id
*/
function getOracleNumericValueFromTxMsg(bytes32 dataFeedId)
internal
view
virtual
returns (uint256)
{
bytes32[] memory dataFeedIds = new bytes32[](1);
dataFeedIds[0] = dataFeedId;
return getOracleNumericValuesFromTxMsg(dataFeedIds)[0];
}
/**
* @dev This function can be used in a consumer contract to securely extract several
* numeric oracle values for a given array of data feed ids. Security is achieved by
* signatures verification, timestamp validation, and aggregating values
* from different authorised signers into a single numeric value. If any of the
* required conditions do not match, the function will revert.
* Note! This function expects that tx calldata contains redstone payload in the end
* Learn more about redstone payload here: https://github.com/redstone-finance/redstone-oracles-monorepo/tree/main/packages/evm-connector#readme
* @param dataFeedIds An array of unique data feed identifiers
* @return An array of the extracted and verified oracle values in the same order
* as they are requested in the dataFeedIds array
*/
function getOracleNumericValuesFromTxMsg(bytes32[] memory dataFeedIds)
internal
view
virtual
returns (uint256[] memory)
{
return _securelyExtractOracleValuesFromTxMsg(dataFeedIds);
}
/**
* @dev This function works similarly to the `getOracleNumericValuesFromTxMsg` with the
* only difference that it allows to request oracle data for an array of data feeds
* that may contain duplicates
*
* @param dataFeedIdsWithDuplicates An array of data feed identifiers (duplicates are allowed)
* @return An array of the extracted and verified oracle values in the same order
* as they are requested in the dataFeedIdsWithDuplicates array
*/
function getOracleNumericValuesWithDuplicatesFromTxMsg(bytes32[] memory dataFeedIdsWithDuplicates) internal view returns (uint256[] memory) {
// Building an array without duplicates
bytes32[] memory dataFeedIdsWithoutDuplicates = new bytes32[](dataFeedIdsWithDuplicates.length);
bool alreadyIncluded;
uint256 uniqueDataFeedIdsCount = 0;
for (uint256 indexWithDup = 0; indexWithDup < dataFeedIdsWithDuplicates.length; indexWithDup++) {
// Checking if current element is already included in `dataFeedIdsWithoutDuplicates`
alreadyIncluded = false;
for (uint256 indexWithoutDup = 0; indexWithoutDup < uniqueDataFeedIdsCount; indexWithoutDup++) {
if (dataFeedIdsWithoutDuplicates[indexWithoutDup] == dataFeedIdsWithDuplicates[indexWithDup]) {
alreadyIncluded = true;
break;
}
}
// Adding if not included
if (!alreadyIncluded) {
dataFeedIdsWithoutDuplicates[uniqueDataFeedIdsCount] = dataFeedIdsWithDuplicates[indexWithDup];
uniqueDataFeedIdsCount++;
}
}
// Overriding dataFeedIdsWithoutDuplicates.length
// Equivalent to: dataFeedIdsWithoutDuplicates.length = uniqueDataFeedIdsCount;
assembly {
mstore(dataFeedIdsWithoutDuplicates, uniqueDataFeedIdsCount)
}
// Requesting oracle values (without duplicates)
uint256[] memory valuesWithoutDuplicates = getOracleNumericValuesFromTxMsg(dataFeedIdsWithoutDuplicates);
// Preparing result values array
uint256[] memory valuesWithDuplicates = new uint256[](dataFeedIdsWithDuplicates.length);
for (uint256 indexWithDup = 0; indexWithDup < dataFeedIdsWithDuplicates.length; indexWithDup++) {
for (uint256 indexWithoutDup = 0; indexWithoutDup < dataFeedIdsWithoutDuplicates.length; indexWithoutDup++) {
if (dataFeedIdsWithDuplicates[indexWithDup] == dataFeedIdsWithoutDuplicates[indexWithoutDup]) {
valuesWithDuplicates[indexWithDup] = valuesWithoutDuplicates[indexWithoutDup];
break;
}
}
}
return valuesWithDuplicates;
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
import "../libs/NumericArrayLib.sol";
/**
* @title Default implementations of virtual redstone consumer base functions
* @author The Redstone Oracles team
*/
library RedstoneDefaultsLib {
uint256 constant DEFAULT_MAX_DATA_TIMESTAMP_DELAY_SECONDS = 3 minutes;
uint256 constant DEFAULT_MAX_DATA_TIMESTAMP_AHEAD_SECONDS = 1 minutes;
error TimestampFromTooLongFuture(uint256 receivedTimestampSeconds, uint256 blockTimestamp);
error TimestampIsTooOld(uint256 receivedTimestampSeconds, uint256 blockTimestamp);
function validateTimestamp(uint256 receivedTimestampMilliseconds) internal view {
// Getting data timestamp from future seems quite unlikely
// But we've already spent too much time with different cases
// Where block.timestamp was less than dataPackage.timestamp.
// Some blockchains may case this problem as well.
// That's why we add MAX_BLOCK_TIMESTAMP_DELAY
// and allow data "from future" but with a small delay
uint256 receivedTimestampSeconds = receivedTimestampMilliseconds / 1000;
if (block.timestamp < receivedTimestampSeconds) {
if ((receivedTimestampSeconds - block.timestamp) > DEFAULT_MAX_DATA_TIMESTAMP_AHEAD_SECONDS) {
revert TimestampFromTooLongFuture(receivedTimestampSeconds, block.timestamp);
}
} else if ((block.timestamp - receivedTimestampSeconds) > DEFAULT_MAX_DATA_TIMESTAMP_DELAY_SECONDS) {
revert TimestampIsTooOld(receivedTimestampSeconds, block.timestamp);
}
}
function aggregateValues(uint256[] memory values) internal pure returns (uint256) {
return NumericArrayLib.pickMedian(values);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
library BitmapLib {
function setBitInBitmap(uint256 bitmap, uint256 bitIndex) internal pure returns (uint256) {
return bitmap | (1 << bitIndex);
}
function getBitFromBitmap(uint256 bitmap, uint256 bitIndex) internal pure returns (bool) {
uint256 bitAtIndex = bitmap & (1 << bitIndex);
return bitAtIndex > 0;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
library NumericArrayLib {
// This function sort array in memory using bubble sort algorithm,
// which performs even better than quick sort for small arrays
uint256 constant BYTES_ARR_LEN_VAR_BS = 32;
uint256 constant UINT256_VALUE_BS = 32;
error CanNotPickMedianOfEmptyArray();
// This function modifies the array
function pickMedian(uint256[] memory arr) internal pure returns (uint256) {
if (arr.length == 0) {
revert CanNotPickMedianOfEmptyArray();
}
sort(arr);
uint256 middleIndex = arr.length / 2;
if (arr.length % 2 == 0) {
uint256 sum = SafeMath.add(arr[middleIndex - 1], arr[middleIndex]);
return sum / 2;
} else {
return arr[middleIndex];
}
}
function sort(uint256[] memory arr) internal pure {
assembly {
let arrLength := mload(arr)
let valuesPtr := add(arr, BYTES_ARR_LEN_VAR_BS)
let endPtr := add(valuesPtr, mul(arrLength, UINT256_VALUE_BS))
for {
let arrIPtr := valuesPtr
} lt(arrIPtr, endPtr) {
arrIPtr := add(arrIPtr, UINT256_VALUE_BS) // arrIPtr += 32
} {
for {
let arrJPtr := valuesPtr
} lt(arrJPtr, arrIPtr) {
arrJPtr := add(arrJPtr, UINT256_VALUE_BS) // arrJPtr += 32
} {
let arrI := mload(arrIPtr)
let arrJ := mload(arrJPtr)
if lt(arrI, arrJ) {
mstore(arrIPtr, arrJ)
mstore(arrJPtr, arrI)
}
}
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
library SignatureLib {
uint256 constant ECDSA_SIG_R_BS = 32;
uint256 constant ECDSA_SIG_S_BS = 32;
function recoverSignerAddress(bytes32 signedHash, uint256 signatureCalldataNegativeOffset)
internal
pure
returns (address)
{
bytes32 r;
bytes32 s;
uint8 v;
assembly {
let signatureCalldataStartPos := sub(calldatasize(), signatureCalldataNegativeOffset)
r := calldataload(signatureCalldataStartPos)
signatureCalldataStartPos := add(signatureCalldataStartPos, ECDSA_SIG_R_BS)
s := calldataload(signatureCalldataStartPos)
signatureCalldataStartPos := add(signatureCalldataStartPos, ECDSA_SIG_S_BS)
v := byte(0, calldataload(signatureCalldataStartPos)) // last byte of the signature memory array
}
return ecrecover(signedHash, v, r, s);
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.14;
/**
* @title Interface of RedStone adapter
* @author The Redstone Oracles team
*/
interface IRedstoneAdapter {
/**
* @notice Updates values of all data feeds supported by the Adapter contract
* @dev This function requires an attached redstone payload to the transaction calldata.
* It also requires each data package to have exactly the same timestamp
* @param dataPackagesTimestamp Timestamp of each signed data package in the redstone payload
*/
function updateDataFeedsValues(uint256 dataPackagesTimestamp) external;
/**
* @notice Returns the latest properly reported value of the data feed
* @param dataFeedId The identifier of the requested data feed
* @return value The latest value of the given data feed
*/
function getValueForDataFeed(bytes32 dataFeedId) external view returns (uint256);
/**
* @notice Returns the latest properly reported values for several data feeds
* @param requestedDataFeedIds The array of identifiers for the requested feeds
* @return values Values of the requested data feeds in the corresponding order
*/
function getValuesForDataFeeds(bytes32[] memory requestedDataFeedIds) external view returns (uint256[] memory);
/**
* @notice Returns data timestamp from the latest update
* @dev It's virtual, because its implementation can sometimes be different
* (e.g. SinglePriceFeedAdapterWithClearing)
* @return lastDataTimestamp Timestamp of the latest reported data packages
*/
function getDataTimestampFromLatestUpdate() external view returns (uint256 lastDataTimestamp);
/**
* @notice Returns block timestamp of the latest successful update
* @return blockTimestamp The block timestamp of the latest successful update
*/
function getBlockTimestampFromLatestUpdate() external view returns (uint256 blockTimestamp);
/**
* @notice Returns timestamps of the latest successful update
* @return dataTimestamp timestamp (usually in milliseconds) from the signed data packages
* @return blockTimestamp timestamp of the block when the update has happened
*/
function getTimestampsFromLatestUpdate() external view returns (uint128 dataTimestamp, uint128 blockTimestamp);
/**
* @notice Returns identifiers of all data feeds supported by the Adapter contract
* @return An array of data feed identifiers
*/
function getDataFeedIds() external view returns (bytes32[] memory);
/**
* @notice Returns the unique index of the given data feed
* @param dataFeedId The data feed identifier
* @return index The index of the data feed
*/
function getDataFeedIndex(bytes32 dataFeedId) external view returns (uint256);
/**
* @notice Returns minimal required interval (usually in seconds) between subsequent updates
* @return interval The required interval between updates
*/
function getMinIntervalBetweenUpdates() external view returns (uint256);
/**
* @notice Reverts if the proposed timestamp of data packages it too old or too new
* comparing to the block.timestamp. It also ensures that the proposed timestamp is newer
* Then the one from the previous update
* @param dataPackagesTimestamp The proposed timestamp (usually in milliseconds)
*/
function validateProposedDataPackagesTimestamp(uint256 dataPackagesTimestamp) external view;
/**
* @notice Reverts if the updater is not authorised
* @dev This function should revert if msg.sender is not allowed to update data feed values
* @param updater The address of the proposed updater
*/
function requireAuthorisedUpdater(address updater) external view;
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.14;
import {RedstoneConsumerNumericBase, RedstoneDefaultsLib} from "@redstone-finance/evm-connector/contracts/core/RedstoneConsumerNumericBase.sol";
import {IRedstoneAdapter} from "./IRedstoneAdapter.sol";
/**
* @title Core logic of Redstone Adapter Contract
* @author The Redstone Oracles team
* @dev This contract is used to repeatedly push Redstone data to blockchain storage
* More details here: https://docs.redstone.finance/docs/smart-contract-devs/get-started/redstone-classic
*
* Key details about the contract:
* - Values for data feeds can be updated using the `updateDataFeedsValues` function
* - All data feeds must be updated within a single call, partial updates are not allowed
* - There is a configurable minimum interval between updates
* - Updaters can be restricted by overriding `requireAuthorisedUpdater` function
* - The contract is designed to force values validation, by default it prevents returning zero values
* - All data packages in redstone payload must have the same timestamp,
* equal to `dataPackagesTimestamp` argument of the `updateDataFeedsValues` function
* - Block timestamp abstraction - even though we call it blockTimestamp in many places,
* it's possible to have a custom logic here, e.g. use block number instead of a timestamp
*/
abstract contract RedstoneAdapterBase is RedstoneConsumerNumericBase, IRedstoneAdapter {
// We don't use storage variables to avoid potential problems with upgradable contracts
bytes32 internal constant LATEST_UPDATE_TIMESTAMPS_STORAGE_LOCATION = 0x3d01e4d77237ea0f771f1786da4d4ff757fcba6a92933aa53b1dcef2d6bd6fe2; // keccak256("RedStone.lastUpdateTimestamp");
uint256 internal constant MIN_INTERVAL_BETWEEN_UPDATES = 3 seconds;
uint256 internal constant BITS_COUNT_IN_16_BYTES = 128;
uint256 internal constant MAX_NUMBER_FOR_128_BITS = 0x00000000000000000000000000000000ffffffffffffffffffffffffffffffff;
error DataTimestampShouldBeNewerThanBefore(
uint256 receivedDataTimestampMilliseconds,
uint256 lastDataTimestampMilliseconds
);
error MinIntervalBetweenUpdatesHasNotPassedYet(
uint256 currentBlockTimestamp,
uint256 lastUpdateTimestamp,
uint256 minIntervalBetweenUpdates
);
error DataPackageTimestampMismatch(uint256 expectedDataTimestamp, uint256 dataPackageTimestamp);
error DataFeedValueCannotBeZero(bytes32 dataFeedId);
error DataFeedIdNotFound(bytes32 dataFeedId);
error DataTimestampIsTooBig(uint256 dataTimestamp);
error BlockTimestampIsTooBig(uint256 blockTimestamp);
/**
* @notice Reverts if the updater is not authorised
* @dev This function should revert if msg.sender is not allowed to update data feed values
* @param updater The address of the proposed updater
*/
function requireAuthorisedUpdater(address updater) public view virtual {
// By default, anyone can update data feed values, but it can be overridden
}
/**
* @notice Returns identifiers of all data feeds supported by the Adapter contract
* @dev this function must be implemented in derived contracts
* @return An array of data feed identifiers
*/
function getDataFeedIds() public view virtual returns (bytes32[] memory);
/**
* @notice Returns the unique index of the given data feed
* @dev This function can (and should) be overriden to reduce gas
* costs of other functions
* @param dataFeedId The data feed identifier
* @return index The index of the data feed
*/
function getDataFeedIndex(bytes32 dataFeedId) public view virtual returns (uint256) {
bytes32[] memory dataFeedIds = getDataFeedIds();
for (uint256 i = 0; i < dataFeedIds.length;) {
if (dataFeedIds[i] == dataFeedId) {
return i;
}
unchecked { i++; } // reduces gas costs
}
revert DataFeedIdNotFound(dataFeedId);
}
/**
* @notice Updates values of all data feeds supported by the Adapter contract
* @dev This function requires an attached redstone payload to the transaction calldata.
* It also requires each data package to have exactly the same timestamp
* @param dataPackagesTimestamp Timestamp of each signed data package in the redstone payload
*/
function updateDataFeedsValues(uint256 dataPackagesTimestamp) public virtual {
requireAuthorisedUpdater(msg.sender);
_assertMinIntervalBetweenUpdatesPassed();
validateProposedDataPackagesTimestamp(dataPackagesTimestamp);
_saveTimestampsOfCurrentUpdate(dataPackagesTimestamp);
bytes32[] memory dataFeedsIdsArray = getDataFeedIds();
// It will trigger timestamp validation for each data package
uint256[] memory oracleValues = getOracleNumericValuesFromTxMsg(dataFeedsIdsArray);
_validateAndUpdateDataFeedsValues(dataFeedsIdsArray, oracleValues);
}
/**
* @dev Note! This function is not called directly, it's called for each data package .
* in redstone payload and just verifies if each data package has the same timestamp
* as the one that was saved in the storage
* @param receivedTimestampMilliseconds Timestamp from a data package
*/
function validateTimestamp(uint256 receivedTimestampMilliseconds) public view virtual override {
// It means that we are in the special view context and we can skip validation of the
// timestamp. It can be useful for calling view functions, as they can not modify the contract
// state to pass the timestamp validation below
if (msg.sender == address(0)) {
return;
}
uint256 expectedDataPackageTimestamp = getDataTimestampFromLatestUpdate();
if (receivedTimestampMilliseconds != expectedDataPackageTimestamp) {
revert DataPackageTimestampMismatch(
expectedDataPackageTimestamp,
receivedTimestampMilliseconds
);
}
}
/**
* @dev This function should be implemented by the actual contract
* and should contain the logic of values validation and reporting.
* Usually, values reporting is based on saving them to the contract storage,
* e.g. in PriceFeedsAdapter, but some custom implementations (e.g. GMX keeper adapter
* or Mento Sorted Oracles adapter) may handle values updating in a different way
* @param dataFeedIdsArray Array of the data feeds identifiers (it will always be all data feed ids)
* @param values The reported values that should be validated and reported
*/
function _validateAndUpdateDataFeedsValues(bytes32[] memory dataFeedIdsArray, uint256[] memory values) internal virtual;
/**
* @dev This function reverts if not enough time passed since the latest update
*/
function _assertMinIntervalBetweenUpdatesPassed() private view {
uint256 currentBlockTimestamp = getBlockTimestamp();
uint256 blockTimestampFromLatestUpdate = getBlockTimestampFromLatestUpdate();
uint256 minIntervalBetweenUpdates = getMinIntervalBetweenUpdates();
if (currentBlockTimestamp < blockTimestampFromLatestUpdate + minIntervalBetweenUpdates) {
revert MinIntervalBetweenUpdatesHasNotPassedYet(
currentBlockTimestamp,
blockTimestampFromLatestUpdate,
minIntervalBetweenUpdates
);
}
}
/**
* @notice Returns minimal required interval (usually in seconds) between subsequent updates
* @dev You can override this function to change the required interval between udpates.
* Please do not set it to 0, as it may open many attack vectors
* @return interval The required interval between updates
*/
function getMinIntervalBetweenUpdates() public view virtual returns (uint256) {
return MIN_INTERVAL_BETWEEN_UPDATES;
}
/**
* @notice Reverts if the proposed timestamp of data packages it too old or too new
* comparing to the block.timestamp. It also ensures that the proposed timestamp is newer
* Then the one from the previous update
* @param dataPackagesTimestamp The proposed timestamp (usually in milliseconds)
*/
function validateProposedDataPackagesTimestamp(uint256 dataPackagesTimestamp) public view {
_preventUpdateWithOlderDataPackages(dataPackagesTimestamp);
validateDataPackagesTimestampOnce(dataPackagesTimestamp);
}
/**
* @notice Reverts if the proposed timestamp of data packages it too old or too new
* comparing to the current block timestamp
* @param dataPackagesTimestamp The proposed timestamp (usually in milliseconds)
*/
function validateDataPackagesTimestampOnce(uint256 dataPackagesTimestamp) public view virtual {
uint256 receivedTimestampSeconds = dataPackagesTimestamp / 1000;
(uint256 maxDataAheadSeconds, uint256 maxDataDelaySeconds) = getAllowedTimestampDiffsInSeconds();
uint256 blockTimestamp = getBlockTimestamp();
if (blockTimestamp < receivedTimestampSeconds) {
if ((receivedTimestampSeconds - blockTimestamp) > maxDataAheadSeconds) {
revert RedstoneDefaultsLib.TimestampFromTooLongFuture(receivedTimestampSeconds, blockTimestamp);
}
} else if ((blockTimestamp - receivedTimestampSeconds) > maxDataDelaySeconds) {
revert RedstoneDefaultsLib.TimestampIsTooOld(receivedTimestampSeconds, blockTimestamp);
}
}
/**
* @dev This function can be overriden, e.g. to use block.number instead of block.timestamp
* It can be useful in some L2 chains, as sometimes their different blocks can have the same timestamp
* @return timestamp Timestamp or Block number or any other number that can identify time in the context
* of the given blockchain
*/
function getBlockTimestamp() public view virtual returns (uint256) {
return block.timestamp;
}
/**
* @dev Helpful function for getting values for timestamp validation
* @return maxDataAheadSeconds Max allowed number of seconds ahead of block.timrstamp
* @return maxDataDelaySeconds Max allowed number of seconds for data delay
*/
function getAllowedTimestampDiffsInSeconds() public view virtual returns (uint256 maxDataAheadSeconds, uint256 maxDataDelaySeconds) {
maxDataAheadSeconds = RedstoneDefaultsLib.DEFAULT_MAX_DATA_TIMESTAMP_AHEAD_SECONDS;
maxDataDelaySeconds = RedstoneDefaultsLib.DEFAULT_MAX_DATA_TIMESTAMP_DELAY_SECONDS;
}
/**
* @dev Reverts if proposed data packages are not newer than the ones used previously
* @param dataPackagesTimestamp Timestamp od the data packages (usually in milliseconds)
*/
function _preventUpdateWithOlderDataPackages(uint256 dataPackagesTimestamp) internal view {
uint256 dataTimestampFromLatestUpdate = getDataTimestampFromLatestUpdate();
if (dataPackagesTimestamp <= dataTimestampFromLatestUpdate) {
revert DataTimestampShouldBeNewerThanBefore(
dataPackagesTimestamp,
dataTimestampFromLatestUpdate
);
}
}
/**
* @notice Returns data timestamp from the latest update
* @dev It's virtual, because its implementation can sometimes be different
* (e.g. SinglePriceFeedAdapterWithClearing)
* @return lastDataTimestamp Timestamp of the latest reported data packages
*/
function getDataTimestampFromLatestUpdate() public view virtual returns (uint256 lastDataTimestamp) {
(lastDataTimestamp, ) = getTimestampsFromLatestUpdate();
}
/**
* @notice Returns block timestamp of the latest successful update
* @return blockTimestamp The block timestamp of the latest successful update
*/
function getBlockTimestampFromLatestUpdate() public view returns (uint256 blockTimestamp) {
(, blockTimestamp) = getTimestampsFromLatestUpdate();
}
/**
* @dev Returns 2 timestamps packed into a single uint256 number
* @return packedTimestamps a single uin256 number with 2 timestamps
*/
function getPackedTimestampsFromLatestUpdate() public view returns (uint256 packedTimestamps) {
assembly {
packedTimestamps := sload(LATEST_UPDATE_TIMESTAMPS_STORAGE_LOCATION)
}
}
/**
* @notice Returns timestamps of the latest successful update
* @return dataTimestamp timestamp (usually in milliseconds) from the signed data packages
* @return blockTimestamp timestamp of the block when the update has happened
*/
function getTimestampsFromLatestUpdate() public view virtual returns (uint128 dataTimestamp, uint128 blockTimestamp) {
return _unpackTimestamps(getPackedTimestampsFromLatestUpdate());
}
/**
* @dev A helpful function to unpack 2 timestamps from one uin256 number
* @param packedTimestamps a single uin256 number
* @return dataTimestamp fetched from left 128 bits
* @return blockTimestamp fetched from right 128 bits
*/
function _unpackTimestamps(uint256 packedTimestamps) internal pure returns (uint128 dataTimestamp, uint128 blockTimestamp) {
dataTimestamp = uint128(packedTimestamps >> 128); // left 128 bits
blockTimestamp = uint128(packedTimestamps); // right 128 bits
}
/**
* @dev Logic of saving timestamps of the current update
* By default, it stores packed timestamps in one storage slot (32 bytes)
* to minimise gas costs
* But it can be overriden (e.g. in SinglePriceFeedAdapter)
* @param dataPackagesTimestamp .
*/
function _saveTimestampsOfCurrentUpdate(uint256 dataPackagesTimestamp) internal virtual {
uint256 blockTimestamp = getBlockTimestamp();
if (blockTimestamp > MAX_NUMBER_FOR_128_BITS) {
revert BlockTimestampIsTooBig(blockTimestamp);
}
if (dataPackagesTimestamp > MAX_NUMBER_FOR_128_BITS) {
revert DataTimestampIsTooBig(dataPackagesTimestamp);
}
assembly {
let timestamps := or(shl(BITS_COUNT_IN_16_BYTES, dataPackagesTimestamp), blockTimestamp)
sstore(LATEST_UPDATE_TIMESTAMPS_STORAGE_LOCATION, timestamps)
}
}
/**
* @notice Returns the latest properly reported value of the data feed
* @param dataFeedId The identifier of the requested data feed
* @return value The latest value of the given data feed
*/
function getValueForDataFeed(bytes32 dataFeedId) public view returns (uint256) {
getDataFeedIndex(dataFeedId); // will revert if data feed id is not supported
// "unsafe" here means "without validation"
uint256 valueForDataFeed = getValueForDataFeedUnsafe(dataFeedId);
validateDataFeedValueOnRead(dataFeedId, valueForDataFeed);
return valueForDataFeed;
}
/**
* @notice Returns the latest properly reported values for several data feeds
* @param dataFeedIds The array of identifiers for the requested feeds
* @return values Values of the requested data feeds in the corresponding order
*/
function getValuesForDataFeeds(bytes32[] memory dataFeedIds) public view returns (uint256[] memory) {
uint256[] memory values = getValuesForDataFeedsUnsafe(dataFeedIds);
for (uint256 i = 0; i < dataFeedIds.length;) {
bytes32 dataFeedId = dataFeedIds[i];
getDataFeedIndex(dataFeedId); // will revert if data feed id is not supported
validateDataFeedValueOnRead(dataFeedId, values[i]);
unchecked { i++; } // reduces gas costs
}
return values;
}
/**
* @dev Reverts if proposed value for the proposed data feed id is invalid
* Is called on every NOT *unsafe method which reads dataFeed
* By default, it just checks if the value is not equal to 0, but it can be extended
* @param dataFeedId The data feed identifier
* @param valueForDataFeed Proposed value for the data feed
*/
function validateDataFeedValueOnRead(bytes32 dataFeedId, uint256 valueForDataFeed) public view virtual {
if (valueForDataFeed == 0) {
revert DataFeedValueCannotBeZero(dataFeedId);
}
}
/**
* @dev Reverts if proposed value for the proposed data feed id is invalid
* Is called on every NOT *unsafe method which writes dataFeed
* By default, it does nothing
* @param dataFeedId The data feed identifier
* @param valueForDataFeed Proposed value for the data feed
*/
function validateDataFeedValueOnWrite(bytes32 dataFeedId, uint256 valueForDataFeed) public view virtual {
if (valueForDataFeed == 0) {
revert DataFeedValueCannotBeZero(dataFeedId);
}
}
/**
* @dev [HIGH RISK] Returns the latest value for a given data feed without validation
* Important! Using this function instead of `getValueForDataFeed` may cause
* significant risk for your smart contracts
* @param dataFeedId The data feed identifier
* @return dataFeedValue Unvalidated value of the latest successful update
*/
function getValueForDataFeedUnsafe(bytes32 dataFeedId) public view virtual returns (uint256);
/**
* @notice [HIGH RISK] Returns the latest properly reported values for several data feeds without validation
* Important! Using this function instead of `getValuesForDataFeeds` may cause
* significant risk for your smart contracts
* @param requestedDataFeedIds The array of identifiers for the requested feeds
* @return values Unvalidated values of the requested data feeds in the corresponding order
*/
function getValuesForDataFeedsUnsafe(bytes32[] memory requestedDataFeedIds) public view virtual returns (uint256[] memory values) {
values = new uint256[](requestedDataFeedIds.length);
for (uint256 i = 0; i < requestedDataFeedIds.length;) {
values[i] = getValueForDataFeedUnsafe(requestedDataFeedIds[i]);
unchecked { i++; } // reduces gas costs
}
return values;
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.14;
import {PriceFeedsAdapterWithoutRounds} from "../without-rounds/PriceFeedsAdapterWithoutRounds.sol";
abstract contract PriceFeedsAdapterWithoutRoundsPrimaryProd is PriceFeedsAdapterWithoutRounds {
function getUniqueSignersThreshold() public view virtual override returns (uint8) {
return 2;
}
function getAuthorisedSignerIndex(
address signerAddress
) public view virtual override returns (uint8) {
if (signerAddress == 0x8BB8F32Df04c8b654987DAaeD53D6B6091e3B774) { return 0; }
else if (signerAddress == 0xdEB22f54738d54976C4c0fe5ce6d408E40d88499) { return 1; }
else if (signerAddress == 0x51Ce04Be4b3E32572C4Ec9135221d0691Ba7d202) { return 2; }
else if (signerAddress == 0xDD682daEC5A90dD295d14DA4b0bec9281017b5bE) { return 3; }
else if (signerAddress == 0x9c5AE89C4Af6aA32cE58588DBaF90d18a855B6de) { return 4; }
else {
revert SignerNotAuthorised(signerAddress);
}
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.14;
import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import {RedstoneAdapterBase} from "../core/RedstoneAdapterBase.sol";
/**
* @title Common logic of the price feeds adapter contracts
* @author The Redstone Oracles team
*/
abstract contract PriceFeedsAdapterBase is RedstoneAdapterBase, Initializable {
/**
* @dev Helpful function for upgradable contracts
*/
function initialize() public virtual initializer {
// We don't have storage variables, but we keep this function
// Because it is used for contract setup in upgradable contracts
}
/**
* @dev This function is virtual and may contain additional logic in the derived contract
* E.g. it can check if the updating conditions are met (e.g. if at least one
* value is deviated enough)
* @param dataFeedIdsArray Array of all data feeds identifiers
* @param values The reported values that are validated and reported
*/
function _validateAndUpdateDataFeedsValues(
bytes32[] memory dataFeedIdsArray,
uint256[] memory values
) internal virtual override {
for (uint256 i = 0; i < dataFeedIdsArray.length;) {
_validateAndUpdateDataFeedValue(dataFeedIdsArray[i], values[i]);
unchecked { i++; } // reduces gas costs
}
}
/**
* @dev Helpful virtual function for handling value validation and saving in derived
* Price Feed Adapters contracts
* @param dataFeedId The data feed identifier
* @param dataFeedValue Proposed value for the data feed
*/
function _validateAndUpdateDataFeedValue(bytes32 dataFeedId, uint256 dataFeedValue) internal virtual;
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.14;
import {PriceFeedsAdapterBase} from "../PriceFeedsAdapterBase.sol";
/**
* @title Implementation of a price feeds adapter without rounds support
* @author The Redstone Oracles team
* @dev This contract is abstract, the following functions should be
* implemented in the actual contract before deployment:
* - getDataFeedIds
* - getUniqueSignersThreshold
* - getAuthorisedSignerIndex
*
* We also recommend to override `getDataFeedIndex` function with hardcoded
* values, as it can significantly reduce gas usage
*/
abstract contract PriceFeedsAdapterWithoutRounds is PriceFeedsAdapterBase {
bytes32 constant VALUES_MAPPING_STORAGE_LOCATION = 0x4dd0c77efa6f6d590c97573d8c70b714546e7311202ff7c11c484cc841d91bfc; // keccak256("RedStone.oracleValuesMapping");
/**
* @dev Helpful virtual function for handling value validation and saving
* @param dataFeedId The data feed identifier
* @param dataFeedValue Proposed value for the data feed
*/
function _validateAndUpdateDataFeedValue(bytes32 dataFeedId, uint256 dataFeedValue) internal override virtual {
validateDataFeedValueOnWrite(dataFeedId, dataFeedValue);
bytes32 locationInStorage = _getValueLocationInStorage(dataFeedId);
assembly {
sstore(locationInStorage, dataFeedValue)
}
}
/**
* @dev [HIGH RISK] Returns the latest value for a given data feed without validation
* Important! Using this function instead of `getValueForDataFeed` may cause
* significant risk for your smart contracts
* @param dataFeedId The data feed identifier
* @return dataFeedValue Unvalidated value of the latest successful update
*/
function getValueForDataFeedUnsafe(bytes32 dataFeedId) public view virtual override returns (uint256 dataFeedValue) {
bytes32 locationInStorage = _getValueLocationInStorage(dataFeedId);
assembly {
dataFeedValue := sload(locationInStorage)
}
}
/**
* @dev Helpful function for getting storage location for the requested data feed
* @param dataFeedId Requested data feed identifier
* @return locationInStorage
*/
function _getValueLocationInStorage(bytes32 dataFeedId) private pure returns (bytes32) {
return keccak256(abi.encode(dataFeedId, VALUES_MAPPING_STORAGE_LOCATION));
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
library OldGelatoAddress {
address constant public ADDR = 0xc4D1AE5E796E6d7561cdc8335F85e6B57a36e097;
}
library GelatoAddress {
address constant public ADDR = 0xCD6BfDA4D95d5C0f3f2882dC221D792392c99714;
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.4;
interface IBlastClaimableGas {
function configureClaimableGas() external;
function claimAllGas(
address contractAddress,
address recipient
) external returns (uint256);
}{
"optimizer": {
"enabled": true,
"runs": 10000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"blockTimestamp","type":"uint256"}],"name":"BlockTimestampIsTooBig","type":"error"},{"inputs":[],"name":"CalldataMustHaveValidPayload","type":"error"},{"inputs":[],"name":"CalldataOverOrUnderFlow","type":"error"},{"inputs":[],"name":"CanNotPickMedianOfEmptyArray","type":"error"},{"inputs":[{"internalType":"bytes32","name":"dataFeedId","type":"bytes32"}],"name":"DataFeedIdNotFound","type":"error"},{"inputs":[{"internalType":"bytes32","name":"dataFeedId","type":"bytes32"}],"name":"DataFeedValueCannotBeZero","type":"error"},{"inputs":[{"internalType":"uint256","name":"expectedDataTimestamp","type":"uint256"},{"internalType":"uint256","name":"dataPackageTimestamp","type":"uint256"}],"name":"DataPackageTimestampMismatch","type":"error"},{"inputs":[],"name":"DataPackageTimestampMustNotBeZero","type":"error"},{"inputs":[],"name":"DataPackageTimestampsMustBeEqual","type":"error"},{"inputs":[{"internalType":"uint256","name":"dataTimestamp","type":"uint256"}],"name":"DataTimestampIsTooBig","type":"error"},{"inputs":[{"internalType":"uint256","name":"receivedDataTimestampMilliseconds","type":"uint256"},{"internalType":"uint256","name":"lastDataTimestampMilliseconds","type":"uint256"}],"name":"DataTimestampShouldBeNewerThanBefore","type":"error"},{"inputs":[],"name":"EachSignerMustProvideTheSameValue","type":"error"},{"inputs":[],"name":"EmptyCalldataPointersArr","type":"error"},{"inputs":[],"name":"GetDataServiceIdNotImplemented","type":"error"},{"inputs":[],"name":"IncorrectUnsignedMetadataSize","type":"error"},{"inputs":[{"internalType":"uint256","name":"receivedSignersCount","type":"uint256"},{"internalType":"uint256","name":"requiredSignersCount","type":"uint256"}],"name":"InsufficientNumberOfUniqueSigners","type":"error"},{"inputs":[],"name":"InvalidCalldataPointer","type":"error"},{"inputs":[{"internalType":"uint256","name":"currentBlockTimestamp","type":"uint256"},{"internalType":"uint256","name":"lastUpdateTimestamp","type":"uint256"},{"internalType":"uint256","name":"minIntervalBetweenUpdates","type":"uint256"}],"name":"MinIntervalBetweenUpdatesHasNotPassedYet","type":"error"},{"inputs":[],"name":"RedstonePayloadMustHaveAtLeastOneDataPackage","type":"error"},{"inputs":[{"internalType":"address","name":"receivedSigner","type":"address"}],"name":"SignerNotAuthorised","type":"error"},{"inputs":[{"internalType":"uint256","name":"receivedTimestampSeconds","type":"uint256"},{"internalType":"uint256","name":"blockTimestamp","type":"uint256"}],"name":"TimestampFromTooLongFuture","type":"error"},{"inputs":[{"internalType":"uint256","name":"receivedTimestampSeconds","type":"uint256"},{"internalType":"uint256","name":"blockTimestamp","type":"uint256"}],"name":"TimestampIsTooOld","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"UpdaterNotAuthorised","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"aggregateValues","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimMyContractsGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"extractTimestampsAndAssertAllAreEqual","outputs":[{"internalType":"uint256","name":"extractedTimestamp","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getAllowedTimestampDiffsInSeconds","outputs":[{"internalType":"uint256","name":"maxDataAheadSeconds","type":"uint256"},{"internalType":"uint256","name":"maxDataDelaySeconds","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"signerAddress","type":"address"}],"name":"getAuthorisedSignerIndex","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockTimestampFromLatestUpdate","outputs":[{"internalType":"uint256","name":"blockTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataFeedIds","outputs":[{"internalType":"bytes32[]","name":"dataFeedIds","type":"bytes32[]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"dataFeedId","type":"bytes32"}],"name":"getDataFeedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataServiceId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataTimestampFromLatestUpdate","outputs":[{"internalType":"uint256","name":"lastDataTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinIntervalBetweenUpdates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPackedTimestampsFromLatestUpdate","outputs":[{"internalType":"uint256","name":"packedTimestamps","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTimestampsFromLatestUpdate","outputs":[{"internalType":"uint128","name":"dataTimestamp","type":"uint128"},{"internalType":"uint128","name":"blockTimestamp","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniqueSignersThreshold","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"dataFeedId","type":"bytes32"}],"name":"getValueForDataFeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"dataFeedId","type":"bytes32"}],"name":"getValueForDataFeedUnsafe","outputs":[{"internalType":"uint256","name":"dataFeedValue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"dataFeedIds","type":"bytes32[]"}],"name":"getValuesForDataFeeds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"requestedDataFeedIds","type":"bytes32[]"}],"name":"getValuesForDataFeedsUnsafe","outputs":[{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updater","type":"address"}],"name":"requireAuthorisedUpdater","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dataPackagesTimestamp","type":"uint256"}],"name":"updateDataFeedsValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"dataFeedId","type":"bytes32"},{"internalType":"uint256","name":"valueForDataFeed","type":"uint256"}],"name":"validateDataFeedValueOnRead","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"dataFeedId","type":"bytes32"},{"internalType":"uint256","name":"valueForDataFeed","type":"uint256"}],"name":"validateDataFeedValueOnWrite","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dataPackagesTimestamp","type":"uint256"}],"name":"validateDataPackagesTimestampOnce","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dataPackagesTimestamp","type":"uint256"}],"name":"validateProposedDataPackagesTimestamp","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"receivedTimestampMilliseconds","type":"uint256"}],"name":"validateTimestamp","outputs":[],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b5061206b806100206000396000f3fe608060405234801561001057600080fd5b50600436106101b95760003560e01c8063a8b940e6116100f9578063c274583a11610097578063f50b2efe11610071578063f50b2efe14610366578063f90c492414610379578063fba0315814610380578063fd1f4bef1461038857600080fd5b8063c274583a1461034a578063cbc33eb21461025f578063d149c0d71461035f57600080fd5b8063b0f106b0116100d3578063b0f106b0146102e0578063b24ebfcc14610311578063bb1f29b714610324578063c14c92041461033757600080fd5b8063a8b940e6146102a5578063ada11457146102b8578063aef2f165146102cb57600080fd5b80636dafaf6a11610166578063796b89b911610140578063796b89b91461027c5780637a02bdf1146102825780638129fc1c1461028a578063971b9c031461029257600080fd5b80636dafaf6a1461024c5780636e3e03701461025f57806377d5d2dc1461027457600080fd5b806355a547d51161019757806355a547d51461021157806355d12458146102195780636668316a1461023957600080fd5b80631b2758ee146101be5780633ce142f5146101d957806344e02982146101fe575b600080fd5b6101c66103af565b6040519081526020015b60405180910390f35b6101ec6101e7366004611c99565b6103d1565b60405160ff90911681526020016101d0565b6101c661020c366004611ccf565b61053f565b6101c6610568565b61022c610227366004611d8a565b6106cb565b6040516101d09190611e20565b6101c6610247366004611ccf565b61076c565b6101c661025a366004611ccf565b610780565b61027261026d366004611e64565b610844565b005b610272610885565b426101c6565b6101c6610950565b610272610972565b61022c6102a0366004611d8a565b610b6f565b6102726102b3366004611c99565b610be5565b6102726102c6366004611ccf565b610d58565b60408051603c815260b46020820152016101d0565b6102e8610d6a565b604080516fffffffffffffffffffffffffffffffff9384168152929091166020830152016101d0565b6101c661031f366004611d8a565b610da8565b610272610332366004611ccf565b610db3565b610272610345366004611ccf565b610e76565b610352610ec1565b6040516101d09190611e86565b60036101c6565b610272610374366004611ccf565b610ef5565b60026101ec565b61022c610f4c565b7f3d01e4d77237ea0f771f1786da4d4ff757fcba6a92933aa53b1dcef2d6bd6fe2546101c6565b60006103b9610d6a565b6fffffffffffffffffffffffffffffffff1692915050565b600073ffffffffffffffffffffffffffffffffffffffff8216738bb8f32df04c8b654987daaed53d6b6091e3b7740361040c57506000919050565b73ffffffffffffffffffffffffffffffffffffffff821673deb22f54738d54976c4c0fe5ce6d408e40d884990361044557506001919050565b73ffffffffffffffffffffffffffffffffffffffff82167351ce04be4b3e32572c4ec9135221d0691ba7d2020361047e57506002919050565b73ffffffffffffffffffffffffffffffffffffffff821673dd682daec5a90dd295d14da4b0bec9281017b5be036104b757506003919050565b73ffffffffffffffffffffffffffffffffffffffff8216739c5ae89c4af6aa32ce58588dbaf90d18a855b6de036104f057506004919050565b6040517fec459bc000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201526024015b60405180910390fd5b600061054a82610780565b5060006105568361076c565b90506105628382610844565b92915050565b60008061057361102f565b9050600061058082611164565b61ffff169050806000036105c0576040517f8552ff3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105cb600283611f21565b915060005b818110156106c55760006105e3846111b7565b90506000806105f3606887611f21565b905060006106018236611f34565b9050803592508265ffffffffffff16600003610649576040517f336dc9d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b87600003610661578265ffffffffffff1697506106a2565b878365ffffffffffff16146106a2576040517fd9d1f46500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106ac8488611f21565b96505050505080806106bd90611f47565b9150506105d0565b50505090565b6060815167ffffffffffffffff8111156106e7576106e7611ce8565b604051908082528060200260200182016040528015610710578160200160208202803683370190505b50905060005b82518110156107665761074183828151811061073457610734611f7f565b602002602001015161076c565b82828151811061075357610753611f7f565b6020908102919091010152600101610716565b50919050565b600080610778836111f3565b549392505050565b60007f77654554482f455448000000000000000000000000000000000000000000000082036107b157506000919050565b7f657a4554482f455448000000000000000000000000000000000000000000000082036107e057506001919050565b7f6170784554482f45544800000000000000000000000000000000000000000000820361080f57506002919050565b6040517f9382940300000000000000000000000000000000000000000000000000000000815260048101839052602401610536565b80600003610881576040517f0565ce2a00000000000000000000000000000000000000000000000000000000815260048101839052602401610536565b5050565b337323eb64e32f94e38f1f46a65305a4aa3487f205a5146108a557600080fd5b6040517f954fa5ee0000000000000000000000000000000000000000000000000000000081523060048201527323eb64e32f94e38f1f46a65305a4aa3487f205a560248201527343000000000000000000000000000000000000029063954fa5ee906044016020604051808303816000875af1158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d9190611fae565b50565b600061095a610d6a565b506fffffffffffffffffffffffffffffffff16919050565b600054610100900460ff16158080156109925750600054600160ff909116105b806109ac5750303b1580156109ac575060005460ff166001145b610a38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610536565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790558015610a9657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b73430000000000000000000000000000000000000273ffffffffffffffffffffffffffffffffffffffff16634e606c476040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610af257600080fd5b505af1158015610b06573d6000803e3d6000fd5b50505050801561094d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b60606000610b7c836106cb565b905060005b8351811015610bde576000848281518110610b9e57610b9e611f7f565b60200260200101519050610bb181610780565b50610bd581848481518110610bc857610bc8611f7f565b6020026020010151610844565b50600101610b81565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff81167323eb64e32f94e38f1f46a65305a4aa3487f205a514801590610c49575073ffffffffffffffffffffffffffffffffffffffff811673db459c2b4ddaa24359e7977f663eb4f9e6c8726014155b8015610c7f575073ffffffffffffffffffffffffffffffffffffffff8116738b983a73f1c469b0bbb30790efd027057718c98014155b8015610cb5575073ffffffffffffffffffffffffffffffffffffffff811673cd6bfda4d95d5c0f3f2882dc221d792392c9971414155b8015610ceb575073ffffffffffffffffffffffffffffffffffffffff811673c4d1ae5e796e6d7561cdc8335f85e6b57a36e09714155b1561094d576000610cfa6103af565b90506028610d088242611f34565b1015610881576040517f63328d3d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83166004820152602401610536565b610d618161124f565b61094d81610db3565b600080610da0610d987f3d01e4d77237ea0f771f1786da4d4ff757fcba6a92933aa53b1dcef2d6bd6fe25490565b608081901c91565b915091509091565b60006105628261129e565b6000610dc16103e883611ff6565b9050603c60b44283811015610e225782610ddb8286611f34565b1115610e1d576040517fb6b0916d0000000000000000000000000000000000000000000000000000000081526004810185905260248101829052604401610536565b610e6f565b81610e2d8583611f34565b1115610e6f576040517f0321d0b50000000000000000000000000000000000000000000000000000000081526004810185905260248101829052604401610536565b5050505050565b610e7f33610be5565b610e876112a9565b610e9081610d58565b610e998161130c565b6000610ea3610f4c565b90506000610eb0826113d2565b9050610ebc82826113dd565b505050565b60606040517f608b530700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33610efd5750565b6000610f07610950565b9050808214610881576040517f6bc11ec50000000000000000000000000000000000000000000000000000000081526004810182905260248101839052604401610536565b60408051600280825260608083018452926020830190803683370190505090507f77654554482f455448000000000000000000000000000000000000000000000081600081518110610fa057610fa0611f7f565b6020026020010181815250507f657a4554482f455448000000000000000000000000000000000000000000000081600181518110610fe057610fe0611f7f565b6020026020010181815250507f6170784554482f455448000000000000000000000000000000000000000000008160028151811061102057611020611f7f565b60200260200101818152505090565b60006602ed57011e00007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe036013581161480611097576040517fe7764c9e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600036602911156110d4576040517f5796f78a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd73601356000600961110d600362ffffff8516611f21565b6111179190611f21565b905036611125600283611f21565b111561115d576040517fc30a7bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b9392505050565b600080611172602084611f21565b9050368111156111ae576040517f5796f78a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b36033592915050565b60008060006111c58461142d565b9092509050604e6111d7826020611f21565b6111e1908461200a565b6111eb9190611f21565b949350505050565b6040516000906112329083907f4dd0c77efa6f6d590c97573d8c70b714546e7311202ff7c11c484cc841d91bfc90602001918252602082015260400190565b604051602081830303815290604052805190602001209050919050565b6000611259610950565b9050808211610881576040517fef05deba0000000000000000000000000000000000000000000000000000000081526004810183905260248101829052604401610536565b600061056282611484565b4260006112b46103af565b905060036112c28183611f21565b831015610ebc576040517f83b3f5c4000000000000000000000000000000000000000000000000000000008152600481018490526024810183905260448101829052606401610536565b426fffffffffffffffffffffffffffffffff81111561135a576040517f70db678f00000000000000000000000000000000000000000000000000000000815260048101829052602401610536565b6fffffffffffffffffffffffffffffffff8211156113a7576040517f5cbfa8a100000000000000000000000000000000000000000000000000000000815260048101839052602401610536565b60809190911b177f3d01e4d77237ea0f771f1786da4d4ff757fcba6a92933aa53b1dcef2d6bd6fe255565b606061056282611568565b60005b8251811015610ebc576114258382815181106113fe576113fe611f7f565b602002602001015183838151811061141857611418611f7f565b602002602001015161172c565b6001016113e0565b60008080808061143e604187611f21565b90506000611457611450602084611f21565b3690611749565b803594509050611468816003611749565b62ffffff9490941697933563ffffffff16965092945050505050565b600081516000036114c1576040517f9e198af900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ca82611755565b6000600283516114da9190611ff6565b9050600283516114ea9190612021565b60000361154657600061153984611502600185611f34565b8151811061151257611512611f7f565b602002602001015185848151811061152c5761152c611f7f565b60200260200101516117a3565b90506111eb600282611ff6565b82818151811061155857611558611f7f565b6020026020010151915050919050565b60606000825167ffffffffffffffff81111561158657611586611ce8565b6040519080825280602002602001820160405280156115af578160200160208202803683370190505b5090506000835167ffffffffffffffff8111156115ce576115ce611ce8565b6040519080825280602002602001820160405280156115f7578160200160208202803683370190505b5090506000845167ffffffffffffffff81111561161657611616611ce8565b60405190808252806020026020018201604052801561164957816020015b60608152602001906001900390816116345790505b50905060005b85518110156116a65760408051600280825260608201835290916020830190803683370190505082828151811061168857611688611f7f565b6020026020010181905250808061169e90611f47565b91505061164f565b5060006116b161102f565b905060006116be82611164565b61ffff1690506116cf600283611f21565b60405190925060005b828110156117155760006116ef8a898989896117af565b90506116fb8186611f21565b94508260405250808061170d90611f47565b9150506116d8565b506117208487611a66565b98975050505050505050565b6117368282610844565b6000611741836111f3565b919091555050565b600061115d8284611f34565b8051602082016020820281019150805b8281101561179d57815b8181101561179457815181518082101561178a578084528183525b505060200161176f565b50602001611765565b50505050565b600061115d8284611f21565b6000806000806117be8561142d565b909250905060008080606081600d6117e16117da602089611f21565b8990611b98565b6117eb9190611f21565b905060006117fd61145060688d611f21565b9050600061181a8361181060418f611f21565b6114509190611f21565b90506118268382611839565b935082602085012094508135965061187b565b604080518381526020818501810190925260009101838382377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0019392505050565b61188c8765ffffffffffff16610ef5565b6118a08561189b60418f611f21565b611ba4565b95506118ab866103d1565b60ff1699505050505050505060008060005b84811015611a33576118d0888583611c3a565b909350915060005b8c51811015611a20578c81815181106118f3576118f3611f7f565b60200260200101518403611a0e5760008b828151811061191557611915611f7f565b6020026020010151905061192e81896001901b16151590565b1580156119575750600260ff168d838151811061194d5761194d611f7f565b6020026020010151105b15611a08578c828151811061196e5761196e611f7f565b60200260200101805180919061198390611f47565b81525050838b838151811061199a5761199a611f7f565b602002602001015160018f85815181106119b6576119b6611f7f565b60200260200101516119c89190611f34565b815181106119d8576119d8611f7f565b60209081029190910101526001881b81178c83815181106119fb576119fb611f7f565b6020026020010181815250505b50611a20565b80611a1881611f47565b9150506118d8565b5080611a2b81611f47565b9150506118bd565b50505081602082611a449190611f21565b611a4e919061200a565b611a5990604e611f21565b9998505050505050505050565b60606000835167ffffffffffffffff811115611a8457611a84611ce8565b604051908082528060200260200182016040528015611aad578160200160208202803683370190505b509050600260005b8551811015611b8e5781858281518110611ad157611ad1611f7f565b60200260200101511015611b3757848181518110611af157611af1611f7f565b6020026020010151826040517f2b13aef5000000000000000000000000000000000000000000000000000000008152600401610536929190918252602082015260400190565b6000611b5b878381518110611b4e57611b4e611f7f565b6020026020010151610da8565b905080848381518110611b7057611b70611f7f565b60209081029190910101525080611b8681611f47565b915050611ab5565b5090949350505050565b600061115d828461200a565b60408051600080825260208083018085528690523685900380850135831a948401859052803560608501819052910135608084018190529193909260019060a0016020604051602081039080840390855afa158015611c07573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151979650505050505050565b60008080611c49604e87611f21565b90506000611c76611c6f611c5e602089611f21565b611c69886001611f21565b90611b98565b83906117a3565b90506000611c843683611749565b80359960209091013598509650505050505050565b600060208284031215611cab57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461115d57600080fd5b600060208284031215611ce157600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715611d5e57611d5e611ce8565b604052919050565b600067ffffffffffffffff821115611d8057611d80611ce8565b5060051b60200190565b60006020808385031215611d9d57600080fd5b823567ffffffffffffffff811115611db457600080fd5b8301601f81018513611dc557600080fd5b8035611dd8611dd382611d66565b611d17565b81815260059190911b82018301908381019087831115611df757600080fd5b928401925b82841015611e1557833582529284019290840190611dfc565b979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e5857835183529284019291840191600101611e3c565b50909695505050505050565b60008060408385031215611e7757600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611eb357858101830151858201604001528201611e97565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561056257610562611ef2565b8181038181111561056257610562611ef2565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f7857611f78611ef2565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611fc057600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261200557612005611fc7565b500490565b808202811582820484141761056257610562611ef2565b60008261203057612030611fc7565b50069056fea264697066735822122035dce0a7fd34b5058d3803daf280045a5491652b8f0c69b36034fdddb7b132c164736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101b95760003560e01c8063a8b940e6116100f9578063c274583a11610097578063f50b2efe11610071578063f50b2efe14610366578063f90c492414610379578063fba0315814610380578063fd1f4bef1461038857600080fd5b8063c274583a1461034a578063cbc33eb21461025f578063d149c0d71461035f57600080fd5b8063b0f106b0116100d3578063b0f106b0146102e0578063b24ebfcc14610311578063bb1f29b714610324578063c14c92041461033757600080fd5b8063a8b940e6146102a5578063ada11457146102b8578063aef2f165146102cb57600080fd5b80636dafaf6a11610166578063796b89b911610140578063796b89b91461027c5780637a02bdf1146102825780638129fc1c1461028a578063971b9c031461029257600080fd5b80636dafaf6a1461024c5780636e3e03701461025f57806377d5d2dc1461027457600080fd5b806355a547d51161019757806355a547d51461021157806355d12458146102195780636668316a1461023957600080fd5b80631b2758ee146101be5780633ce142f5146101d957806344e02982146101fe575b600080fd5b6101c66103af565b6040519081526020015b60405180910390f35b6101ec6101e7366004611c99565b6103d1565b60405160ff90911681526020016101d0565b6101c661020c366004611ccf565b61053f565b6101c6610568565b61022c610227366004611d8a565b6106cb565b6040516101d09190611e20565b6101c6610247366004611ccf565b61076c565b6101c661025a366004611ccf565b610780565b61027261026d366004611e64565b610844565b005b610272610885565b426101c6565b6101c6610950565b610272610972565b61022c6102a0366004611d8a565b610b6f565b6102726102b3366004611c99565b610be5565b6102726102c6366004611ccf565b610d58565b60408051603c815260b46020820152016101d0565b6102e8610d6a565b604080516fffffffffffffffffffffffffffffffff9384168152929091166020830152016101d0565b6101c661031f366004611d8a565b610da8565b610272610332366004611ccf565b610db3565b610272610345366004611ccf565b610e76565b610352610ec1565b6040516101d09190611e86565b60036101c6565b610272610374366004611ccf565b610ef5565b60026101ec565b61022c610f4c565b7f3d01e4d77237ea0f771f1786da4d4ff757fcba6a92933aa53b1dcef2d6bd6fe2546101c6565b60006103b9610d6a565b6fffffffffffffffffffffffffffffffff1692915050565b600073ffffffffffffffffffffffffffffffffffffffff8216738bb8f32df04c8b654987daaed53d6b6091e3b7740361040c57506000919050565b73ffffffffffffffffffffffffffffffffffffffff821673deb22f54738d54976c4c0fe5ce6d408e40d884990361044557506001919050565b73ffffffffffffffffffffffffffffffffffffffff82167351ce04be4b3e32572c4ec9135221d0691ba7d2020361047e57506002919050565b73ffffffffffffffffffffffffffffffffffffffff821673dd682daec5a90dd295d14da4b0bec9281017b5be036104b757506003919050565b73ffffffffffffffffffffffffffffffffffffffff8216739c5ae89c4af6aa32ce58588dbaf90d18a855b6de036104f057506004919050565b6040517fec459bc000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201526024015b60405180910390fd5b600061054a82610780565b5060006105568361076c565b90506105628382610844565b92915050565b60008061057361102f565b9050600061058082611164565b61ffff169050806000036105c0576040517f8552ff3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105cb600283611f21565b915060005b818110156106c55760006105e3846111b7565b90506000806105f3606887611f21565b905060006106018236611f34565b9050803592508265ffffffffffff16600003610649576040517f336dc9d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b87600003610661578265ffffffffffff1697506106a2565b878365ffffffffffff16146106a2576040517fd9d1f46500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106ac8488611f21565b96505050505080806106bd90611f47565b9150506105d0565b50505090565b6060815167ffffffffffffffff8111156106e7576106e7611ce8565b604051908082528060200260200182016040528015610710578160200160208202803683370190505b50905060005b82518110156107665761074183828151811061073457610734611f7f565b602002602001015161076c565b82828151811061075357610753611f7f565b6020908102919091010152600101610716565b50919050565b600080610778836111f3565b549392505050565b60007f77654554482f455448000000000000000000000000000000000000000000000082036107b157506000919050565b7f657a4554482f455448000000000000000000000000000000000000000000000082036107e057506001919050565b7f6170784554482f45544800000000000000000000000000000000000000000000820361080f57506002919050565b6040517f9382940300000000000000000000000000000000000000000000000000000000815260048101839052602401610536565b80600003610881576040517f0565ce2a00000000000000000000000000000000000000000000000000000000815260048101839052602401610536565b5050565b337323eb64e32f94e38f1f46a65305a4aa3487f205a5146108a557600080fd5b6040517f954fa5ee0000000000000000000000000000000000000000000000000000000081523060048201527323eb64e32f94e38f1f46a65305a4aa3487f205a560248201527343000000000000000000000000000000000000029063954fa5ee906044016020604051808303816000875af1158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d9190611fae565b50565b600061095a610d6a565b506fffffffffffffffffffffffffffffffff16919050565b600054610100900460ff16158080156109925750600054600160ff909116105b806109ac5750303b1580156109ac575060005460ff166001145b610a38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610536565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790558015610a9657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b73430000000000000000000000000000000000000273ffffffffffffffffffffffffffffffffffffffff16634e606c476040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610af257600080fd5b505af1158015610b06573d6000803e3d6000fd5b50505050801561094d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150565b60606000610b7c836106cb565b905060005b8351811015610bde576000848281518110610b9e57610b9e611f7f565b60200260200101519050610bb181610780565b50610bd581848481518110610bc857610bc8611f7f565b6020026020010151610844565b50600101610b81565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff81167323eb64e32f94e38f1f46a65305a4aa3487f205a514801590610c49575073ffffffffffffffffffffffffffffffffffffffff811673db459c2b4ddaa24359e7977f663eb4f9e6c8726014155b8015610c7f575073ffffffffffffffffffffffffffffffffffffffff8116738b983a73f1c469b0bbb30790efd027057718c98014155b8015610cb5575073ffffffffffffffffffffffffffffffffffffffff811673cd6bfda4d95d5c0f3f2882dc221d792392c9971414155b8015610ceb575073ffffffffffffffffffffffffffffffffffffffff811673c4d1ae5e796e6d7561cdc8335f85e6b57a36e09714155b1561094d576000610cfa6103af565b90506028610d088242611f34565b1015610881576040517f63328d3d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83166004820152602401610536565b610d618161124f565b61094d81610db3565b600080610da0610d987f3d01e4d77237ea0f771f1786da4d4ff757fcba6a92933aa53b1dcef2d6bd6fe25490565b608081901c91565b915091509091565b60006105628261129e565b6000610dc16103e883611ff6565b9050603c60b44283811015610e225782610ddb8286611f34565b1115610e1d576040517fb6b0916d0000000000000000000000000000000000000000000000000000000081526004810185905260248101829052604401610536565b610e6f565b81610e2d8583611f34565b1115610e6f576040517f0321d0b50000000000000000000000000000000000000000000000000000000081526004810185905260248101829052604401610536565b5050505050565b610e7f33610be5565b610e876112a9565b610e9081610d58565b610e998161130c565b6000610ea3610f4c565b90506000610eb0826113d2565b9050610ebc82826113dd565b505050565b60606040517f608b530700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33610efd5750565b6000610f07610950565b9050808214610881576040517f6bc11ec50000000000000000000000000000000000000000000000000000000081526004810182905260248101839052604401610536565b60408051600280825260608083018452926020830190803683370190505090507f77654554482f455448000000000000000000000000000000000000000000000081600081518110610fa057610fa0611f7f565b6020026020010181815250507f657a4554482f455448000000000000000000000000000000000000000000000081600181518110610fe057610fe0611f7f565b6020026020010181815250507f6170784554482f455448000000000000000000000000000000000000000000008160028151811061102057611020611f7f565b60200260200101818152505090565b60006602ed57011e00007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe036013581161480611097576040517fe7764c9e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600036602911156110d4576040517f5796f78a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd73601356000600961110d600362ffffff8516611f21565b6111179190611f21565b905036611125600283611f21565b111561115d576040517fc30a7bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b9392505050565b600080611172602084611f21565b9050368111156111ae576040517f5796f78a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b36033592915050565b60008060006111c58461142d565b9092509050604e6111d7826020611f21565b6111e1908461200a565b6111eb9190611f21565b949350505050565b6040516000906112329083907f4dd0c77efa6f6d590c97573d8c70b714546e7311202ff7c11c484cc841d91bfc90602001918252602082015260400190565b604051602081830303815290604052805190602001209050919050565b6000611259610950565b9050808211610881576040517fef05deba0000000000000000000000000000000000000000000000000000000081526004810183905260248101829052604401610536565b600061056282611484565b4260006112b46103af565b905060036112c28183611f21565b831015610ebc576040517f83b3f5c4000000000000000000000000000000000000000000000000000000008152600481018490526024810183905260448101829052606401610536565b426fffffffffffffffffffffffffffffffff81111561135a576040517f70db678f00000000000000000000000000000000000000000000000000000000815260048101829052602401610536565b6fffffffffffffffffffffffffffffffff8211156113a7576040517f5cbfa8a100000000000000000000000000000000000000000000000000000000815260048101839052602401610536565b60809190911b177f3d01e4d77237ea0f771f1786da4d4ff757fcba6a92933aa53b1dcef2d6bd6fe255565b606061056282611568565b60005b8251811015610ebc576114258382815181106113fe576113fe611f7f565b602002602001015183838151811061141857611418611f7f565b602002602001015161172c565b6001016113e0565b60008080808061143e604187611f21565b90506000611457611450602084611f21565b3690611749565b803594509050611468816003611749565b62ffffff9490941697933563ffffffff16965092945050505050565b600081516000036114c1576040517f9e198af900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ca82611755565b6000600283516114da9190611ff6565b9050600283516114ea9190612021565b60000361154657600061153984611502600185611f34565b8151811061151257611512611f7f565b602002602001015185848151811061152c5761152c611f7f565b60200260200101516117a3565b90506111eb600282611ff6565b82818151811061155857611558611f7f565b6020026020010151915050919050565b60606000825167ffffffffffffffff81111561158657611586611ce8565b6040519080825280602002602001820160405280156115af578160200160208202803683370190505b5090506000835167ffffffffffffffff8111156115ce576115ce611ce8565b6040519080825280602002602001820160405280156115f7578160200160208202803683370190505b5090506000845167ffffffffffffffff81111561161657611616611ce8565b60405190808252806020026020018201604052801561164957816020015b60608152602001906001900390816116345790505b50905060005b85518110156116a65760408051600280825260608201835290916020830190803683370190505082828151811061168857611688611f7f565b6020026020010181905250808061169e90611f47565b91505061164f565b5060006116b161102f565b905060006116be82611164565b61ffff1690506116cf600283611f21565b60405190925060005b828110156117155760006116ef8a898989896117af565b90506116fb8186611f21565b94508260405250808061170d90611f47565b9150506116d8565b506117208487611a66565b98975050505050505050565b6117368282610844565b6000611741836111f3565b919091555050565b600061115d8284611f34565b8051602082016020820281019150805b8281101561179d57815b8181101561179457815181518082101561178a578084528183525b505060200161176f565b50602001611765565b50505050565b600061115d8284611f21565b6000806000806117be8561142d565b909250905060008080606081600d6117e16117da602089611f21565b8990611b98565b6117eb9190611f21565b905060006117fd61145060688d611f21565b9050600061181a8361181060418f611f21565b6114509190611f21565b90506118268382611839565b935082602085012094508135965061187b565b604080518381526020818501810190925260009101838382377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0019392505050565b61188c8765ffffffffffff16610ef5565b6118a08561189b60418f611f21565b611ba4565b95506118ab866103d1565b60ff1699505050505050505060008060005b84811015611a33576118d0888583611c3a565b909350915060005b8c51811015611a20578c81815181106118f3576118f3611f7f565b60200260200101518403611a0e5760008b828151811061191557611915611f7f565b6020026020010151905061192e81896001901b16151590565b1580156119575750600260ff168d838151811061194d5761194d611f7f565b6020026020010151105b15611a08578c828151811061196e5761196e611f7f565b60200260200101805180919061198390611f47565b81525050838b838151811061199a5761199a611f7f565b602002602001015160018f85815181106119b6576119b6611f7f565b60200260200101516119c89190611f34565b815181106119d8576119d8611f7f565b60209081029190910101526001881b81178c83815181106119fb576119fb611f7f565b6020026020010181815250505b50611a20565b80611a1881611f47565b9150506118d8565b5080611a2b81611f47565b9150506118bd565b50505081602082611a449190611f21565b611a4e919061200a565b611a5990604e611f21565b9998505050505050505050565b60606000835167ffffffffffffffff811115611a8457611a84611ce8565b604051908082528060200260200182016040528015611aad578160200160208202803683370190505b509050600260005b8551811015611b8e5781858281518110611ad157611ad1611f7f565b60200260200101511015611b3757848181518110611af157611af1611f7f565b6020026020010151826040517f2b13aef5000000000000000000000000000000000000000000000000000000008152600401610536929190918252602082015260400190565b6000611b5b878381518110611b4e57611b4e611f7f565b6020026020010151610da8565b905080848381518110611b7057611b70611f7f565b60209081029190910101525080611b8681611f47565b915050611ab5565b5090949350505050565b600061115d828461200a565b60408051600080825260208083018085528690523685900380850135831a948401859052803560608501819052910135608084018190529193909260019060a0016020604051602081039080840390855afa158015611c07573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151979650505050505050565b60008080611c49604e87611f21565b90506000611c76611c6f611c5e602089611f21565b611c69886001611f21565b90611b98565b83906117a3565b90506000611c843683611749565b80359960209091013598509650505050505050565b600060208284031215611cab57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461115d57600080fd5b600060208284031215611ce157600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715611d5e57611d5e611ce8565b604052919050565b600067ffffffffffffffff821115611d8057611d80611ce8565b5060051b60200190565b60006020808385031215611d9d57600080fd5b823567ffffffffffffffff811115611db457600080fd5b8301601f81018513611dc557600080fd5b8035611dd8611dd382611d66565b611d17565b81815260059190911b82018301908381019087831115611df757600080fd5b928401925b82841015611e1557833582529284019290840190611dfc565b979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e5857835183529284019291840191600101611e3c565b50909695505050505050565b60008060408385031215611e7757600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611eb357858101830151858201604001528201611e97565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561056257610562611ef2565b8181038181111561056257610562611ef2565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f7857611f78611ef2565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611fc057600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261200557612005611fc7565b500490565b808202811582820484141761056257610562611ef2565b60008261203057612030611fc7565b50069056fea264697066735822122035dce0a7fd34b5058d3803daf280045a5491652b8f0c69b36034fdddb7b132c164736f6c63430008110033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.