Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
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 Source Code Verified (Exact Match)
Contract Name:
RWAStaking
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
Yes with 2000 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.25; import { AccessControlUpgradeable } from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import { UUPSUpgradeable } from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import { ReentrancyGuardUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol"; import { TimelockController } from "@openzeppelin/contracts/governance/TimelockController.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; /** * @title RWAStaking * @author Eugene Y. Q. Shen * @notice Pre-staking contract for RWA Staking on Plume */ contract RWAStaking is AccessControlUpgradeable, UUPSUpgradeable, ReentrancyGuardUpgradeable { // Types using SafeERC20 for IERC20; /** * @notice State of a user that deposits into the RWAStaking contract * @param amountSeconds Cumulative sum of the amount of stablecoins staked by the user, * multiplied by the number of seconds that the user has staked this amount for * @param amountStaked Total amount of stablecoins staked by the user * @param lastUpdate Timestamp of the most recent update to amountSeconds * @param stablecoinAmounts Mapping of stablecoin token contract addresses * to the amount of stablecoins staked by the user */ struct UserState { uint256 amountSeconds; uint256 amountStaked; uint256 lastUpdate; mapping(IERC20 stablecoin => uint256 amount) stablecoinAmounts; } // Storage /// @custom:storage-location erc7201:plume.storage.RWAStaking struct RWAStakingStorage { /// @dev Total amount of stablecoins staked in the RWAStaking contract uint256 totalAmountStaked; /// @dev List of users who have staked into the RWAStaking contract address[] users; /// @dev Mapping of users to their state in the RWAStaking contract mapping(address user => UserState userState) userStates; /// @dev List of stablecoins allowed to be staked in the RWAStaking contract IERC20[] stablecoins; /// @dev Mapping of stablecoins to whether they are allowed to be staked mapping(IERC20 stablecoin => bool allowed) allowedStablecoins; /// @dev Timestamp of when pre-staking ends, when the admin withdraws all stablecoins uint256 endTime; /// @dev True if the RWAStaking contract is paused for deposits, false otherwise bool paused; /// @dev Multisig address that withdraws the tokens and proposes/executes Timelock transactions address multisig; /// @dev Timelock contract address TimelockController timelock; } // keccak256(abi.encode(uint256(keccak256("plume.storage.RWAStaking")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant RWA_STAKING_STORAGE_LOCATION = 0x985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800; function _getRWAStakingStorage() private pure returns (RWAStakingStorage storage $) { assembly { $.slot := RWA_STAKING_STORAGE_LOCATION } } // Constants /// @notice Role for the admin of the RWAStaking contract bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); /// @notice Number of decimals for the base unit of amount uint8 public constant _BASE = 18; // Events /** * @notice Emitted when an admin withdraws stablecoins from the RWAStaking contract * @param user Address of the admin who withdrew stablecoins * @param stablecoin Stablecoin token contract address * @param amount Amount of stablecoins withdrawn */ event AdminWithdrawn(address indexed user, IERC20 indexed stablecoin, uint256 amount); /** * @notice Emitted when a user withdraws stablecoins from the RWAStaking contract * @param user Address of the user who withdrew stablecoins * @param stablecoin Stablecoin token contract address * @param amount Amount of stablecoins withdrawn */ event Withdrawn(address indexed user, IERC20 indexed stablecoin, uint256 amount); /** * @notice Emitted when a user stakes stablecoins into the RWAStaking contract * @param user Address of the user who staked stablecoins * @param stablecoin Stablecoin token contract address * @param amount Amount of stablecoins staked */ event Staked(address indexed user, IERC20 indexed stablecoin, uint256 amount); /// @notice Emitted when the RWAStaking contract is paused for deposits event Paused(); /// @notice Emitted when the RWAStaking contract is unpaused for deposits event Unpaused(); // Errors /** * @notice Indicates a failure because the sender is not authorized to perform the action * @param sender Address of the sender that is not authorized * @param authorizedUser Address of the authorized user who can perform the action */ error Unauthorized(address sender, address authorizedUser); /// @notice Indicates a failure because the contract is paused for deposits error DepositPaused(); /// @notice Indicates a failure because the contract is already paused for deposits error AlreadyPaused(); /// @notice Indicates a failure because the contract is not paused for deposits error NotPaused(); /// @notice Indicates a failure because the pre-staking period has ended error StakingEnded(); /// @notice Indicates a failure because the stablecoin has too many decimals error TooManyDecimals(); /** * @notice Indicates a failure because the stablecoin is already allowed to be staked * @param stablecoin Stablecoin token contract address */ error AlreadyAllowedStablecoin(IERC20 stablecoin); /** * @notice Indicates a failure because the stablecoin is not allowed to be staked * @param stablecoin Stablecoin token contract address */ error NotAllowedStablecoin(IERC20 stablecoin); /** * @notice Indicates a failure because the user does not have enough stablecoins staked * @param user Address of the user who does not have enough stablecoins staked * @param stablecoin Stablecoin token contract address * @param amount Amount of stablecoins that the user wants to withdraw * @param amountStaked Amount of stablecoins that the user has staked */ error InsufficientStaked(address user, IERC20 stablecoin, uint256 amount, uint256 amountStaked); // Modifiers /// @notice Only the timelock contract can call this function modifier onlyTimelock() { if (msg.sender != address(_getRWAStakingStorage().timelock)) { revert Unauthorized(msg.sender, address(_getRWAStakingStorage().timelock)); } _; } // Initializer /** * @notice Prevent the implementation contract from being initialized or reinitialized * @custom:oz-upgrades-unsafe-allow constructor */ constructor() { _disableInitializers(); } /** * @notice Initialize the RWAStaking contract * @param timelock Timelock contract address * @param owner Address of the owner of the RWAStaking contract */ function initialize(TimelockController timelock, address owner) public initializer { __AccessControl_init(); __UUPSUpgradeable_init(); __ReentrancyGuard_init(); RWAStakingStorage storage $ = _getRWAStakingStorage(); $.multisig = owner; $.timelock = timelock; _grantRole(DEFAULT_ADMIN_ROLE, owner); _grantRole(ADMIN_ROLE, owner); } /** * @notice Reinitialize the RWAStaking contract by adding the timelock and multisig contract address * @param multisig Multisig contract address * @param timelock Timelock contract address */ function reinitialize(address multisig, TimelockController timelock) public reinitializer(2) onlyRole(ADMIN_ROLE) { RWAStakingStorage storage $ = _getRWAStakingStorage(); $.multisig = multisig; $.timelock = timelock; } // Override Functions /** * @notice Revert when `msg.sender` is not authorized to upgrade the contract * @param newImplementation Address of the new implementation */ function _authorizeUpgrade( address newImplementation ) internal override onlyTimelock { } // Admin Functions /** * @notice Set the multisig address * @param multisig Multisig address */ function setMultisig( address multisig ) external nonReentrant onlyTimelock { _getRWAStakingStorage().multisig = multisig; } /** * @notice Allow a stablecoin to be staked into the RWAStaking contract * @dev This function can only be called by an admin * @param stablecoin Stablecoin token contract address */ function allowStablecoin( IERC20 stablecoin ) external onlyRole(ADMIN_ROLE) { RWAStakingStorage storage $ = _getRWAStakingStorage(); if ($.allowedStablecoins[stablecoin]) { revert AlreadyAllowedStablecoin(stablecoin); } if (IERC20Metadata(address(stablecoin)).decimals() > _BASE) { revert TooManyDecimals(); } $.stablecoins.push(stablecoin); $.allowedStablecoins[stablecoin] = true; } /** * @notice Stop the RWAStaking contract by withdrawing all stablecoins * @dev Only the admin can withdraw stablecoins from the RWAStaking contract */ function adminWithdraw() external nonReentrant onlyTimelock { RWAStakingStorage storage $ = _getRWAStakingStorage(); if ($.endTime != 0) { revert StakingEnded(); } IERC20[] storage stablecoins = $.stablecoins; uint256 length = stablecoins.length; for (uint256 i = 0; i < length; ++i) { IERC20 stablecoin = stablecoins[i]; uint256 amount = stablecoin.balanceOf(address(this)); stablecoin.safeTransfer($.multisig, amount); emit AdminWithdrawn( $.multisig, stablecoin, amount * 10 ** (_BASE - IERC20Metadata(address(stablecoin)).decimals()) ); } $.endTime = block.timestamp; } /** * @notice Pause the RWAStaking contract for deposits * @dev Only the admin can pause the RWAStaking contract for deposits */ function pause() external onlyRole(ADMIN_ROLE) { RWAStakingStorage storage $ = _getRWAStakingStorage(); if ($.paused) { revert AlreadyPaused(); } $.paused = true; emit Paused(); } // Errors /** * @notice Unpause the RWAStaking contract for deposits * @dev Only the admin can unpause the RWAStaking contract for deposits */ function unpause() external onlyRole(ADMIN_ROLE) { RWAStakingStorage storage $ = _getRWAStakingStorage(); if (!$.paused) { revert NotPaused(); } $.paused = false; emit Unpaused(); } // User Functions /** * @notice Stake stablecoins into the RWAStaking contract * @param amount Amount of stablecoins to stake * @param stablecoin Stablecoin token contract address */ function stake(uint256 amount, IERC20 stablecoin) external nonReentrant { RWAStakingStorage storage $ = _getRWAStakingStorage(); if ($.endTime != 0) { revert StakingEnded(); } if ($.paused) { revert DepositPaused(); } if (!$.allowedStablecoins[stablecoin]) { revert NotAllowedStablecoin(stablecoin); } uint256 previousBalance = stablecoin.balanceOf(address(this)); stablecoin.safeTransferFrom(msg.sender, address(this), amount); uint256 newBalance = stablecoin.balanceOf(address(this)); // Convert the amount to the base unit of amount, i.e. USDC amount gets multiplied by 10^12 uint256 actualAmount = (newBalance - previousBalance) * 10 ** (_BASE - IERC20Metadata(address(stablecoin)).decimals()); uint256 timestamp = block.timestamp; UserState storage userState = $.userStates[msg.sender]; if (userState.lastUpdate == 0) { $.users.push(msg.sender); } userState.amountSeconds += userState.amountStaked * (timestamp - userState.lastUpdate); userState.amountStaked += actualAmount; userState.lastUpdate = timestamp; userState.stablecoinAmounts[stablecoin] += actualAmount; $.totalAmountStaked += actualAmount; emit Staked(msg.sender, stablecoin, actualAmount); } /** * @notice Withdraw stablecoins from the RWAStaking contract * @param amount Amount of stablecoins to withdraw * @param stablecoin Stablecoin token contract address */ function withdraw(uint256 amount, IERC20 stablecoin) external nonReentrant { RWAStakingStorage storage $ = _getRWAStakingStorage(); if ($.endTime != 0) { revert StakingEnded(); } uint256 baseUnitConversion = 10 ** (_BASE - IERC20Metadata(address(stablecoin)).decimals()); uint256 timestamp = block.timestamp; UserState storage userState = $.userStates[msg.sender]; if (userState.stablecoinAmounts[stablecoin] < amount * baseUnitConversion) { revert InsufficientStaked( msg.sender, stablecoin, amount * baseUnitConversion, userState.stablecoinAmounts[stablecoin] ); } userState.amountSeconds += userState.amountStaked * (timestamp - userState.lastUpdate); uint256 previousBalance = stablecoin.balanceOf(address(this)); stablecoin.safeTransfer(msg.sender, amount); uint256 newBalance = stablecoin.balanceOf(address(this)); uint256 actualAmount = (previousBalance - newBalance) * baseUnitConversion; userState.amountSeconds -= userState.amountSeconds * actualAmount / userState.amountStaked; userState.amountStaked -= actualAmount; userState.lastUpdate = timestamp; userState.stablecoinAmounts[stablecoin] -= actualAmount; $.totalAmountStaked -= actualAmount; emit Withdrawn(msg.sender, stablecoin, actualAmount); } // Getter View Functions /// @notice Total amount of stablecoins staked in the RWAStaking contract function getTotalAmountStaked() external view returns (uint256) { return _getRWAStakingStorage().totalAmountStaked; } /// @notice List of users who have staked into the RWAStaking contract function getUsers() external view returns (address[] memory) { return _getRWAStakingStorage().users; } /// @notice State of a user who has staked into the RWAStaking contract function getUserState( address user ) external view returns (uint256 amountSeconds, uint256 amountStaked, uint256 lastUpdate) { RWAStakingStorage storage $ = _getRWAStakingStorage(); UserState storage userState = $.userStates[user]; return ( userState.amountSeconds + userState.amountStaked * (($.endTime > 0 ? $.endTime : block.timestamp) - userState.lastUpdate), userState.amountStaked, userState.lastUpdate ); } /// @notice Amount of stablecoins staked by a user for each stablecoin function getUserStablecoinAmounts(address user, IERC20 stablecoin) external view returns (uint256) { return _getRWAStakingStorage().userStates[user].stablecoinAmounts[stablecoin]; } /// @notice List of stablecoins allowed to be staked in the RWAStaking contract function getAllowedStablecoins() external view returns (IERC20[] memory) { return _getRWAStakingStorage().stablecoins; } /// @notice Whether a stablecoin is allowed to be staked in the RWAStaking contract function isAllowedStablecoin( IERC20 stablecoin ) external view returns (bool) { return _getRWAStakingStorage().allowedStablecoins[stablecoin]; } /// @notice Timestamp of when pre-staking ends, when the admin withdraws all stablecoins function getEndTime() external view returns (uint256) { return _getRWAStakingStorage().endTime; } /// @notice Returns true if the RWAStaking contract is pauseWhether the RWAStaking contract is paused for deposits function isPaused() external view returns (bool) { return _getRWAStakingStorage().paused; } /// @notice Multisig address that withdraws the tokens and proposes/executes Timelock transactions function getMultisig() external view returns (address) { return _getRWAStakingStorage().multisig; } /// @notice Timelock contract that controls upgrades and withdrawals function getTimelock() external view returns (TimelockController) { return _getRWAStakingStorage().timelock; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol"; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {ERC165Upgradeable} from "../utils/introspection/ERC165Upgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControl, ERC165Upgradeable { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @custom:storage-location erc7201:openzeppelin.storage.AccessControl struct AccessControlStorage { mapping(bytes32 role => RoleData) _roles; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.AccessControl")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant AccessControlStorageLocation = 0x02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800; function _getAccessControlStorage() private pure returns (AccessControlStorage storage $) { assembly { $.slot := AccessControlStorageLocation } } /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); return $._roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { AccessControlStorage storage $ = _getAccessControlStorage(); return $._roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { AccessControlStorage storage $ = _getAccessControlStorage(); bytes32 previousAdminRole = getRoleAdmin(role); $._roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); if (!hasRole(role, account)) { $._roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); if (hasRole(role, account)) { $._roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.20; import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol"; import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol"; import {Initializable} from "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. */ abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable { /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address private immutable __self = address(this); /** * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. * If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function * during an upgrade. */ string public constant UPGRADE_INTERFACE_VERSION = "5.0.0"; /** * @dev The call is from an unauthorized context. */ error UUPSUnauthorizedCallContext(); /** * @dev The storage `slot` is unsupported as a UUID. */ error UUPSUnsupportedProxiableUUID(bytes32 slot); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { _checkProxy(); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { _checkNotDelegated(); _; } function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /** * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate the implementation's compatibility when performing an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual notDelegated returns (bytes32) { return ERC1967Utils.IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. * * @custom:oz-upgrades-unsafe-allow-reachable delegatecall */ function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data); } /** * @dev Reverts if the execution is not performed via delegatecall or the execution * context is not of a proxy with an ERC1967-compliant implementation pointing to self. * See {_onlyProxy}. */ function _checkProxy() internal view virtual { if ( address(this) == __self || // Must be called through delegatecall ERC1967Utils.getImplementation() != __self // Must be called through an active proxy ) { revert UUPSUnauthorizedCallContext(); } } /** * @dev Reverts if the execution is performed via delegatecall. * See {notDelegated}. */ function _checkNotDelegated() internal view virtual { if (address(this) != __self) { // Must not be called through delegatecall revert UUPSUnauthorizedCallContext(); } } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call. * * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value * is expected to be the implementation slot in ERC1967. * * Emits an {IERC1967-Upgraded} event. */ function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) { revert UUPSUnsupportedProxiableUUID(slot); } ERC1967Utils.upgradeToAndCall(newImplementation, data); } catch { // The implementation is not UUPS revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; import {Initializable} from "../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; /// @custom:storage-location erc7201:openzeppelin.storage.ReentrancyGuard struct ReentrancyGuardStorage { uint256 _status; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ReentrancyGuard")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ReentrancyGuardStorageLocation = 0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00; function _getReentrancyGuardStorage() private pure returns (ReentrancyGuardStorage storage $) { assembly { $.slot := ReentrancyGuardStorageLocation } } /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); $._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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); // On the first call to nonReentrant, _status will be NOT_ENTERED if ($._status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail $._status = ENTERED; } function _nonReentrantAfter() private { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) $._status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); return $._status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (governance/TimelockController.sol) pragma solidity ^0.8.20; import {AccessControl} from "../access/AccessControl.sol"; import {ERC721Holder} from "../token/ERC721/utils/ERC721Holder.sol"; import {ERC1155Holder} from "../token/ERC1155/utils/ERC1155Holder.sol"; import {Address} from "../utils/Address.sol"; /** * @dev Contract module which acts as a timelocked controller. When set as the * owner of an `Ownable` smart contract, it enforces a timelock on all * `onlyOwner` maintenance operations. This gives time for users of the * controlled contract to exit before a potentially dangerous maintenance * operation is applied. * * By default, this contract is self administered, meaning administration tasks * have to go through the timelock process. The proposer (resp executor) role * is in charge of proposing (resp executing) operations. A common use case is * to position this {TimelockController} as the owner of a smart contract, with * a multisig or a DAO as the sole proposer. */ contract TimelockController is AccessControl, ERC721Holder, ERC1155Holder { bytes32 public constant PROPOSER_ROLE = keccak256("PROPOSER_ROLE"); bytes32 public constant EXECUTOR_ROLE = keccak256("EXECUTOR_ROLE"); bytes32 public constant CANCELLER_ROLE = keccak256("CANCELLER_ROLE"); uint256 internal constant _DONE_TIMESTAMP = uint256(1); mapping(bytes32 id => uint256) private _timestamps; uint256 private _minDelay; enum OperationState { Unset, Waiting, Ready, Done } /** * @dev Mismatch between the parameters length for an operation call. */ error TimelockInvalidOperationLength(uint256 targets, uint256 payloads, uint256 values); /** * @dev The schedule operation doesn't meet the minimum delay. */ error TimelockInsufficientDelay(uint256 delay, uint256 minDelay); /** * @dev The current state of an operation is not as required. * The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position * counting from right to left. * * See {_encodeStateBitmap}. */ error TimelockUnexpectedOperationState(bytes32 operationId, bytes32 expectedStates); /** * @dev The predecessor to an operation not yet done. */ error TimelockUnexecutedPredecessor(bytes32 predecessorId); /** * @dev The caller account is not authorized. */ error TimelockUnauthorizedCaller(address caller); /** * @dev Emitted when a call is scheduled as part of operation `id`. */ event CallScheduled( bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data, bytes32 predecessor, uint256 delay ); /** * @dev Emitted when a call is performed as part of operation `id`. */ event CallExecuted(bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data); /** * @dev Emitted when new proposal is scheduled with non-zero salt. */ event CallSalt(bytes32 indexed id, bytes32 salt); /** * @dev Emitted when operation `id` is cancelled. */ event Cancelled(bytes32 indexed id); /** * @dev Emitted when the minimum delay for future operations is modified. */ event MinDelayChange(uint256 oldDuration, uint256 newDuration); /** * @dev Initializes the contract with the following parameters: * * - `minDelay`: initial minimum delay in seconds for operations * - `proposers`: accounts to be granted proposer and canceller roles * - `executors`: accounts to be granted executor role * - `admin`: optional account to be granted admin role; disable with zero address * * IMPORTANT: The optional admin can aid with initial configuration of roles after deployment * without being subject to delay, but this role should be subsequently renounced in favor of * administration through timelocked proposals. Previous versions of this contract would assign * this admin to the deployer automatically and should be renounced as well. */ constructor(uint256 minDelay, address[] memory proposers, address[] memory executors, address admin) { // self administration _grantRole(DEFAULT_ADMIN_ROLE, address(this)); // optional admin if (admin != address(0)) { _grantRole(DEFAULT_ADMIN_ROLE, admin); } // register proposers and cancellers for (uint256 i = 0; i < proposers.length; ++i) { _grantRole(PROPOSER_ROLE, proposers[i]); _grantRole(CANCELLER_ROLE, proposers[i]); } // register executors for (uint256 i = 0; i < executors.length; ++i) { _grantRole(EXECUTOR_ROLE, executors[i]); } _minDelay = minDelay; emit MinDelayChange(0, minDelay); } /** * @dev Modifier to make a function callable only by a certain role. In * addition to checking the sender's role, `address(0)` 's role is also * considered. Granting a role to `address(0)` is equivalent to enabling * this role for everyone. */ modifier onlyRoleOrOpenRole(bytes32 role) { if (!hasRole(role, address(0))) { _checkRole(role, _msgSender()); } _; } /** * @dev Contract might receive/hold ETH as part of the maintenance process. */ receive() external payable {} /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(AccessControl, ERC1155Holder) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev Returns whether an id corresponds to a registered operation. This * includes both Waiting, Ready, and Done operations. */ function isOperation(bytes32 id) public view returns (bool) { return getOperationState(id) != OperationState.Unset; } /** * @dev Returns whether an operation is pending or not. Note that a "pending" operation may also be "ready". */ function isOperationPending(bytes32 id) public view returns (bool) { OperationState state = getOperationState(id); return state == OperationState.Waiting || state == OperationState.Ready; } /** * @dev Returns whether an operation is ready for execution. Note that a "ready" operation is also "pending". */ function isOperationReady(bytes32 id) public view returns (bool) { return getOperationState(id) == OperationState.Ready; } /** * @dev Returns whether an operation is done or not. */ function isOperationDone(bytes32 id) public view returns (bool) { return getOperationState(id) == OperationState.Done; } /** * @dev Returns the timestamp at which an operation becomes ready (0 for * unset operations, 1 for done operations). */ function getTimestamp(bytes32 id) public view virtual returns (uint256) { return _timestamps[id]; } /** * @dev Returns operation state. */ function getOperationState(bytes32 id) public view virtual returns (OperationState) { uint256 timestamp = getTimestamp(id); if (timestamp == 0) { return OperationState.Unset; } else if (timestamp == _DONE_TIMESTAMP) { return OperationState.Done; } else if (timestamp > block.timestamp) { return OperationState.Waiting; } else { return OperationState.Ready; } } /** * @dev Returns the minimum delay in seconds for an operation to become valid. * * This value can be changed by executing an operation that calls `updateDelay`. */ function getMinDelay() public view virtual returns (uint256) { return _minDelay; } /** * @dev Returns the identifier of an operation containing a single * transaction. */ function hashOperation( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt ) public pure virtual returns (bytes32) { return keccak256(abi.encode(target, value, data, predecessor, salt)); } /** * @dev Returns the identifier of an operation containing a batch of * transactions. */ function hashOperationBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata payloads, bytes32 predecessor, bytes32 salt ) public pure virtual returns (bytes32) { return keccak256(abi.encode(targets, values, payloads, predecessor, salt)); } /** * @dev Schedule an operation containing a single transaction. * * Emits {CallSalt} if salt is nonzero, and {CallScheduled}. * * Requirements: * * - the caller must have the 'proposer' role. */ function schedule( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt, uint256 delay ) public virtual onlyRole(PROPOSER_ROLE) { bytes32 id = hashOperation(target, value, data, predecessor, salt); _schedule(id, delay); emit CallScheduled(id, 0, target, value, data, predecessor, delay); if (salt != bytes32(0)) { emit CallSalt(id, salt); } } /** * @dev Schedule an operation containing a batch of transactions. * * Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch. * * Requirements: * * - the caller must have the 'proposer' role. */ function scheduleBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata payloads, bytes32 predecessor, bytes32 salt, uint256 delay ) public virtual onlyRole(PROPOSER_ROLE) { if (targets.length != values.length || targets.length != payloads.length) { revert TimelockInvalidOperationLength(targets.length, payloads.length, values.length); } bytes32 id = hashOperationBatch(targets, values, payloads, predecessor, salt); _schedule(id, delay); for (uint256 i = 0; i < targets.length; ++i) { emit CallScheduled(id, i, targets[i], values[i], payloads[i], predecessor, delay); } if (salt != bytes32(0)) { emit CallSalt(id, salt); } } /** * @dev Schedule an operation that is to become valid after a given delay. */ function _schedule(bytes32 id, uint256 delay) private { if (isOperation(id)) { revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Unset)); } uint256 minDelay = getMinDelay(); if (delay < minDelay) { revert TimelockInsufficientDelay(delay, minDelay); } _timestamps[id] = block.timestamp + delay; } /** * @dev Cancel an operation. * * Requirements: * * - the caller must have the 'canceller' role. */ function cancel(bytes32 id) public virtual onlyRole(CANCELLER_ROLE) { if (!isOperationPending(id)) { revert TimelockUnexpectedOperationState( id, _encodeStateBitmap(OperationState.Waiting) | _encodeStateBitmap(OperationState.Ready) ); } delete _timestamps[id]; emit Cancelled(id); } /** * @dev Execute an (ready) operation containing a single transaction. * * Emits a {CallExecuted} event. * * Requirements: * * - the caller must have the 'executor' role. */ // This function can reenter, but it doesn't pose a risk because _afterCall checks that the proposal is pending, // thus any modifications to the operation during reentrancy should be caught. // slither-disable-next-line reentrancy-eth function execute( address target, uint256 value, bytes calldata payload, bytes32 predecessor, bytes32 salt ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) { bytes32 id = hashOperation(target, value, payload, predecessor, salt); _beforeCall(id, predecessor); _execute(target, value, payload); emit CallExecuted(id, 0, target, value, payload); _afterCall(id); } /** * @dev Execute an (ready) operation containing a batch of transactions. * * Emits one {CallExecuted} event per transaction in the batch. * * Requirements: * * - the caller must have the 'executor' role. */ // This function can reenter, but it doesn't pose a risk because _afterCall checks that the proposal is pending, // thus any modifications to the operation during reentrancy should be caught. // slither-disable-next-line reentrancy-eth function executeBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata payloads, bytes32 predecessor, bytes32 salt ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) { if (targets.length != values.length || targets.length != payloads.length) { revert TimelockInvalidOperationLength(targets.length, payloads.length, values.length); } bytes32 id = hashOperationBatch(targets, values, payloads, predecessor, salt); _beforeCall(id, predecessor); for (uint256 i = 0; i < targets.length; ++i) { address target = targets[i]; uint256 value = values[i]; bytes calldata payload = payloads[i]; _execute(target, value, payload); emit CallExecuted(id, i, target, value, payload); } _afterCall(id); } /** * @dev Execute an operation's call. */ function _execute(address target, uint256 value, bytes calldata data) internal virtual { (bool success, bytes memory returndata) = target.call{value: value}(data); Address.verifyCallResult(success, returndata); } /** * @dev Checks before execution of an operation's calls. */ function _beforeCall(bytes32 id, bytes32 predecessor) private view { if (!isOperationReady(id)) { revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Ready)); } if (predecessor != bytes32(0) && !isOperationDone(predecessor)) { revert TimelockUnexecutedPredecessor(predecessor); } } /** * @dev Checks after execution of an operation's calls. */ function _afterCall(bytes32 id) private { if (!isOperationReady(id)) { revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Ready)); } _timestamps[id] = _DONE_TIMESTAMP; } /** * @dev Changes the minimum timelock duration for future operations. * * Emits a {MinDelayChange} event. * * Requirements: * * - the caller must be the timelock itself. This can only be achieved by scheduling and later executing * an operation where the timelock is the target and the data is the ABI-encoded call to this function. */ function updateDelay(uint256 newDelay) external virtual { address sender = _msgSender(); if (sender != address(this)) { revert TimelockUnauthorizedCaller(sender); } emit MinDelayChange(_minDelay, newDelay); _minDelay = newDelay; } /** * @dev Encodes a `OperationState` into a `bytes32` representation where each bit enabled corresponds to * the underlying position in the `OperationState` enum. For example: * * 0x000...1000 * ^^^^^^----- ... * ^---- Done * ^--- Ready * ^-- Waiting * ^- Unset */ function _encodeStateBitmap(OperationState operationState) internal pure returns (bytes32) { return bytes32(1 << uint8(operationState)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../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; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @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); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165Upgradeable is Initializable, IERC165 { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._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() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.20; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol) pragma solidity ^0.8.20; import {IBeacon} from "../beacon/IBeacon.sol"; import {Address} from "../../utils/Address.sol"; import {StorageSlot} from "../../utils/StorageSlot.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. */ library ERC1967Utils { // We re-declare ERC-1967 events here because they can't be used directly from IERC1967. // This will be fixed in Solidity 0.8.21. At that point we should remove these events. /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev The `implementation` of the proxy is invalid. */ error ERC1967InvalidImplementation(address implementation); /** * @dev The `admin` of the proxy is invalid. */ error ERC1967InvalidAdmin(address admin); /** * @dev The `beacon` of the proxy is invalid. */ error ERC1967InvalidBeacon(address beacon); /** * @dev An upgrade function sees `msg.value > 0` that may be lost. */ error ERC1967NonPayable(); /** * @dev Returns the current implementation address. */ function getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { if (newImplementation.code.length == 0) { revert ERC1967InvalidImplementation(newImplementation); } StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Performs implementation upgrade with additional setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); if (data.length > 0) { Address.functionDelegateCall(newImplementation, data); } else { _checkNonPayable(); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Returns the current admin. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { if (newAdmin == address(0)) { revert ERC1967InvalidAdmin(address(0)); } StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {IERC1967-AdminChanged} event. */ function changeAdmin(address newAdmin) internal { emit AdminChanged(getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Returns the current beacon. */ function getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { if (newBeacon.code.length == 0) { revert ERC1967InvalidBeacon(newBeacon); } StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon; address beaconImplementation = IBeacon(newBeacon).implementation(); if (beaconImplementation.code.length == 0) { revert ERC1967InvalidImplementation(beaconImplementation); } } /** * @dev Change the beacon and trigger a setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-BeaconUpgraded} event. * * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for * efficiency. */ function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } else { _checkNonPayable(); } } /** * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract * if an upgrade doesn't perform an initialization call. */ function _checkNonPayable() private { if (msg.value > 0) { revert ERC1967NonPayable(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/utils/ERC721Holder.sol) pragma solidity ^0.8.20; import {IERC721Receiver} from "../IERC721Receiver.sol"; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or * {IERC721-setApprovalForAll}. */ abstract contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received(address, address, uint256, bytes memory) public virtual returns (bytes4) { return this.onERC721Received.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/utils/ERC1155Holder.sol) pragma solidity ^0.8.20; import {IERC165, ERC165} from "../../../utils/introspection/ERC165.sol"; import {IERC1155Receiver} from "../IERC1155Receiver.sol"; /** * @dev Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC1155 tokens. * * IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be * stuck. */ abstract contract ERC1155Holder is ERC165, IERC1155Receiver { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId); } function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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 v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.20; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {UpgradeableBeacon} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Interface that must be implemented by smart contracts in order to receive * ERC-1155 token transfers. */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
{ "remappings": [ "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/", "ds-test/=lib/openzeppelin-contracts-upgradeable/lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/", "openzeppelin-foundry-upgrades/=lib/openzeppelin-foundry-upgrades/src/", "solidity-stringutils/=lib/openzeppelin-foundry-upgrades/lib/solidity-stringutils/" ], "optimizer": { "enabled": true, "runs": 2000 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "cancun", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"contract IERC20","name":"stablecoin","type":"address"}],"name":"AlreadyAllowedStablecoin","type":"error"},{"inputs":[],"name":"AlreadyPaused","type":"error"},{"inputs":[],"name":"DepositPaused","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"contract IERC20","name":"stablecoin","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amountStaked","type":"uint256"}],"name":"InsufficientStaked","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"contract IERC20","name":"stablecoin","type":"address"}],"name":"NotAllowedStablecoin","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"NotPaused","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"StakingEnded","type":"error"},{"inputs":[],"name":"TooManyDecimals","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"authorizedUser","type":"address"}],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"stablecoin","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AdminWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"stablecoin","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"stablecoin","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BASE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"stablecoin","type":"address"}],"name":"allowStablecoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllowedStablecoins","outputs":[{"internalType":"contract IERC20[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMultisig","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTimelock","outputs":[{"internalType":"contract TimelockController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalAmountStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"contract IERC20","name":"stablecoin","type":"address"}],"name":"getUserStablecoinAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserState","outputs":[{"internalType":"uint256","name":"amountSeconds","type":"uint256"},{"internalType":"uint256","name":"amountStaked","type":"uint256"},{"internalType":"uint256","name":"lastUpdate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUsers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract TimelockController","name":"timelock","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"stablecoin","type":"address"}],"name":"isAllowedStablecoin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"multisig","type":"address"},{"internalType":"contract TimelockController","name":"timelock","type":"address"}],"name":"reinitialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"multisig","type":"address"}],"name":"setMultisig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"contract IERC20","name":"stablecoin","type":"address"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"contract IERC20","name":"stablecoin","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405230608052348015610013575f80fd5b5061001c610021565b6100d3565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100715760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100d05780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b608051612c8a6100f95f395f81816120e20152818161210b015261230e0152612c8a5ff3fe6080604052600436106101ce575f3560e01c806352d1902d116100fd578063a217fddf11610092578063d547741f11610062578063d547741f146106e2578063ecb37b7714610701578063f18d20be14610727578063f3283fba1461073b575f80fd5b8063a217fddf14610625578063a9d951a314610638578063ad3cb1cc14610657578063b187bd26146106ac575f80fd5b80637bce4a17116100cd5780637bce4a171461057b5780638456cb591461059a57806391d14854146105ae578063987fd68014610611575f80fd5b806352d1902d146104d95780636221a54b146104ed57806375b238fc146105295780637acb77571461055c575f80fd5b806336568abe11610173578063439f5ac211610143578063439f5ac21461040d578063485cc955146104405780634f1ef2861461045f578063510662dd14610472575f80fd5b806336568abe1461034b5780633c81df211461036a5780633f4ba83a146103bf578063416ae768146103d3575f80fd5b80632258f8f8116101ae5780632258f8f81461024c578063246d9fe8146102a2578063248a9ca3146102df5780632f2ff15d1461032c575f80fd5b8062ce8e3e146101d2578062f714ce146101fc57806301ffc9a71461021d575b5f80fd5b3480156101dd575f80fd5b506101e661075a565b6040516101f3919061282b565b60405180910390f35b348015610207575f80fd5b5061021b61021636600461288b565b6107dc565b005b348015610228575f80fd5b5061023c6102373660046128b9565b610bb3565b60405190151581526020016101f3565b348015610257575f80fd5b5061023c6102663660046128f8565b6001600160a01b03165f9081527f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8804602052604090205460ff1690565b3480156102ad575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800545b6040519081526020016101f3565b3480156102ea575f80fd5b506102d16102f9366004612913565b5f9081527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602052604090206001015490565b348015610337575f80fd5b5061021b61034636600461288b565b610c4b565b348015610356575f80fd5b5061021b61036536600461288b565b610c94565b348015610375575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88065461010090046001600160a01b03165b6040516001600160a01b0390911681526020016101f3565b3480156103ca575f80fd5b5061021b610ce5565b3480156103de575f80fd5b506103f26103ed3660046128f8565b610dc4565b604080519384526020840192909252908201526060016101f3565b348015610418575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8805546102d1565b34801561044b575f80fd5b5061021b61045a36600461292a565b610e94565b61021b61046d36600461296a565b6110ef565b34801561047d575f80fd5b506102d161048c36600461292a565b6001600160a01b039182165f9081527f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8802602090815260408083209390941682526003909201909152205490565b3480156104e4575f80fd5b506102d161110a565b3480156104f8575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8807546001600160a01b03166103a7565b348015610534575f80fd5b506102d17fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b348015610567575f80fd5b5061021b61057636600461288b565b611138565b348015610586575f80fd5b5061021b6105953660046128f8565b611511565b3480156105a5575f80fd5b5061021b6116da565b3480156105b9575f80fd5b5061023c6105c836600461288b565b5f9182527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561061c575f80fd5b506101e66117bd565b348015610630575f80fd5b506102d15f81565b348015610643575f80fd5b5061021b61065236600461292a565b61183d565b348015610662575f80fd5b5061069f6040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516101f39190612a28565b3480156106b7575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88065460ff1661023c565b3480156106ed575f80fd5b5061021b6106fc36600461288b565b611a20565b34801561070c575f80fd5b50610715601281565b60405160ff90911681526020016101f3565b348015610732575f80fd5b5061021b611a63565b348015610746575f80fd5b5061021b6107553660046128f8565b611d47565b60607f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88006001018054806020026020016040519081016040528092919081815260200182805480156107d257602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116107b4575b5050505050905090565b6107e4611e2a565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8805547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009015610846576040516312776a0760e01b815260040160405180910390fd5b5f826001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610883573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a79190612a5d565b6108b2906012612a91565b6108bd90600a612b8a565b335f908152600284016020526040902090915042906108dc8387612b98565b6001600160a01b0386165f90815260038301602052604090205410156109705733856109088589612b98565b6001600160a01b038881165f908152600386016020526040908190205490517f02d391b4000000000000000000000000000000000000000000000000000000008152948216600486015292166024840152604483015260648201526084015b60405180910390fd5b600281015461097f9083612baf565b816001015461098e9190612b98565b815f015f82825461099f9190612bc2565b90915550506040516370a0823160e01b81523060048201525f906001600160a01b038716906370a0823190602401602060405180830381865afa1580156109e8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0c9190612bd5565b9050610a226001600160a01b0387163389611eab565b6040516370a0823160e01b81523060048201525f906001600160a01b038816906370a0823190602401602060405180830381865afa158015610a66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8a9190612bd5565b90505f85610a988385612baf565b610aa29190612b98565b9050836001015481855f0154610ab89190612b98565b610ac29190612bec565b845f015f828254610ad39190612baf565b9250508190555080846001015f828254610aed9190612baf565b9091555050600284018590556001600160a01b0388165f90815260038501602052604081208054839290610b22908490612baf565b90915550508654819088905f90610b3a908490612baf565b90915550506040518181526001600160a01b0389169033907fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb9060200160405180910390a350505050505050610baf60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b5050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610c4557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b6268006020526040902060010154610c8481611f45565b610c8e8383611f4f565b50505050565b6001600160a01b0381163314610cd6576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce0828261201b565b505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610d0f81611f45565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8806547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009060ff16610d8c576040517f6cd6020100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068101805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933905f90a15050565b6001600160a01b0381165f9081527f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88026020526040812060028101547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880554839283927f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880092610e515742610e57565b82600501545b610e619190612baf565b8160010154610e709190612b98565b8154610e7c9190612bc2565b60018201546002909201549097919650945092505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff165f81158015610ede5750825b90505f8267ffffffffffffffff166001148015610efa5750303b155b905081158015610f08575080155b15610f3f576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001660011785558315610f8a57845468ff00000000000000001916680100000000000000001785555b610f926120bf565b610f9a6120bf565b610fa26120c7565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880680547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0389811691909102919091179091557f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8807805473ffffffffffffffffffffffffffffffffffffffff19169189169190911790557f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880061106e5f88611f4f565b506110997fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177588611f4f565b505083156110e657845468ff000000000000000019168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6110f76120d7565b611100826121a7565b610baf8282612202565b5f611113612303565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b611140611e2a565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8805547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880090156111a2576040516312776a0760e01b815260040160405180910390fd5b600681015460ff16156111e1576040517f35edea3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0382165f90815260048201602052604090205460ff1661123f576040517f8db8c4ca0000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610967565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611283573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a79190612bd5565b90506112be6001600160a01b038416333087612365565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa158015611302573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113269190612bd5565b90505f846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611365573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113899190612a5d565b611394906012612a91565b61139f90600a612b8a565b6113a98484612baf565b6113b39190612b98565b335f908152600280870160205260408220908101549293504292909103611407576001808701805491820181555f9081526020902001805473ffffffffffffffffffffffffffffffffffffffff1916331790555b60028101546114169083612baf565b81600101546114259190612b98565b815f015f8282546114369190612bc2565b9250508190555082816001015f8282546114509190612bc2565b9091555050600281018290556001600160a01b0387165f90815260038201602052604081208054859290611485908490612bc2565b90915550508554839087905f9061149d908490612bc2565b90915550506040518381526001600160a01b0388169033907f5dac0c1b1112564a045ba943c9d50270893e8e826c49be8e7073adc713ab7bd79060200160405180910390a3505050505050610baf60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561153b81611f45565b6001600160a01b0382165f9081527f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880460205260409020547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009060ff16156115d9576040517f5526d3ab0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610967565b601260ff16836001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561161a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061163e9190612a5d565b60ff161115611679576040517f61cae3f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600381018054600181810183555f928352602080842090920180546001600160a01b0390971673ffffffffffffffffffffffffffffffffffffffff1990971687179055948252600490920190915260409020805460ff191690921790915550565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561170481611f45565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8806547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009060ff1615611782576040517f1785c68100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068101805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752905f90a15050565b60607f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88006003018054806020026020016040519081016040528092919081815260200182805480156107d257602002820191905f5260205f209081546001600160a01b031681526001909101906020018083116107b4575050505050905090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0080546002919068010000000000000000900460ff168061188c5750805467ffffffffffffffff808416911610155b156118c3576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80547fffffffffffffffffffffffffffffffffffffffffffffff0000000000000000001667ffffffffffffffff831617680100000000000000001781557fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561192a81611f45565b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880680546001600160a01b03868116610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179091557f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8807805491851673ffffffffffffffffffffffffffffffffffffffff19909216919091179055805468ff0000000000000000191681556040805167ffffffffffffffff8416815290517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29181900360200190a150505050565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b6268006020526040902060010154611a5981611f45565b610c8e838361201b565b611a6b611e2a565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800600701546001600160a01b03163314611b0b57337f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88005b600701546040517f295a81c10000000000000000000000000000000000000000000000000000000081526001600160a01b03928316600482015291166024820152604401610967565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8805547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009015611b6d576040516312776a0760e01b815260040160405180910390fd5b6003810180545f5b81811015611d0f575f838281548110611b9057611b90612c0b565b5f9182526020822001546040516370a0823160e01b81523060048201526001600160a01b03909116925082906370a0823190602401602060405180830381865afa158015611be0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c049190612bd5565b6006870154909150611c28906001600160a01b038481169161010090041683611eab565b816001600160a01b03168660060160019054906101000a90046001600160a01b03166001600160a01b03167fe921ae6c24420c995517b54a581810c5d0fd0e99f02ac02d0ebfd7ce3a6f994a846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cd49190612a5d565b611cdf906012612a91565b611cea90600a612b8a565b611cf49085612b98565b60405190815260200160405180910390a35050600101611b75565b50428360050181905550505050611d4560017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b565b611d4f611e2a565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800600701546001600160a01b03163314611daa57337f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800611ac2565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880680547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0384160217905560017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005550565b50565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0080547ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01611ea5576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60029055565b6040516001600160a01b03838116602483015260448201839052610ce091859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061239e565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b611e278133612418565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602081815260408084206001600160a01b038616855290915282205460ff16612012575f848152602082815260408083206001600160a01b03871684529091529020805460ff19166001179055611fc83390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001915050610c45565b5f915050610c45565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602081815260408084206001600160a01b038616855290915282205460ff1615612012575f848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a46001915050610c45565b611d456124a4565b6120cf6124a4565b611d4561250b565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061217057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166121647f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614155b15611d45576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800600701546001600160a01b03163314611e2757337f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800611ac2565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561225c575060408051601f3d908101601f1916820190925261225991810190612bd5565b60015b61229d576040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610967565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81146122f9576040517faa1d49a400000000000000000000000000000000000000000000000000000000815260048101829052602401610967565b610ce08383612513565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611d45576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040516001600160a01b038481166024830152838116604483015260648201839052610c8e9186918216906323b872dd90608401611ed8565b5f6123b26001600160a01b03841683612568565b905080515f141580156123d65750808060200190518101906123d49190612c1f565b155b15610ce0576040517f5274afe70000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610967565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602090815260408083206001600160a01b038516845290915290205460ff16610baf576040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526001600160a01b038216600482015260248101839052604401610967565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16611d45576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f1f6124a4565b61251c8261257c565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561256057610ce08282612618565b610baf61268a565b606061257583835f6126c2565b9392505050565b806001600160a01b03163b5f036125ca576040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610967565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516126349190612c3e565b5f60405180830381855af49150503d805f811461266c576040519150601f19603f3d011682016040523d82523d5f602084013e612671565b606091505b5091509150612681858383612774565b95945050505050565b3415611d45576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606081471015612700576040517fcd786059000000000000000000000000000000000000000000000000000000008152306004820152602401610967565b5f80856001600160a01b0316848660405161271b9190612c3e565b5f6040518083038185875af1925050503d805f8114612755576040519150601f19603f3d011682016040523d82523d5f602084013e61275a565b606091505b509150915061276a868383612774565b9695505050505050565b60608261278957612784826127e9565b612575565b81511580156127a057506001600160a01b0384163b155b156127e2576040517f9996b3150000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610967565b5080612575565b8051156127f95780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b602080825282518282018190525f9190848201906040850190845b8181101561286b5783516001600160a01b031683529284019291840191600101612846565b50909695505050505050565b6001600160a01b0381168114611e27575f80fd5b5f806040838503121561289c575f80fd5b8235915060208301356128ae81612877565b809150509250929050565b5f602082840312156128c9575f80fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114612575575f80fd5b5f60208284031215612908575f80fd5b813561257581612877565b5f60208284031215612923575f80fd5b5035919050565b5f806040838503121561293b575f80fd5b823561294681612877565b915060208301356128ae81612877565b634e487b7160e01b5f52604160045260245ffd5b5f806040838503121561297b575f80fd5b823561298681612877565b9150602083013567ffffffffffffffff808211156129a2575f80fd5b818501915085601f8301126129b5575f80fd5b8135818111156129c7576129c7612956565b604051601f8201601f19908116603f011681019083821181831017156129ef576129ef612956565b81604052828152886020848701011115612a07575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215612a6d575f80fd5b815160ff81168114612575575f80fd5b634e487b7160e01b5f52601160045260245ffd5b60ff8281168282160390811115610c4557610c45612a7d565b600181815b80851115612ae457815f1904821115612aca57612aca612a7d565b80851615612ad757918102915b93841c9390800290612aaf565b509250929050565b5f82612afa57506001610c45565b81612b0657505f610c45565b8160018114612b1c5760028114612b2657612b42565b6001915050610c45565b60ff841115612b3757612b37612a7d565b50506001821b610c45565b5060208310610133831016604e8410600b8410161715612b65575081810a610c45565b612b6f8383612aaa565b805f1904821115612b8257612b82612a7d565b029392505050565b5f61257560ff841683612aec565b8082028115828204841417610c4557610c45612a7d565b81810381811115610c4557610c45612a7d565b80820180821115610c4557610c45612a7d565b5f60208284031215612be5575f80fd5b5051919050565b5f82612c0657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612c2f575f80fd5b81518015158114612575575f80fd5b5f82518060208501845e5f92019182525091905056fea264697066735822122088b1a851c6985d13c6ca1f7fd410bfcef88dc9b8a7ef552d6d8195e48000e85d64736f6c63430008190033
Deployed Bytecode
0x6080604052600436106101ce575f3560e01c806352d1902d116100fd578063a217fddf11610092578063d547741f11610062578063d547741f146106e2578063ecb37b7714610701578063f18d20be14610727578063f3283fba1461073b575f80fd5b8063a217fddf14610625578063a9d951a314610638578063ad3cb1cc14610657578063b187bd26146106ac575f80fd5b80637bce4a17116100cd5780637bce4a171461057b5780638456cb591461059a57806391d14854146105ae578063987fd68014610611575f80fd5b806352d1902d146104d95780636221a54b146104ed57806375b238fc146105295780637acb77571461055c575f80fd5b806336568abe11610173578063439f5ac211610143578063439f5ac21461040d578063485cc955146104405780634f1ef2861461045f578063510662dd14610472575f80fd5b806336568abe1461034b5780633c81df211461036a5780633f4ba83a146103bf578063416ae768146103d3575f80fd5b80632258f8f8116101ae5780632258f8f81461024c578063246d9fe8146102a2578063248a9ca3146102df5780632f2ff15d1461032c575f80fd5b8062ce8e3e146101d2578062f714ce146101fc57806301ffc9a71461021d575b5f80fd5b3480156101dd575f80fd5b506101e661075a565b6040516101f3919061282b565b60405180910390f35b348015610207575f80fd5b5061021b61021636600461288b565b6107dc565b005b348015610228575f80fd5b5061023c6102373660046128b9565b610bb3565b60405190151581526020016101f3565b348015610257575f80fd5b5061023c6102663660046128f8565b6001600160a01b03165f9081527f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8804602052604090205460ff1690565b3480156102ad575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800545b6040519081526020016101f3565b3480156102ea575f80fd5b506102d16102f9366004612913565b5f9081527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602052604090206001015490565b348015610337575f80fd5b5061021b61034636600461288b565b610c4b565b348015610356575f80fd5b5061021b61036536600461288b565b610c94565b348015610375575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88065461010090046001600160a01b03165b6040516001600160a01b0390911681526020016101f3565b3480156103ca575f80fd5b5061021b610ce5565b3480156103de575f80fd5b506103f26103ed3660046128f8565b610dc4565b604080519384526020840192909252908201526060016101f3565b348015610418575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8805546102d1565b34801561044b575f80fd5b5061021b61045a36600461292a565b610e94565b61021b61046d36600461296a565b6110ef565b34801561047d575f80fd5b506102d161048c36600461292a565b6001600160a01b039182165f9081527f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8802602090815260408083209390941682526003909201909152205490565b3480156104e4575f80fd5b506102d161110a565b3480156104f8575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8807546001600160a01b03166103a7565b348015610534575f80fd5b506102d17fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b348015610567575f80fd5b5061021b61057636600461288b565b611138565b348015610586575f80fd5b5061021b6105953660046128f8565b611511565b3480156105a5575f80fd5b5061021b6116da565b3480156105b9575f80fd5b5061023c6105c836600461288b565b5f9182527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561061c575f80fd5b506101e66117bd565b348015610630575f80fd5b506102d15f81565b348015610643575f80fd5b5061021b61065236600461292a565b61183d565b348015610662575f80fd5b5061069f6040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b6040516101f39190612a28565b3480156106b7575f80fd5b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88065460ff1661023c565b3480156106ed575f80fd5b5061021b6106fc36600461288b565b611a20565b34801561070c575f80fd5b50610715601281565b60405160ff90911681526020016101f3565b348015610732575f80fd5b5061021b611a63565b348015610746575f80fd5b5061021b6107553660046128f8565b611d47565b60607f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88006001018054806020026020016040519081016040528092919081815260200182805480156107d257602002820191905f5260205f20905b81546001600160a01b031681526001909101906020018083116107b4575b5050505050905090565b6107e4611e2a565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8805547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009015610846576040516312776a0760e01b815260040160405180910390fd5b5f826001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610883573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a79190612a5d565b6108b2906012612a91565b6108bd90600a612b8a565b335f908152600284016020526040902090915042906108dc8387612b98565b6001600160a01b0386165f90815260038301602052604090205410156109705733856109088589612b98565b6001600160a01b038881165f908152600386016020526040908190205490517f02d391b4000000000000000000000000000000000000000000000000000000008152948216600486015292166024840152604483015260648201526084015b60405180910390fd5b600281015461097f9083612baf565b816001015461098e9190612b98565b815f015f82825461099f9190612bc2565b90915550506040516370a0823160e01b81523060048201525f906001600160a01b038716906370a0823190602401602060405180830381865afa1580156109e8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0c9190612bd5565b9050610a226001600160a01b0387163389611eab565b6040516370a0823160e01b81523060048201525f906001600160a01b038816906370a0823190602401602060405180830381865afa158015610a66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8a9190612bd5565b90505f85610a988385612baf565b610aa29190612b98565b9050836001015481855f0154610ab89190612b98565b610ac29190612bec565b845f015f828254610ad39190612baf565b9250508190555080846001015f828254610aed9190612baf565b9091555050600284018590556001600160a01b0388165f90815260038501602052604081208054839290610b22908490612baf565b90915550508654819088905f90610b3a908490612baf565b90915550506040518181526001600160a01b0389169033907fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb9060200160405180910390a350505050505050610baf60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b5050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610c4557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b6268006020526040902060010154610c8481611f45565b610c8e8383611f4f565b50505050565b6001600160a01b0381163314610cd6576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce0828261201b565b505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610d0f81611f45565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8806547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009060ff16610d8c576040517f6cd6020100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068101805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933905f90a15050565b6001600160a01b0381165f9081527f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88026020526040812060028101547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880554839283927f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880092610e515742610e57565b82600501545b610e619190612baf565b8160010154610e709190612b98565b8154610e7c9190612bc2565b60018201546002909201549097919650945092505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff165f81158015610ede5750825b90505f8267ffffffffffffffff166001148015610efa5750303b155b905081158015610f08575080155b15610f3f576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001660011785558315610f8a57845468ff00000000000000001916680100000000000000001785555b610f926120bf565b610f9a6120bf565b610fa26120c7565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880680547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0389811691909102919091179091557f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8807805473ffffffffffffffffffffffffffffffffffffffff19169189169190911790557f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880061106e5f88611f4f565b506110997fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177588611f4f565b505083156110e657845468ff000000000000000019168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6110f76120d7565b611100826121a7565b610baf8282612202565b5f611113612303565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b611140611e2a565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8805547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880090156111a2576040516312776a0760e01b815260040160405180910390fd5b600681015460ff16156111e1576040517f35edea3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0382165f90815260048201602052604090205460ff1661123f576040517f8db8c4ca0000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610967565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611283573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a79190612bd5565b90506112be6001600160a01b038416333087612365565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa158015611302573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113269190612bd5565b90505f846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611365573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113899190612a5d565b611394906012612a91565b61139f90600a612b8a565b6113a98484612baf565b6113b39190612b98565b335f908152600280870160205260408220908101549293504292909103611407576001808701805491820181555f9081526020902001805473ffffffffffffffffffffffffffffffffffffffff1916331790555b60028101546114169083612baf565b81600101546114259190612b98565b815f015f8282546114369190612bc2565b9250508190555082816001015f8282546114509190612bc2565b9091555050600281018290556001600160a01b0387165f90815260038201602052604081208054859290611485908490612bc2565b90915550508554839087905f9061149d908490612bc2565b90915550506040518381526001600160a01b0388169033907f5dac0c1b1112564a045ba943c9d50270893e8e826c49be8e7073adc713ab7bd79060200160405180910390a3505050505050610baf60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561153b81611f45565b6001600160a01b0382165f9081527f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880460205260409020547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009060ff16156115d9576040517f5526d3ab0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610967565b601260ff16836001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561161a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061163e9190612a5d565b60ff161115611679576040517f61cae3f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600381018054600181810183555f928352602080842090920180546001600160a01b0390971673ffffffffffffffffffffffffffffffffffffffff1990971687179055948252600490920190915260409020805460ff191690921790915550565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561170481611f45565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8806547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009060ff1615611782576040517f1785c68100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60068101805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752905f90a15050565b60607f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88006003018054806020026020016040519081016040528092919081815260200182805480156107d257602002820191905f5260205f209081546001600160a01b031681526001909101906020018083116107b4575050505050905090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0080546002919068010000000000000000900460ff168061188c5750805467ffffffffffffffff808416911610155b156118c3576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80547fffffffffffffffffffffffffffffffffffffffffffffff0000000000000000001667ffffffffffffffff831617680100000000000000001781557fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561192a81611f45565b507f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880680546001600160a01b03868116610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179091557f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8807805491851673ffffffffffffffffffffffffffffffffffffffff19909216919091179055805468ff0000000000000000191681556040805167ffffffffffffffff8416815290517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29181900360200190a150505050565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b6268006020526040902060010154611a5981611f45565b610c8e838361201b565b611a6b611e2a565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800600701546001600160a01b03163314611b0b57337f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88005b600701546040517f295a81c10000000000000000000000000000000000000000000000000000000081526001600160a01b03928316600482015291166024820152604401610967565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8805547f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab88009015611b6d576040516312776a0760e01b815260040160405180910390fd5b6003810180545f5b81811015611d0f575f838281548110611b9057611b90612c0b565b5f9182526020822001546040516370a0823160e01b81523060048201526001600160a01b03909116925082906370a0823190602401602060405180830381865afa158015611be0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c049190612bd5565b6006870154909150611c28906001600160a01b038481169161010090041683611eab565b816001600160a01b03168660060160019054906101000a90046001600160a01b03166001600160a01b03167fe921ae6c24420c995517b54a581810c5d0fd0e99f02ac02d0ebfd7ce3a6f994a846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cd49190612a5d565b611cdf906012612a91565b611cea90600a612b8a565b611cf49085612b98565b60405190815260200160405180910390a35050600101611b75565b50428360050181905550505050611d4560017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b565b611d4f611e2a565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800600701546001600160a01b03163314611daa57337f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800611ac2565b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab880680547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0384160217905560017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f005550565b50565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0080547ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01611ea5576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60029055565b6040516001600160a01b03838116602483015260448201839052610ce091859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061239e565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b611e278133612418565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602081815260408084206001600160a01b038616855290915282205460ff16612012575f848152602082815260408083206001600160a01b03871684529091529020805460ff19166001179055611fc83390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001915050610c45565b5f915050610c45565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602081815260408084206001600160a01b038616855290915282205460ff1615612012575f848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a46001915050610c45565b611d456124a4565b6120cf6124a4565b611d4561250b565b306001600160a01b037f0000000000000000000000002ea61aa006b79606bafc0ae6870d7ffb2241128916148061217057507f0000000000000000000000002ea61aa006b79606bafc0ae6870d7ffb224112896001600160a01b03166121647f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614155b15611d45576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800600701546001600160a01b03163314611e2757337f985cf34339f517022bb48b1ce402d8af12b040d0d5b3c991a00533cf3bab8800611ac2565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561225c575060408051601f3d908101601f1916820190925261225991810190612bd5565b60015b61229d576040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610967565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81146122f9576040517faa1d49a400000000000000000000000000000000000000000000000000000000815260048101829052602401610967565b610ce08383612513565b306001600160a01b037f0000000000000000000000002ea61aa006b79606bafc0ae6870d7ffb224112891614611d45576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040516001600160a01b038481166024830152838116604483015260648201839052610c8e9186918216906323b872dd90608401611ed8565b5f6123b26001600160a01b03841683612568565b905080515f141580156123d65750808060200190518101906123d49190612c1f565b155b15610ce0576040517f5274afe70000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610967565b5f8281527f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800602090815260408083206001600160a01b038516845290915290205460ff16610baf576040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526001600160a01b038216600482015260248101839052604401610967565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16611d45576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f1f6124a4565b61251c8261257c565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561256057610ce08282612618565b610baf61268a565b606061257583835f6126c2565b9392505050565b806001600160a01b03163b5f036125ca576040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610967565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516126349190612c3e565b5f60405180830381855af49150503d805f811461266c576040519150601f19603f3d011682016040523d82523d5f602084013e612671565b606091505b5091509150612681858383612774565b95945050505050565b3415611d45576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606081471015612700576040517fcd786059000000000000000000000000000000000000000000000000000000008152306004820152602401610967565b5f80856001600160a01b0316848660405161271b9190612c3e565b5f6040518083038185875af1925050503d805f8114612755576040519150601f19603f3d011682016040523d82523d5f602084013e61275a565b606091505b509150915061276a868383612774565b9695505050505050565b60608261278957612784826127e9565b612575565b81511580156127a057506001600160a01b0384163b155b156127e2576040517f9996b3150000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610967565b5080612575565b8051156127f95780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b602080825282518282018190525f9190848201906040850190845b8181101561286b5783516001600160a01b031683529284019291840191600101612846565b50909695505050505050565b6001600160a01b0381168114611e27575f80fd5b5f806040838503121561289c575f80fd5b8235915060208301356128ae81612877565b809150509250929050565b5f602082840312156128c9575f80fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114612575575f80fd5b5f60208284031215612908575f80fd5b813561257581612877565b5f60208284031215612923575f80fd5b5035919050565b5f806040838503121561293b575f80fd5b823561294681612877565b915060208301356128ae81612877565b634e487b7160e01b5f52604160045260245ffd5b5f806040838503121561297b575f80fd5b823561298681612877565b9150602083013567ffffffffffffffff808211156129a2575f80fd5b818501915085601f8301126129b5575f80fd5b8135818111156129c7576129c7612956565b604051601f8201601f19908116603f011681019083821181831017156129ef576129ef612956565b81604052828152886020848701011115612a07575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215612a6d575f80fd5b815160ff81168114612575575f80fd5b634e487b7160e01b5f52601160045260245ffd5b60ff8281168282160390811115610c4557610c45612a7d565b600181815b80851115612ae457815f1904821115612aca57612aca612a7d565b80851615612ad757918102915b93841c9390800290612aaf565b509250929050565b5f82612afa57506001610c45565b81612b0657505f610c45565b8160018114612b1c5760028114612b2657612b42565b6001915050610c45565b60ff841115612b3757612b37612a7d565b50506001821b610c45565b5060208310610133831016604e8410600b8410161715612b65575081810a610c45565b612b6f8383612aaa565b805f1904821115612b8257612b82612a7d565b029392505050565b5f61257560ff841683612aec565b8082028115828204841417610c4557610c45612a7d565b81810381811115610c4557610c45612a7d565b80820180821115610c4557610c45612a7d565b5f60208284031215612be5575f80fd5b5051919050565b5f82612c0657634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612c2f575f80fd5b81518015158114612575575f80fd5b5f82518060208501845e5f92019182525091905056fea264697066735822122088b1a851c6985d13c6ca1f7fd410bfcef88dc9b8a7ef552d6d8195e48000e85d64736f6c63430008190033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.