Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18387032 | 432 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
SmartVault
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: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol'; import '@mimic-fi/v3-authorizer/contracts/Authorized.sol'; import '@mimic-fi/v3-authorizer/contracts/interfaces/IAuthorizer.sol'; import '@mimic-fi/v3-fee-controller/contracts/interfaces/IFeeController.sol'; import '@mimic-fi/v3-helpers/contracts/math/FixedPoint.sol'; import '@mimic-fi/v3-helpers/contracts/utils/ERC20Helpers.sol'; import '@mimic-fi/v3-helpers/contracts/utils/IWrappedNativeToken.sol'; import '@mimic-fi/v3-price-oracle/contracts/interfaces/IPriceOracle.sol'; import '@mimic-fi/v3-registry/contracts/interfaces/IRegistry.sol'; import './interfaces/ISmartVault.sol'; /** * @title Smart Vault * @dev Core component where the interaction with the DeFi world occurs */ contract SmartVault is ISmartVault, Authorized, ReentrancyGuardUpgradeable { using SafeERC20 for IERC20; using FixedPoint for uint256; // Whether the smart vault is paused or not bool public override isPaused; // Price oracle reference address public override priceOracle; // Mimic registry reference address public immutable override registry; // Mimic fee controller reference address public immutable override feeController; // Wrapped native token reference address public immutable override wrappedNativeToken; // Tells whether a connector check is ignored or not mapping (address => bool) public override isConnectorCheckIgnored; // Balance connectors are used to define separate tasks workflows, indexed from id and token address mapping (bytes32 => mapping (address => uint256)) public override getBalanceConnector; /** * @dev Modifier to tag smart vault functions in order to check if it is paused */ modifier notPaused() { if (isPaused) revert SmartVaultPaused(); _; } /** * @dev Creates a new Smart Vault implementation with the references that should be shared among all implementations * @param _registry Address of the Mimic registry to be referenced * @param _feeController Address of the Mimic fee controller to be referenced * @param _wrappedNativeToken Address of the wrapped native token to be used */ constructor(address _registry, address _feeController, address _wrappedNativeToken) { registry = _registry; feeController = _feeController; wrappedNativeToken = _wrappedNativeToken; } /** * @dev Initializes the smart vault * @param _authorizer Address of the authorizer to be linked * @param _priceOracle Address of the price oracle to be set, it is ignored in case it's zero */ function initialize(address _authorizer, address _priceOracle) external virtual initializer { __SmartVault_init(_authorizer, _priceOracle); } /** * @dev Initializes the smart vault. It does call upper contracts initializers. * @param _authorizer Address of the authorizer to be linked * @param _priceOracle Address of the price oracle to be set, it is ignored in case it's zero */ function __SmartVault_init(address _authorizer, address _priceOracle) internal onlyInitializing { __ReentrancyGuard_init(); __Authorized_init(_authorizer); __SmartVault_init_unchained(_authorizer, _priceOracle); } /** * @dev Initializes the smart vault. It does not call upper contracts initializers. * @param _priceOracle Address of the price oracle to be set, it is ignored in case it's zero */ function __SmartVault_init_unchained(address, address _priceOracle) internal onlyInitializing { _setPriceOracle(_priceOracle); } /** * @dev It allows receiving native token transfers */ receive() external payable { // solhint-disable-previous-line no-empty-blocks } /** * @dev Tells whether someone has any permission over the smart vault */ function hasPermissions(address who) external view override returns (bool) { return _hasPermissions(who); } /** * @dev Pauses a smart vault. Sender must be authorized. */ function pause() external override auth { if (isPaused) revert SmartVaultPaused(); isPaused = true; emit Paused(); } /** * @dev Unpauses a smart vault. Sender must be authorized. */ function unpause() external override auth { if (!isPaused) revert SmartVaultUnpaused(); isPaused = false; emit Unpaused(); } /** * @dev Sets the price oracle. Sender must be authorized. Smart vault must not be paused. * @param newPriceOracle Address of the new price oracle to be set */ function setPriceOracle(address newPriceOracle) external override nonReentrant notPaused authP(authParams(newPriceOracle)) { _setPriceOracle(newPriceOracle); } /** * @dev Overrides connector checks. Sender must be authorized. Smart vault must not be paused. * @param connector Address of the connector to override its check * @param ignored Whether the connector check should be ignored */ function overrideConnectorCheck(address connector, bool ignored) external override nonReentrant notPaused authP(authParams(connector, ignored)) { isConnectorCheckIgnored[connector] = ignored; emit ConnectorCheckOverridden(connector, ignored); } /** * @dev Updates a balance connector. Sender must be authorized. Smart vault must not be paused. * @param id Balance connector identifier to be updated * @param token Address of the token to update the balance connector for * @param amount Amount to be updated to the balance connector * @param add Whether the balance connector should be increased or decreased */ function updateBalanceConnector(bytes32 id, address token, uint256 amount, bool add) external override nonReentrant notPaused authP(authParams(id, token, amount, add)) { if (id == bytes32(0)) revert SmartVaultBalanceConnectorIdZero(); if (token == address(0)) revert SmartVaultTokenZero(); (add ? _increaseBalanceConnector : _decreaseBalanceConnector)(id, token, amount); } /** * @dev Executes a connector inside of the Smart Vault context. Sender must be authorized. Smart vault must not be paused. * @param connector Address of the connector that will be executed * @param data Call data to be used for the delegate-call * @return result Call response if it was successful, otherwise it reverts */ function execute(address connector, bytes memory data) external override nonReentrant notPaused authP(authParams(connector)) returns (bytes memory result) { _validateConnector(connector); result = Address.functionDelegateCall(connector, data, 'SMART_VAULT_EXECUTE_FAILED'); emit Executed(connector, data, result); } /** * @dev Executes an arbitrary call from the Smart Vault. Sender must be authorized. Smart vault must not be paused. * @param target Address where the call will be sent * @param data Call data to be used for the call * @param value Value in wei that will be attached to the call * @return result Call response if it was successful, otherwise it reverts */ function call(address target, bytes memory data, uint256 value) external override nonReentrant notPaused authP(authParams(target)) returns (bytes memory result) { result = Address.functionCallWithValue(target, data, value, 'SMART_VAULT_CALL_FAILED'); emit Called(target, data, value, result); } /** * @dev Wrap an amount of native tokens to the wrapped ERC20 version of it. Sender must be authorized. Smart vault must not be paused. * @param amount Amount of native tokens to be wrapped */ function wrap(uint256 amount) external override nonReentrant notPaused authP(authParams(amount)) { if (amount == 0) revert SmartVaultAmountZero(); uint256 balance = address(this).balance; if (balance < amount) revert SmartVaultInsufficientNativeTokenBalance(balance, amount); IWrappedNativeToken(wrappedNativeToken).deposit{ value: amount }(); emit Wrapped(amount); } /** * @dev Unwrap an amount of wrapped native tokens. Sender must be authorized. Smart vault must not be paused. * @param amount Amount of wrapped native tokens to unwrapped */ function unwrap(uint256 amount) external override nonReentrant notPaused authP(authParams(amount)) { if (amount == 0) revert SmartVaultAmountZero(); IWrappedNativeToken(wrappedNativeToken).withdraw(amount); emit Unwrapped(amount); } /** * @dev Collect tokens from an external account to the Smart Vault. Sender must be authorized. Smart vault must not be paused. * @param token Address of the token to be collected * @param from Address where the tokens will be transferred from * @param amount Amount of tokens to be transferred */ function collect(address token, address from, uint256 amount) external override nonReentrant notPaused authP(authParams(token, from, amount)) { if (amount == 0) revert SmartVaultAmountZero(); IERC20(token).safeTransferFrom(from, address(this), amount); emit Collected(token, from, amount); } /** * @dev Withdraw tokens to an external account. Sender must be authorized. Smart vault must not be paused. * @param token Address of the token to be withdrawn * @param recipient Address where the tokens will be transferred to * @param amount Amount of tokens to withdraw */ function withdraw(address token, address recipient, uint256 amount) external override nonReentrant notPaused authP(authParams(token, recipient, amount)) { if (amount == 0) revert SmartVaultAmountZero(); if (recipient == address(0)) revert SmartVaultRecipientZero(); (, uint256 pct, address collector) = IFeeController(feeController).getFee(address(this)); uint256 feeAmount = amount.mulDown(pct); _safeTransfer(token, collector, feeAmount); uint256 withdrawn = amount - feeAmount; _safeTransfer(token, recipient, withdrawn); emit Withdrawn(token, recipient, withdrawn, feeAmount); } /** * @dev Transfers ERC20 or native tokens from the Smart Vault to an external account * @param token Address of the ERC20 token to transfer * @param to Address transferring the tokens to * @param amount Amount of tokens to transfer */ function _safeTransfer(address token, address to, uint256 amount) internal { if (amount == 0) return; ERC20Helpers.transfer(token, to, amount); } /** * @dev Sets the price oracle instance * @param newPriceOracle Address of the new price oracle to be set */ function _setPriceOracle(address newPriceOracle) internal { priceOracle = newPriceOracle; emit PriceOracleSet(newPriceOracle); } /** * @dev Increases a balance connector * @param id Balance connector id to be increased * @param token Address of the token to increase the balance connector for * @param amount Amount to be added to the connector */ function _increaseBalanceConnector(bytes32 id, address token, uint256 amount) internal { getBalanceConnector[id][token] += amount; emit BalanceConnectorUpdated(id, token, amount, true); } /** * @dev Decreases a balance connector * @param id Balance connector id * @param token Address of the token to decrease the balance connector for * @param amount Amount to be added to the connector */ function _decreaseBalanceConnector(bytes32 id, address token, uint256 amount) internal { uint256 value = getBalanceConnector[id][token]; if (value < amount) revert SmartVaultBalanceConnectorInsufficientBalance(id, token, value, amount); getBalanceConnector[id][token] = value - amount; emit BalanceConnectorUpdated(id, token, amount, false); } /** * @dev Validates a connector against the Mimic Registry * @param connector Address of the connector to validate */ function _validateConnector(address connector) private view { if (isConnectorCheckIgnored[connector]) return; if (!IRegistry(registry).isRegistered(connector)) revert SmartVaultConnectorNotRegistered(connector); if (!IRegistry(registry).isStateless(connector)) revert SmartVaultConnectorNotStateless(connector); if (IRegistry(registry).isDeprecated(connector)) revert SmartVaultConnectorDeprecated(connector); } }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.17; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import './AuthorizedHelpers.sol'; import './interfaces/IAuthorized.sol'; import './interfaces/IAuthorizer.sol'; /** * @title Authorized * @dev Implementation using an authorizer as its access-control mechanism. It offers `auth` and `authP` modifiers to * tag its own functions in order to control who can access them against the authorizer referenced. */ contract Authorized is IAuthorized, Initializable, AuthorizedHelpers { // Authorizer reference address public override authorizer; /** * @dev Modifier that should be used to tag protected functions */ modifier auth() { _authenticate(msg.sender, msg.sig); _; } /** * @dev Modifier that should be used to tag protected functions with params */ modifier authP(uint256[] memory params) { _authenticate(msg.sender, msg.sig, params); _; } /** * @dev Creates a new authorized contract. Note that initializers are disabled at creation time. */ constructor() { _disableInitializers(); } /** * @dev Initializes the authorized contract. It does call upper contracts initializers. * @param _authorizer Address of the authorizer to be set */ function __Authorized_init(address _authorizer) internal onlyInitializing { __Authorized_init_unchained(_authorizer); } /** * @dev Initializes the authorized contract. It does not call upper contracts initializers. * @param _authorizer Address of the authorizer to be set */ function __Authorized_init_unchained(address _authorizer) internal onlyInitializing { authorizer = _authorizer; } /** * @dev Reverts if `who` is not allowed to call `what` * @param who Address to be authenticated * @param what Function selector to be authenticated */ function _authenticate(address who, bytes4 what) internal view { _authenticate(who, what, new uint256[](0)); } /** * @dev Reverts if `who` is not allowed to call `what` with `how` * @param who Address to be authenticated * @param what Function selector to be authenticated * @param how Params to be authenticated */ function _authenticate(address who, bytes4 what, uint256[] memory how) internal view { if (!_isAuthorized(who, what, how)) revert AuthSenderNotAllowed(who, what, how); } /** * @dev Tells whether `who` has any permission on this contract * @param who Address asking permissions for */ function _hasPermissions(address who) internal view returns (bool) { return IAuthorizer(authorizer).hasPermissions(who, address(this)); } /** * @dev Tells whether `who` is allowed to call `what` * @param who Address asking permission for * @param what Function selector asking permission for */ function _isAuthorized(address who, bytes4 what) internal view returns (bool) { return _isAuthorized(who, what, new uint256[](0)); } /** * @dev Tells whether `who` is allowed to call `what` with `how` * @param who Address asking permission for * @param what Function selector asking permission for * @param how Params asking permission for */ function _isAuthorized(address who, bytes4 what, uint256[] memory how) internal view returns (bool) { return IAuthorizer(authorizer).isAuthorized(who, address(this), what, how); } }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.17; /** * @title AuthorizedHelpers * @dev Syntax sugar methods to operate with authorizer params easily */ contract AuthorizedHelpers { function authParams(address p1) internal pure returns (uint256[] memory r) { return authParams(uint256(uint160(p1))); } function authParams(bytes32 p1) internal pure returns (uint256[] memory r) { return authParams(uint256(p1)); } function authParams(uint256 p1) internal pure returns (uint256[] memory r) { r = new uint256[](1); r[0] = p1; } function authParams(address p1, bool p2) internal pure returns (uint256[] memory r) { r = new uint256[](2); r[0] = uint256(uint160(p1)); r[1] = p2 ? 1 : 0; } function authParams(address p1, uint256 p2) internal pure returns (uint256[] memory r) { r = new uint256[](2); r[0] = uint256(uint160(p1)); r[1] = p2; } function authParams(address p1, address p2) internal pure returns (uint256[] memory r) { r = new uint256[](2); r[0] = uint256(uint160(p1)); r[1] = uint256(uint160(p2)); } function authParams(bytes32 p1, bytes32 p2) internal pure returns (uint256[] memory r) { r = new uint256[](2); r[0] = uint256(p1); r[1] = uint256(p2); } function authParams(address p1, address p2, uint256 p3) internal pure returns (uint256[] memory r) { r = new uint256[](3); r[0] = uint256(uint160(p1)); r[1] = uint256(uint160(p2)); r[2] = p3; } function authParams(address p1, address p2, address p3) internal pure returns (uint256[] memory r) { r = new uint256[](3); r[0] = uint256(uint160(p1)); r[1] = uint256(uint160(p2)); r[2] = uint256(uint160(p3)); } function authParams(address p1, address p2, bytes4 p3) internal pure returns (uint256[] memory r) { r = new uint256[](3); r[0] = uint256(uint160(p1)); r[1] = uint256(uint160(p2)); r[2] = uint256(uint32(p3)); } function authParams(address p1, uint256 p2, uint256 p3) internal pure returns (uint256[] memory r) { r = new uint256[](3); r[0] = uint256(uint160(p1)); r[1] = p2; r[2] = p3; } function authParams(address p1, address p2, uint256 p3, uint256 p4) internal pure returns (uint256[] memory r) { r = new uint256[](4); r[0] = uint256(uint160(p1)); r[1] = uint256(uint160(p2)); r[2] = p3; r[3] = p4; } function authParams(address p1, uint256 p2, uint256 p3, uint256 p4) internal pure returns (uint256[] memory r) { r = new uint256[](4); r[0] = uint256(uint160(p1)); r[1] = p2; r[2] = p3; r[3] = p4; } function authParams(bytes32 p1, address p2, uint256 p3, bool p4) internal pure returns (uint256[] memory r) { r = new uint256[](4); r[0] = uint256(p1); r[1] = uint256(uint160(p2)); r[2] = p3; r[3] = p4 ? 1 : 0; } function authParams(address p1, uint256 p2, uint256 p3, uint256 p4, uint256 p5) internal pure returns (uint256[] memory r) { r = new uint256[](5); r[0] = uint256(uint160(p1)); r[1] = p2; r[2] = p3; r[3] = p4; r[4] = p5; } }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity >=0.8.0; /** * @dev Authorized interface */ interface IAuthorized { /** * @dev Sender `who` is not allowed to call `what` with `how` */ error AuthSenderNotAllowed(address who, bytes4 what, uint256[] how); /** * @dev Tells the address of the authorizer reference */ function authorizer() external view returns (address); }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity >=0.8.0; /** * @dev Authorizer interface */ interface IAuthorizer { /** * @dev Permission change * @param where Address of the contract to change a permission for * @param changes List of permission changes to be executed */ struct PermissionChange { address where; GrantPermission[] grants; RevokePermission[] revokes; } /** * @dev Grant permission data * @param who Address to be authorized * @param what Function selector to be authorized * @param params List of params to restrict the given permission */ struct GrantPermission { address who; bytes4 what; Param[] params; } /** * @dev Revoke permission data * @param who Address to be unauthorized * @param what Function selector to be unauthorized */ struct RevokePermission { address who; bytes4 what; } /** * @dev Params used to validate permissions params against * @param op ID of the operation to compute in order to validate a permission param * @param value Comparison value */ struct Param { uint8 op; uint248 value; } /** * @dev Sender is not authorized to call `what` on `where` with `how` */ error AuthorizerSenderNotAllowed(address who, address where, bytes4 what, uint256[] how); /** * @dev The operation param is invalid */ error AuthorizerInvalidParamOp(uint8 op); /** * @dev Emitted every time `who`'s permission to perform `what` on `where` is granted with `params` */ event Authorized(address indexed who, address indexed where, bytes4 indexed what, Param[] params); /** * @dev Emitted every time `who`'s permission to perform `what` on `where` is revoked */ event Unauthorized(address indexed who, address indexed where, bytes4 indexed what); /** * @dev Tells whether `who` has any permission on `where` * @param who Address asking permission for * @param where Target address asking permission for */ function hasPermissions(address who, address where) external view returns (bool); /** * @dev Tells the number of permissions `who` has on `where` * @param who Address asking permission for * @param where Target address asking permission for */ function getPermissionsLength(address who, address where) external view returns (uint256); /** * @dev Tells whether `who` is allowed to call `what` on `where` with `how` * @param who Address asking permission for * @param where Target address asking permission for * @param what Function selector asking permission for * @param how Params asking permission for */ function isAuthorized(address who, address where, bytes4 what, uint256[] memory how) external view returns (bool); /** * @dev Tells the params set for a given permission * @param who Address asking permission params of * @param where Target address asking permission params of * @param what Function selector asking permission params of */ function getPermissionParams(address who, address where, bytes4 what) external view returns (Param[] memory); /** * @dev Executes a list of permission changes * @param changes List of permission changes to be executed */ function changePermissions(PermissionChange[] memory changes) external; /** * @dev Authorizes `who` to call `what` on `where` restricted by `params` * @param who Address to be authorized * @param where Target address to be granted for * @param what Function selector to be granted * @param params Optional params to restrict a permission attempt */ function authorize(address who, address where, bytes4 what, Param[] memory params) external; /** * @dev Unauthorizes `who` to call `what` on `where`. Sender must be authorized. * @param who Address to be authorized * @param where Target address to be revoked for * @param what Function selector to be revoked */ function unauthorize(address who, address where, bytes4 what) external; }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity >=0.8.0; /** * @dev Fee controller interface */ interface IFeeController { /** * @dev The collector to be set is zero */ error FeeControllerCollectorZero(); /** * @dev The requested max percentage to be set is zero */ error FeeControllerMaxPctZero(); /** * @dev The requested max percentage to be set is above one */ error FeeControllerMaxPctAboveOne(); /** * @dev No max percentage has been set for the requested smart vault */ error FeeControllerMaxPctNotSet(address smartVault); /** * @dev The requested percentage to be set is above the smart vault's max percentage */ error FeeControllerPctAboveMax(address smartVault, uint256 pct, uint256 maxPct); /** * @dev The requested max percentage to be set is above the previous max percentage set */ error FeeControllerMaxPctAbovePrevious(address smartVault, uint256 requestedMaxPct, uint256 previousMaxPct); /** * @dev Emitted every time a default fee collector is set */ event DefaultFeeCollectorSet(address indexed collector); /** * @dev Emitted every time a max fee percentage is set for a smart vault */ event MaxFeePercentageSet(address indexed smartVault, uint256 maxPct); /** * @dev Emitted every time a custom fee percentage is set */ event FeePercentageSet(address indexed smartVault, uint256 pct); /** * @dev Emitted every time a custom fee collector is set */ event FeeCollectorSet(address indexed smartVault, address indexed collector); /** * @dev Tells the default fee collector */ function defaultFeeCollector() external view returns (address); /** * @dev Tells if there is a fee set for a smart vault * @param smartVault Address of the smart vault being queried */ function hasFee(address smartVault) external view returns (bool); /** * @dev Tells the applicable fee information for a smart vault * @param smartVault Address of the smart vault being queried */ function getFee(address smartVault) external view returns (uint256 max, uint256 pct, address collector); /** * @dev Sets the default fee collector * @param collector Default fee collector to be set */ function setDefaultFeeCollector(address collector) external; /** * @dev Sets a max fee percentage for a smart vault * @param smartVault Address of smart vault to set a fee percentage for * @param maxPct Max fee percentage to be set */ function setMaxFeePercentage(address smartVault, uint256 maxPct) external; /** * @dev Sets a fee percentage for a smart vault * @param smartVault Address of smart vault to set a fee percentage for * @param pct Fee percentage to be set */ function setFeePercentage(address smartVault, uint256 pct) external; /** * @dev Sets a fee collector for a smart vault * @param smartVault Address of smart vault to set a fee collector for * @param collector Fee collector to be set */ function setFeeCollector(address smartVault, address collector) external; }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.0; /** * @title FixedPoint * @dev Math library to operate with fixed point values with 18 decimals */ library FixedPoint { // 1 in fixed point value: 18 decimal places uint256 internal constant ONE = 1e18; /** * @dev Multiplication overflow */ error FixedPointMulOverflow(uint256 a, uint256 b); /** * @dev Division by zero */ error FixedPointZeroDivision(); /** * @dev Division internal error */ error FixedPointDivInternal(uint256 a, uint256 aInflated); /** * @dev Multiplies two fixed point numbers rounding down */ function mulDown(uint256 a, uint256 b) internal pure returns (uint256) { unchecked { uint256 product = a * b; if (a != 0 && product / a != b) revert FixedPointMulOverflow(a, b); return product / ONE; } } /** * @dev Multiplies two fixed point numbers rounding up */ function mulUp(uint256 a, uint256 b) internal pure returns (uint256) { unchecked { uint256 product = a * b; if (a != 0 && product / a != b) revert FixedPointMulOverflow(a, b); return product == 0 ? 0 : (((product - 1) / ONE) + 1); } } /** * @dev Divides two fixed point numbers rounding down */ function divDown(uint256 a, uint256 b) internal pure returns (uint256) { unchecked { if (b == 0) revert FixedPointZeroDivision(); if (a == 0) return 0; uint256 aInflated = a * ONE; if (aInflated / a != ONE) revert FixedPointDivInternal(a, aInflated); return aInflated / b; } } /** * @dev Divides two fixed point numbers rounding up */ function divUp(uint256 a, uint256 b) internal pure returns (uint256) { unchecked { if (b == 0) revert FixedPointZeroDivision(); if (a == 0) return 0; uint256 aInflated = a * ONE; if (aInflated / a != ONE) revert FixedPointDivInternal(a, aInflated); return ((aInflated - 1) / b) + 1; } } }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.0; /** * @title Denominations * @dev Provides a list of ground denominations for those tokens that cannot be represented by an ERC20. * For now, the only needed is the native token that could be ETH, MATIC, or other depending on the layer being operated. */ library Denominations { address internal constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; // Fiat currencies follow https://en.wikipedia.org/wiki/ISO_4217 address internal constant USD = address(840); function isNativeToken(address token) internal pure returns (bool) { return token == NATIVE_TOKEN; } }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import './Denominations.sol'; /** * @title ERC20Helpers * @dev Provides a list of ERC20 helper methods */ library ERC20Helpers { function approve(address token, address to, uint256 amount) internal { SafeERC20.safeApprove(IERC20(token), to, 0); SafeERC20.safeApprove(IERC20(token), to, amount); } function transfer(address token, address to, uint256 amount) internal { if (Denominations.isNativeToken(token)) Address.sendValue(payable(to), amount); else SafeERC20.safeTransfer(IERC20(token), to, amount); } function balanceOf(address token, address account) internal view returns (uint256) { if (Denominations.isNativeToken(token)) return address(account).balance; else return IERC20(token).balanceOf(address(account)); } }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; /** * @title IWrappedNativeToken */ interface IWrappedNativeToken is IERC20 { /** * @dev Wraps msg.value into the wrapped-native token */ function deposit() external payable; /** * @dev Unwraps requested amount to the native token */ function withdraw(uint256 amount) external; }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity >=0.8.0; import '@mimic-fi/v3-authorizer/contracts/interfaces/IAuthorized.sol'; /** * @title IPriceOracle * @dev Price oracle interface * * Tells the price of a token (base) in a given quote based the following rule: the response is expressed using the * corresponding number of decimals so that when performing a fixed point product of it by a `base` amount it results * in a value expressed in `quote` decimals. For example, if `base` is ETH and `quote` is USDC, then the returned * value is expected to be expressed using 6 decimals: * * FixedPoint.mul(X[ETH], price[USDC/ETH]) = FixedPoint.mul(X[18], price[6]) = X * price [6] */ interface IPriceOracle is IAuthorized { /** * @dev Price data * @param base Token to rate * @param quote Token used for the price rate * @param rate Price of a token (base) expressed in `quote` * @param deadline Expiration timestamp until when the given quote is considered valid */ struct PriceData { address base; address quote; uint256 rate; uint256 deadline; } /** * @dev The signer is not allowed */ error PriceOracleInvalidSigner(address signer); /** * @dev The feed for the given (base, quote) pair doesn't exist */ error PriceOracleMissingFeed(address base, address quote); /** * @dev The price deadline is in the past */ error PriceOracleOutdatedPrice(address base, address quote, uint256 deadline, uint256 currentTimestamp); /** * @dev The base decimals are bigger than the quote decimals plus the fixed point decimals */ error PriceOracleBaseDecimalsTooBig(address base, uint256 baseDecimals, address quote, uint256 quoteDecimals); /** * @dev The inverse feed decimals are bigger than the maximum inverse feed decimals */ error PriceOracleInverseFeedDecimalsTooBig(address inverseFeed, uint256 inverseFeedDecimals); /** * @dev The quote feed decimals are bigger than the base feed decimals plus the fixed point decimals */ error PriceOracleQuoteFeedDecimalsTooBig(uint256 quoteFeedDecimals, uint256 baseFeedDecimals); /** * @dev Emitted every time a signer is changed */ event SignerSet(address indexed signer, bool allowed); /** * @dev Emitted every time a feed is set for (base, quote) pair */ event FeedSet(address indexed base, address indexed quote, address feed); /** * @dev Tells whether an address is as an allowed signer or not * @param signer Address of the signer being queried */ function isSignerAllowed(address signer) external view returns (bool); /** * @dev Tells the list of allowed signers */ function getAllowedSigners() external view returns (address[] memory); /** * @dev Tells the digest expected to be signed by the off-chain oracle signers for a list of prices * @param prices List of prices to be signed */ function getPricesDigest(PriceData[] memory prices) external view returns (bytes32); /** * @dev Tells the price of a token `base` expressed in a token `quote` * @param base Token to rate * @param quote Token used for the price rate */ function getPrice(address base, address quote) external view returns (uint256); /** * @dev Tells the price of a token `base` expressed in a token `quote` * @param base Token to rate * @param quote Token used for the price rate * @param data Encoded data to validate in order to compute the requested rate */ function getPrice(address base, address quote, bytes memory data) external view returns (uint256); /** * @dev Tells the feed address for (base, quote) pair. It returns the zero address if there is no one set. * @param base Token to be rated * @param quote Token used for the price rate */ function getFeed(address base, address quote) external view returns (address); /** * @dev Sets a signer condition * @param signer Address of the signer to be set * @param allowed Whether the requested signer is allowed */ function setSigner(address signer, bool allowed) external; /** * @dev Sets a feed for a (base, quote) pair * @param base Token base to be set * @param quote Token quote to be set * @param feed Feed to be set */ function setFeed(address base, address quote, address feed) external; }
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.0; import './IRegistry.sol'; /** * @dev Registry interface */ interface IRegistry { /** * @dev The implementation address is zero */ error RegistryImplementationAddressZero(); /** * @dev The implementation is already registered */ error RegistryImplementationRegistered(address implementation); /** * @dev The implementation is not registered */ error RegistryImplementationNotRegistered(address implementation); /** * @dev The implementation is already deprecated */ error RegistryImplementationDeprecated(address implementation); /** * @dev Emitted every time an implementation is registered */ event Registered(address indexed implementation, string name, bool stateless); /** * @dev Emitted every time an implementation is deprecated */ event Deprecated(address indexed implementation); /** * @dev Tells whether an implementation is registered * @param implementation Address of the implementation being queried */ function isRegistered(address implementation) external view returns (bool); /** * @dev Tells whether an implementation is stateless or not * @param implementation Address of the implementation being queried */ function isStateless(address implementation) external view returns (bool); /** * @dev Tells whether an implementation is deprecated * @param implementation Address of the implementation being queried */ function isDeprecated(address implementation) external view returns (bool); /** * @dev Creates and registers an implementation * @param name Name of the implementation * @param code Code of the implementation to create and register * @param stateless Whether the new implementation is considered stateless or not */ function create(string memory name, bytes memory code, bool stateless) external; /** * @dev Registers an implementation * @param name Name of the implementation * @param implementation Address of the implementation to be registered * @param stateless Whether the given implementation is considered stateless or not */ function register(string memory name, address implementation, bool stateless) external; /** * @dev Deprecates an implementation * @param implementation Address of the implementation to be deprecated */ function deprecate(address implementation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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] * ``` * 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. Equivalent to `reinitializer(1)`. */ 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. * * `initializer` is equivalent to `reinitializer(1)`, so 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. * * 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. */ 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. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 * ==== * * [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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @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 * ==== * * [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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity >=0.8.0; import '@mimic-fi/v3-authorizer/contracts/interfaces/IAuthorized.sol'; /** * @dev Smart Vault interface */ interface ISmartVault is IAuthorized { /** * @dev The smart vault is paused */ error SmartVaultPaused(); /** * @dev The smart vault is unpaused */ error SmartVaultUnpaused(); /** * @dev The token is zero */ error SmartVaultTokenZero(); /** * @dev The amount is zero */ error SmartVaultAmountZero(); /** * @dev The recipient is zero */ error SmartVaultRecipientZero(); /** * @dev The connector is deprecated */ error SmartVaultConnectorDeprecated(address connector); /** * @dev The connector is not registered */ error SmartVaultConnectorNotRegistered(address connector); /** * @dev The connector is not stateless */ error SmartVaultConnectorNotStateless(address connector); /** * @dev The connector ID is zero */ error SmartVaultBalanceConnectorIdZero(); /** * @dev The balance connector's balance is lower than the requested amount to be deducted */ error SmartVaultBalanceConnectorInsufficientBalance(bytes32 id, address token, uint256 balance, uint256 amount); /** * @dev The smart vault's native token balance is lower than the requested amount to be deducted */ error SmartVaultInsufficientNativeTokenBalance(uint256 balance, uint256 amount); /** * @dev Emitted every time a smart vault is paused */ event Paused(); /** * @dev Emitted every time a smart vault is unpaused */ event Unpaused(); /** * @dev Emitted every time the price oracle is set */ event PriceOracleSet(address indexed priceOracle); /** * @dev Emitted every time a connector check is overridden */ event ConnectorCheckOverridden(address indexed connector, bool ignored); /** * @dev Emitted every time a balance connector is updated */ event BalanceConnectorUpdated(bytes32 indexed id, address indexed token, uint256 amount, bool added); /** * @dev Emitted every time `execute` is called */ event Executed(address indexed connector, bytes data, bytes result); /** * @dev Emitted every time `call` is called */ event Called(address indexed target, bytes data, uint256 value, bytes result); /** * @dev Emitted every time `wrap` is called */ event Wrapped(uint256 amount); /** * @dev Emitted every time `unwrap` is called */ event Unwrapped(uint256 amount); /** * @dev Emitted every time `collect` is called */ event Collected(address indexed token, address indexed from, uint256 amount); /** * @dev Emitted every time `withdraw` is called */ event Withdrawn(address indexed token, address indexed recipient, uint256 amount, uint256 fee); /** * @dev Tells if the smart vault is paused or not */ function isPaused() external view returns (bool); /** * @dev Tells the address of the price oracle */ function priceOracle() external view returns (address); /** * @dev Tells the address of the Mimic's registry */ function registry() external view returns (address); /** * @dev Tells the address of the Mimic's fee controller */ function feeController() external view returns (address); /** * @dev Tells the address of the wrapped native token */ function wrappedNativeToken() external view returns (address); /** * @dev Tells if a connector check is ignored * @param connector Address of the connector being queried */ function isConnectorCheckIgnored(address connector) external view returns (bool); /** * @dev Tells the balance to a balance connector for a token * @param id Balance connector identifier * @param token Address of the token querying the balance connector for */ function getBalanceConnector(bytes32 id, address token) external view returns (uint256); /** * @dev Tells whether someone has any permission over the smart vault */ function hasPermissions(address who) external view returns (bool); /** * @dev Pauses a smart vault */ function pause() external; /** * @dev Unpauses a smart vault */ function unpause() external; /** * @dev Sets the price oracle * @param newPriceOracle Address of the new price oracle to be set */ function setPriceOracle(address newPriceOracle) external; /** * @dev Overrides connector checks * @param connector Address of the connector to override its check * @param ignored Whether the connector check should be ignored */ function overrideConnectorCheck(address connector, bool ignored) external; /** * @dev Updates a balance connector * @param id Balance connector identifier to be updated * @param token Address of the token to update the balance connector for * @param amount Amount to be updated to the balance connector * @param add Whether the balance connector should be increased or decreased */ function updateBalanceConnector(bytes32 id, address token, uint256 amount, bool add) external; /** * @dev Executes a connector inside of the Smart Vault context * @param connector Address of the connector that will be executed * @param data Call data to be used for the delegate-call * @return result Call response if it was successful, otherwise it reverts */ function execute(address connector, bytes memory data) external returns (bytes memory result); /** * @dev Executes an arbitrary call from the Smart Vault * @param target Address where the call will be sent * @param data Call data to be used for the call * @param value Value in wei that will be attached to the call * @return result Call response if it was successful, otherwise it reverts */ function call(address target, bytes memory data, uint256 value) external returns (bytes memory result); /** * @dev Wrap an amount of native tokens to the wrapped ERC20 version of it * @param amount Amount of native tokens to be wrapped */ function wrap(uint256 amount) external; /** * @dev Unwrap an amount of wrapped native tokens * @param amount Amount of wrapped native tokens to unwrapped */ function unwrap(uint256 amount) external; /** * @dev Collect tokens from an external account to the Smart Vault * @param token Address of the token to be collected * @param from Address where the tokens will be transferred from * @param amount Amount of tokens to be transferred */ function collect(address token, address from, uint256 amount) external; /** * @dev Withdraw tokens to an external account * @param token Address of the token to be withdrawn * @param recipient Address where the tokens will be transferred to * @param amount Amount of tokens to withdraw */ function withdraw(address token, address recipient, uint256 amount) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import './ContractMock.sol'; contract ConnectorMock { ContractMock public immutable mock; constructor() { mock = new ContractMock(); } function call() external payable { // solhint-disable-next-line avoid-low-level-calls mock.call(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract ContractMock { event Received(address indexed sender, uint256 value); function call() external payable { emit Received(msg.sender, msg.value); } }
{ "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
[{"inputs":[{"internalType":"address","name":"_registry","type":"address"},{"internalType":"address","name":"_feeController","type":"address"},{"internalType":"address","name":"_wrappedNativeToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bytes4","name":"what","type":"bytes4"},{"internalType":"uint256[]","name":"how","type":"uint256[]"}],"name":"AuthSenderNotAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"FixedPointMulOverflow","type":"error"},{"inputs":[],"name":"SmartVaultAmountZero","type":"error"},{"inputs":[],"name":"SmartVaultBalanceConnectorIdZero","type":"error"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SmartVaultBalanceConnectorInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"connector","type":"address"}],"name":"SmartVaultConnectorDeprecated","type":"error"},{"inputs":[{"internalType":"address","name":"connector","type":"address"}],"name":"SmartVaultConnectorNotRegistered","type":"error"},{"inputs":[{"internalType":"address","name":"connector","type":"address"}],"name":"SmartVaultConnectorNotStateless","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SmartVaultInsufficientNativeTokenBalance","type":"error"},{"inputs":[],"name":"SmartVaultPaused","type":"error"},{"inputs":[],"name":"SmartVaultRecipientZero","type":"error"},{"inputs":[],"name":"SmartVaultTokenZero","type":"error"},{"inputs":[],"name":"SmartVaultUnpaused","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"added","type":"bool"}],"name":"BalanceConnectorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"result","type":"bytes"}],"name":"Called","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Collected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"connector","type":"address"},{"indexed":false,"internalType":"bool","name":"ignored","type":"bool"}],"name":"ConnectorCheckOverridden","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"connector","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"result","type":"bytes"}],"name":"Executed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"priceOracle","type":"address"}],"name":"PriceOracleSet","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"Withdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Wrapped","type":"event"},{"inputs":[],"name":"authorizer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"call","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"connector","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","type":"address"}],"name":"getBalanceConnector","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"hasPermissions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_authorizer","type":"address"},{"internalType":"address","name":"_priceOracle","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isConnectorCheckIgnored","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"connector","type":"address"},{"internalType":"bool","name":"ignored","type":"bool"}],"name":"overrideConnectorCheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"priceOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPriceOracle","type":"address"}],"name":"setPriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"add","type":"bool"}],"name":"updateBalanceConnector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrappedNativeToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040523480156200001157600080fd5b50604051620030483803806200304883398101604081905262000034916200013b565b6200003e6200005c565b6001600160a01b0392831660805290821660a0521660c05262000185565b600054610100900460ff1615620000c95760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff90811610156200011c576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b80516001600160a01b03811681146200013657600080fd5b919050565b6000806000606084860312156200015157600080fd5b6200015c846200011e565b92506200016c602085016200011e565b91506200017c604085016200011e565b90509250925092565b60805160a05160c051612e69620001df600039600081816101d6015281816111ef01526113e101526000818161036b0152610fb201526000818161039f015281816116bc015281816117a001526118840152612e696000f3fe60806040526004361061016d5760003560e01c8063530e784f116100cb578063c8fea2fb1161007f578063de0e9a3e11610059578063de0e9a3e14610456578063ea598cb014610476578063eb056bbb1461049657600080fd5b8063c8fea2fb146103f0578063d09edf3114610410578063d9caed121461043657600080fd5b80637b103999116100b05780637b1039991461038d5780638456cb59146103c1578063b187bd26146103d657600080fd5b8063530e784f146103395780636999b3771461035957600080fd5b806328a3a266116101225780634532ed5a116101075780634532ed5a146102d9578063485cc955146102f95780634ae000411461031957600080fd5b806328a3a266146102925780633f4ba83a146102c257600080fd5b80631cff79cd116101535780631cff79cd146102105780631ffa27f91461023d5780632630c12f1461026d57600080fd5b8062bc48941461017957806317fcb39b146101c457600080fd5b3661017457005b600080fd5b34801561018557600080fd5b506101b1610194366004612873565b603560209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b3480156101d057600080fd5b506101f87f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101bb565b34801561021c57600080fd5b5061023061022b36600461297d565b6104b6565b6040516101bb9190612a3b565b34801561024957600080fd5b5061025d610258366004612a4e565b610622565b60405190151581526020016101bb565b34801561027957600080fd5b506033546101f89061010090046001600160a01b031681565b34801561029e57600080fd5b5061025d6102ad366004612a4e565b60346020526000908152604090205460ff1681565b3480156102ce57600080fd5b506102d7610633565b005b3480156102e557600080fd5b506102d76102f4366004612a79565b6106f0565b34801561030557600080fd5b506102d7610314366004612aa7565b61083f565b34801561032557600080fd5b50610230610334366004612ad5565b6109bb565b34801561034557600080fd5b506102d7610354366004612a4e565b610b1d565b34801561036557600080fd5b506101f87f000000000000000000000000000000000000000000000000000000000000000081565b34801561039957600080fd5b506101f87f000000000000000000000000000000000000000000000000000000000000000081565b3480156103cd57600080fd5b506102d7610bfa565b3480156103e257600080fd5b5060335461025d9060ff1681565b3480156103fc57600080fd5b506102d761040b366004612b2e565b610cbb565b34801561041c57600080fd5b506000546101f8906201000090046001600160a01b031681565b34801561044257600080fd5b506102d7610451366004612b2e565b610e2f565b34801561046257600080fd5b506102d7610471366004612b6f565b6110ba565b34801561048257600080fd5b506102d7610491366004612b6f565b611294565b3480156104a257600080fd5b506102d76104b1366004612b88565b611495565b606060026001540361050f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260015560335460ff1615610551576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61055a83611605565b610589336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b61059284611660565b6105d284846040518060400160405280601a81526020017f534d4152545f5641554c545f455845435554455f4641494c4544000000000000815250611934565b9150836001600160a01b03167fc96720f35dd524e76ea92971ce13d08e9a17816bf3b0008a7083e6032354ebb5848460405161060f929190612bd2565b60405180910390a2506001805592915050565b600061062d82611a2a565b92915050565b610661336000357fffffffff0000000000000000000000000000000000000000000000000000000016611abf565b60335460ff1661069d576040517f55fc734200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b603380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b6002600154036107425760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610784576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61078e8282611adf565b6107bd336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b6001600160a01b03831660008181526034602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527fb59eefe3d43ac0e52238583d75ad6c45dff171b4d14853da666ce4c3f1ed289f910160405180910390a250506001805550565b600054610100900460ff161580801561085f5750600054600160ff909116105b806108795750303b158015610879575060005460ff166001145b6108eb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610506565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055801561094957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b6109538383611b5f565b80156109b657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b6060600260015403610a0f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610a51576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a5a84611605565b610a89336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b610aca8585856040518060400160405280601781526020017f534d4152545f5641554c545f43414c4c5f4641494c4544000000000000000000815250611bf7565b9150846001600160a01b03167f8e5d52c2fd20a8ca33fcfe8232fb93b5c1b40ac5c050512ac0ba6033dfb02d4e858585604051610b0993929190612c00565b60405180910390a250600180559392505050565b600260015403610b6f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610bb1576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bba81611605565b610be9336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b610bf282611d3f565b505060018055565b610c28336000357fffffffff0000000000000000000000000000000000000000000000000000000016611abf565b60335460ff1615610c65576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b603380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b600260015403610d0d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610d4f576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5a838383611da8565b610d89336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b81600003610dc3576040517ff6faad9300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dd86001600160a01b038516843085611e43565b826001600160a01b0316846001600160a01b03167f484decdc1e9549e1866295f6f86c889ded3f7de410e7488a7a415978589dc8fd84604051610e1d91815260200190565b60405180910390a35050600180555050565b600260015403610e815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610ec3576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ece838383611da8565b610efd336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b81600003610f37576040517ff6faad9300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316610f77576040517f4513279f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fb88c914800000000000000000000000000000000000000000000000000000000815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063b88c914890602401606060405180830381865afa158015610ff9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101d9190612c35565b9093509150600090506110308584611f18565b905061103d878383611f8e565b60006110498287612c9d565b9050611056888883611f8e565b866001600160a01b0316886001600160a01b03167f91fb9d98b786c57d74c099ccd2beca1739e9f6a81fb49001ca465c4b7591bbe283856040516110a4929190918252602082015260400190565b60405180910390a3505060018055505050505050565b60026001540361110c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff161561114e576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61115781611fa6565b611186336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b816000036111c0576040517ff6faad9300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f2e1a7d4d000000000000000000000000000000000000000000000000000000008152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561123b57600080fd5b505af115801561124f573d6000803e3d6000fd5b505050507fbeaa92c6354c6dcf375d2c514352b2c11bc865784722e5dd9b267e606eb5fc5f8260405161128491815260200190565b60405180910390a1505060018055565b6002600154036112e65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615611328576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61133181611fa6565b611360336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b8160000361139a576040517ff6faad9300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b47828110156113df576040517f392d65580000000000000000000000000000000000000000000000000000000081526004810182905260248101849052604401610506565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b15801561143a57600080fd5b505af115801561144e573d6000803e3d6000fd5b50505050507f5b8cd8f3a67af1dee11ad4321a05f79a76cc7ea517810fc56d6d96c1e60d36868360405161148491815260200190565b60405180910390a150506001805550565b6002600154036114e75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615611529576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153584848484611fed565b611564336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b8461159b576040517f93109a8300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166115db576040517f3df5130600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115fa858585856115ee576120b56115f2565b6121a35b63ffffffff16565b505060018055505050565b606061062d826001600160a01b0316611fa6565b611624838383612225565b6109b6578282826040517f960c80da00000000000000000000000000000000000000000000000000000000815260040161050693929190612ceb565b6001600160a01b03811660009081526034602052604090205460ff16156116845750565b6040517fc3c5a5470000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063c3c5a54790602401602060405180830381865afa158015611703573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117279190612d35565b611768576040517f76df38f40000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610506565b6040517f690d0aed0000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063690d0aed90602401602060405180830381865afa1580156117e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180b9190612d35565b61184c576040517f01a85b210000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610506565b6040517f94543c150000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527f000000000000000000000000000000000000000000000000000000000000000016906394543c1590602401602060405180830381865afa1580156118cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ef9190612d35565b15611931576040517f032e8e550000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610506565b50565b60606001600160a01b0384163b6119b35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610506565b600080856001600160a01b0316856040516119ce9190612d52565b600060405180830381855af49150503d8060008114611a09576040519150601f19603f3d011682016040523d82523d6000602084013e611a0e565b606091505b5091509150611a1e8282866122c3565b925050505b9392505050565b600080546040517fe8a67dad0000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152306024830152620100009092049091169063e8a67dad90604401602060405180830381865afa158015611a9b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062d9190612d35565b604080516000815260208101909152611adb9083908390611619565b5050565b6040805160028082526060808301845292602083019080368337019050509050826001600160a01b031681600081518110611b1c57611b1c612d6e565b60200260200101818152505081611b34576000611b37565b60015b60ff1681600181518110611b4d57611b4d612d6e565b60200260200101818152505092915050565b600054610100900460ff16611bdc5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b611be46122fc565b611bed82612383565b611adb8282612409565b606082471015611c6f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610506565b6001600160a01b0385163b611cc65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610506565b600080866001600160a01b03168587604051611ce29190612d52565b60006040518083038185875af1925050503d8060008114611d1f576040519150601f19603f3d011682016040523d82523d6000602084013e611d24565b606091505b5091509150611d348282866122c3565b979650505050505050565b603380547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b038416908102919091179091556040517f6536690106168bdf4ba72c128a053d817999b1db90cae23f139b293bf862cb7590600090a250565b60408051600380825260808201909252606091602082018380368337019050509050836001600160a01b031681600081518110611de757611de7612d6e565b602002602001018181525050826001600160a01b031681600181518110611e1057611e10612d6e565b6020026020010181815250508181600281518110611e3057611e30612d6e565b6020026020010181815250509392505050565b6040516001600160a01b0380851660248301528316604482015260648101829052611f129085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261248f565b50505050565b60008282028315801590611f3b575082848281611f3757611f37612d9d565b0414155b15611f7c576040517fe8e4a4fa0000000000000000000000000000000000000000000000000000000081526004810185905260248101849052604401610506565b670de0b6b3a764000090049392505050565b80600003611f9b57505050565b6109b6838383612574565b604080516001808252818301909252606091602080830190803683370190505090508181600081518110611fdc57611fdc612d6e565b602002602001018181525050919050565b60408051600480825260a08201909252606091602082016080803683370190505090508460001c8160008151811061202757612027612d6e565b602002602001018181525050836001600160a01b03168160018151811061205057612050612d6e565b602002602001018181525050828160028151811061207057612070612d6e565b6020026020010181815250508161208857600061208b565b60015b60ff16816003815181106120a1576120a1612d6e565b602002602001018181525050949350505050565b60008381526035602090815260408083206001600160a01b038616845290915290205481811015612132576040517fc4238b74000000000000000000000000000000000000000000000000000000008152600481018590526001600160a01b03841660248201526044810182905260648101839052608401610506565b61213c8282612c9d565b60008581526035602090815260408083206001600160a01b0388168085529083528184209490945580518681529182019290925286917fec0aa393d070ebcec385459d5d2e9ffb8e387b20025e9373ef428e9b1ad21cb7910160405180910390a350505050565b60008381526035602090815260408083206001600160a01b0386168452909152812080548392906121d5908490612dcc565b909155505060408051828152600160208201526001600160a01b0384169185917fec0aa393d070ebcec385459d5d2e9ffb8e387b20025e9373ef428e9b1ad21cb7910160405180910390a3505050565b600080546040517f28522895000000000000000000000000000000000000000000000000000000008152620100009091046001600160a01b03169063285228959061227a908790309088908890600401612ddf565b602060405180830381865afa158015612297573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122bb9190612d35565b949350505050565b606083156122d2575081611a23565b8251156122e25782518084602001fd5b8160405162461bcd60e51b81526004016105069190612a3b565b600054610100900460ff166123795760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b6123816125ad565b565b600054610100900460ff166124005760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b61193181612630565b600054610100900460ff166124865760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b611adb81611d3f565b60006124e4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166126ed9092919063ffffffff16565b8051909150156109b657808060200190518101906125029190612d35565b6109b65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610506565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6001600160a01b038416036125a2576109b682826126fc565b6109b6838383612815565b600054610100900460ff1661262a5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b60018055565b600054610100900460ff166126ad5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b600080546001600160a01b0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b60606122bb8484600085611bf7565b8047101561274c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610506565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612799576040519150601f19603f3d011682016040523d82523d6000602084013e61279e565b606091505b50509050806109b65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610506565b6040516001600160a01b0383166024820152604481018290526109b69084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401611e90565b6001600160a01b038116811461193157600080fd5b6000806040838503121561288657600080fd5b8235915060208301356128988161285e565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f8301126128e357600080fd5b813567ffffffffffffffff808211156128fe576128fe6128a3565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612944576129446128a3565b8160405283815286602085880101111561295d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561299057600080fd5b823561299b8161285e565b9150602083013567ffffffffffffffff8111156129b757600080fd5b6129c3858286016128d2565b9150509250929050565b60005b838110156129e85781810151838201526020016129d0565b50506000910152565b60008151808452612a098160208601602086016129cd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611a2360208301846129f1565b600060208284031215612a6057600080fd5b8135611a238161285e565b801515811461193157600080fd5b60008060408385031215612a8c57600080fd5b8235612a978161285e565b9150602083013561289881612a6b565b60008060408385031215612aba57600080fd5b8235612ac58161285e565b915060208301356128988161285e565b600080600060608486031215612aea57600080fd5b8335612af58161285e565b9250602084013567ffffffffffffffff811115612b1157600080fd5b612b1d868287016128d2565b925050604084013590509250925092565b600080600060608486031215612b4357600080fd5b8335612b4e8161285e565b92506020840135612b5e8161285e565b929592945050506040919091013590565b600060208284031215612b8157600080fd5b5035919050565b60008060008060808587031215612b9e57600080fd5b843593506020850135612bb08161285e565b9250604085013591506060850135612bc781612a6b565b939692955090935050565b604081526000612be560408301856129f1565b8281036020840152612bf781856129f1565b95945050505050565b606081526000612c1360608301866129f1565b8460208401528281036040840152612c2b81856129f1565b9695505050505050565b600080600060608486031215612c4a57600080fd5b83519250602084015191506040840151612c638161285e565b809150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561062d5761062d612c6e565b600081518084526020808501945080840160005b83811015612ce057815187529582019590820190600101612cc4565b509495945050505050565b6001600160a01b03841681527fffffffff0000000000000000000000000000000000000000000000000000000083166020820152606060408201526000612bf76060830184612cb0565b600060208284031215612d4757600080fd5b8151611a2381612a6b565b60008251612d648184602087016129cd565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b8082018082111561062d5761062d612c6e565b60006001600160a01b0380871683528086166020840152507fffffffff000000000000000000000000000000000000000000000000000000008416604083015260806060830152612c2b6080830184612cb056fea26469706673582212209b4f7862d8d21b15f64727175d6ed8e638503f7e72e1ea42e98c84655459b42464736f6c634300081100330000000000000000000000001675bf3f75046acd131cad845eb8ff3bed49a64300000000000000000000000088586bfc840b99680c8cc753a36b51999608b1f6000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x60806040526004361061016d5760003560e01c8063530e784f116100cb578063c8fea2fb1161007f578063de0e9a3e11610059578063de0e9a3e14610456578063ea598cb014610476578063eb056bbb1461049657600080fd5b8063c8fea2fb146103f0578063d09edf3114610410578063d9caed121461043657600080fd5b80637b103999116100b05780637b1039991461038d5780638456cb59146103c1578063b187bd26146103d657600080fd5b8063530e784f146103395780636999b3771461035957600080fd5b806328a3a266116101225780634532ed5a116101075780634532ed5a146102d9578063485cc955146102f95780634ae000411461031957600080fd5b806328a3a266146102925780633f4ba83a146102c257600080fd5b80631cff79cd116101535780631cff79cd146102105780631ffa27f91461023d5780632630c12f1461026d57600080fd5b8062bc48941461017957806317fcb39b146101c457600080fd5b3661017457005b600080fd5b34801561018557600080fd5b506101b1610194366004612873565b603560209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b3480156101d057600080fd5b506101f87f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6040516001600160a01b0390911681526020016101bb565b34801561021c57600080fd5b5061023061022b36600461297d565b6104b6565b6040516101bb9190612a3b565b34801561024957600080fd5b5061025d610258366004612a4e565b610622565b60405190151581526020016101bb565b34801561027957600080fd5b506033546101f89061010090046001600160a01b031681565b34801561029e57600080fd5b5061025d6102ad366004612a4e565b60346020526000908152604090205460ff1681565b3480156102ce57600080fd5b506102d7610633565b005b3480156102e557600080fd5b506102d76102f4366004612a79565b6106f0565b34801561030557600080fd5b506102d7610314366004612aa7565b61083f565b34801561032557600080fd5b50610230610334366004612ad5565b6109bb565b34801561034557600080fd5b506102d7610354366004612a4e565b610b1d565b34801561036557600080fd5b506101f87f00000000000000000000000088586bfc840b99680c8cc753a36b51999608b1f681565b34801561039957600080fd5b506101f87f0000000000000000000000001675bf3f75046acd131cad845eb8ff3bed49a64381565b3480156103cd57600080fd5b506102d7610bfa565b3480156103e257600080fd5b5060335461025d9060ff1681565b3480156103fc57600080fd5b506102d761040b366004612b2e565b610cbb565b34801561041c57600080fd5b506000546101f8906201000090046001600160a01b031681565b34801561044257600080fd5b506102d7610451366004612b2e565b610e2f565b34801561046257600080fd5b506102d7610471366004612b6f565b6110ba565b34801561048257600080fd5b506102d7610491366004612b6f565b611294565b3480156104a257600080fd5b506102d76104b1366004612b88565b611495565b606060026001540361050f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260015560335460ff1615610551576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61055a83611605565b610589336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b61059284611660565b6105d284846040518060400160405280601a81526020017f534d4152545f5641554c545f455845435554455f4641494c4544000000000000815250611934565b9150836001600160a01b03167fc96720f35dd524e76ea92971ce13d08e9a17816bf3b0008a7083e6032354ebb5848460405161060f929190612bd2565b60405180910390a2506001805592915050565b600061062d82611a2a565b92915050565b610661336000357fffffffff0000000000000000000000000000000000000000000000000000000016611abf565b60335460ff1661069d576040517f55fc734200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b603380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b6002600154036107425760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610784576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61078e8282611adf565b6107bd336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b6001600160a01b03831660008181526034602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527fb59eefe3d43ac0e52238583d75ad6c45dff171b4d14853da666ce4c3f1ed289f910160405180910390a250506001805550565b600054610100900460ff161580801561085f5750600054600160ff909116105b806108795750303b158015610879575060005460ff166001145b6108eb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610506565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055801561094957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b6109538383611b5f565b80156109b657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b6060600260015403610a0f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610a51576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a5a84611605565b610a89336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b610aca8585856040518060400160405280601781526020017f534d4152545f5641554c545f43414c4c5f4641494c4544000000000000000000815250611bf7565b9150846001600160a01b03167f8e5d52c2fd20a8ca33fcfe8232fb93b5c1b40ac5c050512ac0ba6033dfb02d4e858585604051610b0993929190612c00565b60405180910390a250600180559392505050565b600260015403610b6f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610bb1576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bba81611605565b610be9336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b610bf282611d3f565b505060018055565b610c28336000357fffffffff0000000000000000000000000000000000000000000000000000000016611abf565b60335460ff1615610c65576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b603380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b600260015403610d0d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610d4f576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d5a838383611da8565b610d89336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b81600003610dc3576040517ff6faad9300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dd86001600160a01b038516843085611e43565b826001600160a01b0316846001600160a01b03167f484decdc1e9549e1866295f6f86c889ded3f7de410e7488a7a415978589dc8fd84604051610e1d91815260200190565b60405180910390a35050600180555050565b600260015403610e815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615610ec3576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ece838383611da8565b610efd336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b81600003610f37576040517ff6faad9300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316610f77576040517f4513279f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fb88c914800000000000000000000000000000000000000000000000000000000815230600482015260009081906001600160a01b037f00000000000000000000000088586bfc840b99680c8cc753a36b51999608b1f6169063b88c914890602401606060405180830381865afa158015610ff9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101d9190612c35565b9093509150600090506110308584611f18565b905061103d878383611f8e565b60006110498287612c9d565b9050611056888883611f8e565b866001600160a01b0316886001600160a01b03167f91fb9d98b786c57d74c099ccd2beca1739e9f6a81fb49001ca465c4b7591bbe283856040516110a4929190918252602082015260400190565b60405180910390a3505060018055505050505050565b60026001540361110c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff161561114e576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61115781611fa6565b611186336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b816000036111c0576040517ff6faad9300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f2e1a7d4d000000000000000000000000000000000000000000000000000000008152600481018390527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561123b57600080fd5b505af115801561124f573d6000803e3d6000fd5b505050507fbeaa92c6354c6dcf375d2c514352b2c11bc865784722e5dd9b267e606eb5fc5f8260405161128491815260200190565b60405180910390a1505060018055565b6002600154036112e65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615611328576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61133181611fa6565b611360336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b8160000361139a576040517ff6faad9300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b47828110156113df576040517f392d65580000000000000000000000000000000000000000000000000000000081526004810182905260248101849052604401610506565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b15801561143a57600080fd5b505af115801561144e573d6000803e3d6000fd5b50505050507f5b8cd8f3a67af1dee11ad4321a05f79a76cc7ea517810fc56d6d96c1e60d36868360405161148491815260200190565b60405180910390a150506001805550565b6002600154036114e75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610506565b600260015560335460ff1615611529576040517f7f2b027b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153584848484611fed565b611564336000357fffffffff000000000000000000000000000000000000000000000000000000001683611619565b8461159b576040517f93109a8300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166115db576040517f3df5130600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115fa858585856115ee576120b56115f2565b6121a35b63ffffffff16565b505060018055505050565b606061062d826001600160a01b0316611fa6565b611624838383612225565b6109b6578282826040517f960c80da00000000000000000000000000000000000000000000000000000000815260040161050693929190612ceb565b6001600160a01b03811660009081526034602052604090205460ff16156116845750565b6040517fc3c5a5470000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527f0000000000000000000000001675bf3f75046acd131cad845eb8ff3bed49a643169063c3c5a54790602401602060405180830381865afa158015611703573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117279190612d35565b611768576040517f76df38f40000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610506565b6040517f690d0aed0000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527f0000000000000000000000001675bf3f75046acd131cad845eb8ff3bed49a643169063690d0aed90602401602060405180830381865afa1580156117e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180b9190612d35565b61184c576040517f01a85b210000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610506565b6040517f94543c150000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527f0000000000000000000000001675bf3f75046acd131cad845eb8ff3bed49a64316906394543c1590602401602060405180830381865afa1580156118cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ef9190612d35565b15611931576040517f032e8e550000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610506565b50565b60606001600160a01b0384163b6119b35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610506565b600080856001600160a01b0316856040516119ce9190612d52565b600060405180830381855af49150503d8060008114611a09576040519150601f19603f3d011682016040523d82523d6000602084013e611a0e565b606091505b5091509150611a1e8282866122c3565b925050505b9392505050565b600080546040517fe8a67dad0000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152306024830152620100009092049091169063e8a67dad90604401602060405180830381865afa158015611a9b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062d9190612d35565b604080516000815260208101909152611adb9083908390611619565b5050565b6040805160028082526060808301845292602083019080368337019050509050826001600160a01b031681600081518110611b1c57611b1c612d6e565b60200260200101818152505081611b34576000611b37565b60015b60ff1681600181518110611b4d57611b4d612d6e565b60200260200101818152505092915050565b600054610100900460ff16611bdc5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b611be46122fc565b611bed82612383565b611adb8282612409565b606082471015611c6f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610506565b6001600160a01b0385163b611cc65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610506565b600080866001600160a01b03168587604051611ce29190612d52565b60006040518083038185875af1925050503d8060008114611d1f576040519150601f19603f3d011682016040523d82523d6000602084013e611d24565b606091505b5091509150611d348282866122c3565b979650505050505050565b603380547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b038416908102919091179091556040517f6536690106168bdf4ba72c128a053d817999b1db90cae23f139b293bf862cb7590600090a250565b60408051600380825260808201909252606091602082018380368337019050509050836001600160a01b031681600081518110611de757611de7612d6e565b602002602001018181525050826001600160a01b031681600181518110611e1057611e10612d6e565b6020026020010181815250508181600281518110611e3057611e30612d6e565b6020026020010181815250509392505050565b6040516001600160a01b0380851660248301528316604482015260648101829052611f129085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261248f565b50505050565b60008282028315801590611f3b575082848281611f3757611f37612d9d565b0414155b15611f7c576040517fe8e4a4fa0000000000000000000000000000000000000000000000000000000081526004810185905260248101849052604401610506565b670de0b6b3a764000090049392505050565b80600003611f9b57505050565b6109b6838383612574565b604080516001808252818301909252606091602080830190803683370190505090508181600081518110611fdc57611fdc612d6e565b602002602001018181525050919050565b60408051600480825260a08201909252606091602082016080803683370190505090508460001c8160008151811061202757612027612d6e565b602002602001018181525050836001600160a01b03168160018151811061205057612050612d6e565b602002602001018181525050828160028151811061207057612070612d6e565b6020026020010181815250508161208857600061208b565b60015b60ff16816003815181106120a1576120a1612d6e565b602002602001018181525050949350505050565b60008381526035602090815260408083206001600160a01b038616845290915290205481811015612132576040517fc4238b74000000000000000000000000000000000000000000000000000000008152600481018590526001600160a01b03841660248201526044810182905260648101839052608401610506565b61213c8282612c9d565b60008581526035602090815260408083206001600160a01b0388168085529083528184209490945580518681529182019290925286917fec0aa393d070ebcec385459d5d2e9ffb8e387b20025e9373ef428e9b1ad21cb7910160405180910390a350505050565b60008381526035602090815260408083206001600160a01b0386168452909152812080548392906121d5908490612dcc565b909155505060408051828152600160208201526001600160a01b0384169185917fec0aa393d070ebcec385459d5d2e9ffb8e387b20025e9373ef428e9b1ad21cb7910160405180910390a3505050565b600080546040517f28522895000000000000000000000000000000000000000000000000000000008152620100009091046001600160a01b03169063285228959061227a908790309088908890600401612ddf565b602060405180830381865afa158015612297573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122bb9190612d35565b949350505050565b606083156122d2575081611a23565b8251156122e25782518084602001fd5b8160405162461bcd60e51b81526004016105069190612a3b565b600054610100900460ff166123795760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b6123816125ad565b565b600054610100900460ff166124005760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b61193181612630565b600054610100900460ff166124865760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b611adb81611d3f565b60006124e4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166126ed9092919063ffffffff16565b8051909150156109b657808060200190518101906125029190612d35565b6109b65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610506565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6001600160a01b038416036125a2576109b682826126fc565b6109b6838383612815565b600054610100900460ff1661262a5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b60018055565b600054610100900460ff166126ad5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610506565b600080546001600160a01b0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b60606122bb8484600085611bf7565b8047101561274c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610506565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612799576040519150601f19603f3d011682016040523d82523d6000602084013e61279e565b606091505b50509050806109b65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610506565b6040516001600160a01b0383166024820152604481018290526109b69084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401611e90565b6001600160a01b038116811461193157600080fd5b6000806040838503121561288657600080fd5b8235915060208301356128988161285e565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f8301126128e357600080fd5b813567ffffffffffffffff808211156128fe576128fe6128a3565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612944576129446128a3565b8160405283815286602085880101111561295d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561299057600080fd5b823561299b8161285e565b9150602083013567ffffffffffffffff8111156129b757600080fd5b6129c3858286016128d2565b9150509250929050565b60005b838110156129e85781810151838201526020016129d0565b50506000910152565b60008151808452612a098160208601602086016129cd565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611a2360208301846129f1565b600060208284031215612a6057600080fd5b8135611a238161285e565b801515811461193157600080fd5b60008060408385031215612a8c57600080fd5b8235612a978161285e565b9150602083013561289881612a6b565b60008060408385031215612aba57600080fd5b8235612ac58161285e565b915060208301356128988161285e565b600080600060608486031215612aea57600080fd5b8335612af58161285e565b9250602084013567ffffffffffffffff811115612b1157600080fd5b612b1d868287016128d2565b925050604084013590509250925092565b600080600060608486031215612b4357600080fd5b8335612b4e8161285e565b92506020840135612b5e8161285e565b929592945050506040919091013590565b600060208284031215612b8157600080fd5b5035919050565b60008060008060808587031215612b9e57600080fd5b843593506020850135612bb08161285e565b9250604085013591506060850135612bc781612a6b565b939692955090935050565b604081526000612be560408301856129f1565b8281036020840152612bf781856129f1565b95945050505050565b606081526000612c1360608301866129f1565b8460208401528281036040840152612c2b81856129f1565b9695505050505050565b600080600060608486031215612c4a57600080fd5b83519250602084015191506040840151612c638161285e565b809150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561062d5761062d612c6e565b600081518084526020808501945080840160005b83811015612ce057815187529582019590820190600101612cc4565b509495945050505050565b6001600160a01b03841681527fffffffff0000000000000000000000000000000000000000000000000000000083166020820152606060408201526000612bf76060830184612cb0565b600060208284031215612d4757600080fd5b8151611a2381612a6b565b60008251612d648184602087016129cd565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b8082018082111561062d5761062d612c6e565b60006001600160a01b0380871683528086166020840152507fffffffff000000000000000000000000000000000000000000000000000000008416604083015260806060830152612c2b6080830184612cb056fea26469706673582212209b4f7862d8d21b15f64727175d6ed8e638503f7e72e1ea42e98c84655459b42464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001675bf3f75046acd131cad845eb8ff3bed49a64300000000000000000000000088586bfc840b99680c8cc753a36b51999608b1f6000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _registry (address): 0x1675BF3F75046aCd131caD845eb8FF3Bed49a643
Arg [1] : _feeController (address): 0x88586BFC840B99680C8cC753a36b51999608B1f6
Arg [2] : _wrappedNativeToken (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000001675bf3f75046acd131cad845eb8ff3bed49a643
Arg [1] : 00000000000000000000000088586bfc840b99680c8cc753a36b51999608b1f6
Arg [2] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.