More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 3,051 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Stake | 21488783 | 6 hrs ago | IN | 0 ETH | 0.00184375 | ||||
Unstake | 21486024 | 15 hrs ago | IN | 0 ETH | 0.00068114 | ||||
Unstake | 21485030 | 19 hrs ago | IN | 0 ETH | 0.0006909 | ||||
Unstake | 21482768 | 26 hrs ago | IN | 0 ETH | 0.00037167 | ||||
Unstake | 21482523 | 27 hrs ago | IN | 0 ETH | 0.00051158 | ||||
Unstake | 21482121 | 29 hrs ago | IN | 0 ETH | 0.00050329 | ||||
Unstake | 21482118 | 29 hrs ago | IN | 0 ETH | 0.00055532 | ||||
Unstake | 21481629 | 30 hrs ago | IN | 0 ETH | 0.00058493 | ||||
Stake | 21481106 | 32 hrs ago | IN | 0 ETH | 0.00156714 | ||||
Unstake | 21479114 | 39 hrs ago | IN | 0 ETH | 0.0004591 | ||||
Stake | 21478817 | 40 hrs ago | IN | 0 ETH | 0.00129277 | ||||
Unstake | 21477819 | 43 hrs ago | IN | 0 ETH | 0.00052466 | ||||
Unstake | 21476340 | 2 days ago | IN | 0 ETH | 0.0003583 | ||||
Unstake | 21475491 | 2 days ago | IN | 0 ETH | 0.00059111 | ||||
Unstake | 21474783 | 2 days ago | IN | 0 ETH | 0.00049251 | ||||
Stake | 21473944 | 2 days ago | IN | 0 ETH | 0.00178975 | ||||
Unstake | 21472526 | 2 days ago | IN | 0 ETH | 0.00083497 | ||||
Unstake | 21472447 | 2 days ago | IN | 0 ETH | 0.00082777 | ||||
Unstake | 21472418 | 2 days ago | IN | 0 ETH | 0.0007643 | ||||
Unstake | 21472361 | 2 days ago | IN | 0 ETH | 0.00073715 | ||||
Unstake | 21471572 | 2 days ago | IN | 0 ETH | 0.0004509 | ||||
Unstake | 21470760 | 2 days ago | IN | 0 ETH | 0.00043753 | ||||
Unstake | 21470665 | 2 days ago | IN | 0 ETH | 0.0005799 | ||||
Unstake | 21470662 | 2 days ago | IN | 0 ETH | 0.00058188 | ||||
Unstake | 21470638 | 2 days ago | IN | 0 ETH | 0.00062874 |
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 Name:
TokenStakingControllable
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import {SafeERC20} from '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {ITokenStakingControllable} from './ITokenStakingControllable.sol'; import {TokenStakingCore} from './TokenStakingCore.sol'; contract TokenStakingControllable is ITokenStakingControllable, TokenStakingCore { using SafeERC20 for IERC20; /* ============= Modifiers ============== */ /** * @dev Check the user can stake. * @param amount amount to stake. * @param lockUpConfig The lock up config. */ modifier canDelegateStake( address owner, uint256 amount, LockUpConfig calldata lockUpConfig ) { require( apocalypseDate > block.timestamp + lockUpConfig.duration, 'Apocalypse date is over' ); require( activeUserSectionIds[owner].length < maxActiveSections, 'Max Sections reached' ); require(amount > 0, 'Amount is not valid'); _; } constructor( address admin, address _tokenAddress, uint256 _maxActiveSections, uint256 _apocalypseDate ) TokenStakingCore(admin, _tokenAddress, _maxActiveSections, _apocalypseDate) {} /* ============= Functions ============== */ /** * @dev Delegate stake an amount of token. * @param owner The staker address. * @param amount The amount of token to stake. * @param lockUpConfig The lock up config. * @param noLockMultiplier The no lock multiplier. */ function delegateStake( address owner, uint256 amount, LockUpConfig calldata lockUpConfig, uint256 noLockMultiplier ) external virtual returns (uint256) { return _delegateStake(owner, amount, lockUpConfig, noLockMultiplier); } /* ============= Internal Functions ============== */ function _delegateStake( address owner, uint256 amount, LockUpConfig calldata lockUpConfig, uint256 noLockMultiplier ) internal onlyRole(CONTROLLER_ROLE) canDelegateStake(owner, amount, lockUpConfig) returns (uint256) { IERC20(tokenAddress).safeTransferFrom(owner, address(this), amount); return _createSection(owner, amount, lockUpConfig, noLockMultiplier); } }
// 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) (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.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) (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/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) (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.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) (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) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import {ITokenStakingCore} from './ITokenStakingCore.sol'; interface ITokenStakingControllable is ITokenStakingCore { /* ============= Functions ============== */ /** * @dev Delegate stake an amount of token. * @param owner The staker address. * @param amount The amount of token to stake. * @param lockUpConfig The lock up config. * @param noLockMultiplier The no lock multiplier. */ function delegateStake( address owner, uint256 amount, LockUpConfig calldata lockUpConfig, uint256 noLockMultiplier ) external returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface ITokenStakingCore { /* ============= Events ============== */ /** * @param staker The address of the staker. * @param sectionId The section id. * @param amount The amount of token. * @param startedDate The started date of section. * @param duration In seconds, the lock up duration. * @param multiplier In PPM, the multiplier bonus rate for this lock. * @param noLockMultiplier In PPM, The no lock-up multiplier. */ event StakeToken( address indexed staker, uint256 sectionId, uint256 amount, uint256 startedDate, uint256 duration, uint256 multiplier, uint256 noLockMultiplier ); /** * @param staker The address of the staker. * @param sectionId The section id. */ event UnstakeToken(address indexed staker, uint256 sectionId); /* ============= Structures ============== */ /** * @dev Structure for lock up config, set by admins. * @param duration In seconds, the lock up duration. * @param multiplier In PPM, the multiplier bonus rate for this lock. */ struct LockUpConfig { uint256 duration; uint256 multiplier; } /** * @dev Structure for staking Section. * @param id Unique ID for the section. * @param owner The owner address. * @param amount The amount of staking. * @param lockUpConfig The lock up config, * the snapshot version of the config at the time of staking. * @param noLockMultiplier The no lock-up multiplier. * @param startedDate The started date. * @param unstakedDate The unstaked date. */ struct Section { uint256 id; uint256 amount; uint256 noLockMultiplier; uint256 startedDate; uint256 unstakedDate; LockUpConfig lockUpConfig; address owner; } /* ============= Functions ============== */ /** * @dev Stake an amount of token. * @param amount The amount of token to stake. * @param lockUpConfigIdx The lock up config index to choose. */ function stake( uint256 amount, uint256 lockUpConfigIdx ) external returns (uint256); /** * @dev Unstake an amount of token. * @param sectionId The section id to unstake. */ function unstake(uint256 sectionId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import {AccessControl} from '@openzeppelin/contracts/access/AccessControl.sol'; import {SafeERC20} from '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import {Math} from '@openzeppelin/contracts/utils/math/Math.sol'; import {UintArrayUtils} from '../utils/ArrayUtils.sol'; import {ITokenStakingCore} from './ITokenStakingCore.sol'; /** * @title A contract for token staking. * @author Ancient8 Space3 development team. * @notice Disclaimer: This contract is not open source, Space3 team is not * responsible for its safety. * @custom:experimental This is an experimental contract. */ contract TokenStakingCore is ITokenStakingCore, AccessControl { using SafeERC20 for IERC20; bytes32 public constant CONTROLLER_ROLE = keccak256('ROLE:CONTROLLER'); /** * @notice The token address for staking input of this contract. */ address public tokenAddress; /** * @notice The date of the apocalypsis, users cannot earn any rewards after * that. */ uint256 public apocalypseDate; /** * @notice The max number of active sections of a user at the same time. */ uint256 public maxActiveSections; /** * @dev The counter of sections, which is used for section id. */ uint256 public sectionCounter = 0; /** * @notice The current lock up configs. */ LockUpConfig[] public lockUpConfigs; /** * @notice Stored sections, mapped by section id. */ mapping(uint256 => Section) public sections; /** * @notice Stored active user section ids. * @dev By staking a section, the section id will be stored here. * By unstaking a section, the section id will be removed from here. */ mapping(address => uint256[]) public activeUserSectionIds; /* ============= Modifiers ============== */ /** * @dev Check the user can stake. * @param amount amount to stake. * @param lockUpConfigIdx The lock up config index to choose. */ modifier canStake(uint256 amount, uint256 lockUpConfigIdx) { require( lockUpConfigs.length > lockUpConfigIdx, 'Lock-up config is not valid' ); LockUpConfig memory lockUpConfig = lockUpConfigs[lockUpConfigIdx]; require( apocalypseDate > block.timestamp + lockUpConfig.duration, 'Apocalypse date is over' ); require( activeUserSectionIds[msg.sender].length < maxActiveSections, 'Max Sections reached' ); require(amount > 0, 'Amount is not valid'); _; } /** * @dev Check the user can unstake. * @param sectionId The section id to unstake. */ modifier canUnstake(uint256 sectionId) { require( UintArrayUtils.isIn(activeUserSectionIds[msg.sender], sectionId), 'Section is invalid' ); Section memory section = sections[sectionId]; require(section.unstakedDate == 0, 'Section is already unstaked'); require( block.timestamp >= section.startedDate + section.lockUpConfig.duration, 'Lock-up is not over' ); _; } constructor( address admin, address _tokenAddress, uint256 _maxActiveSections, uint256 _apocalypseDate ) { _grantRole(DEFAULT_ADMIN_ROLE, admin); tokenAddress = _tokenAddress; maxActiveSections = _maxActiveSections; apocalypseDate = _apocalypseDate; } receive() external payable {} fallback() external payable {} /** ============= Override Functions ============== */ /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override returns (bool) { return interfaceId == type(ITokenStakingCore).interfaceId || super.supportsInterface(interfaceId); } /* ============= Admin Functions ============== */ /** * @dev Admin function to set the apocalypsis date. * @param _apocalypseDate The date of the apocalypsis. */ function setApocalypseDate( uint256 _apocalypseDate ) external onlyRole(DEFAULT_ADMIN_ROLE) { apocalypseDate = _apocalypseDate; } /** * @dev Admin function to set the max number of active sections at the same time. * @param _maxActiveSections The max number of active sections. */ function setMaxSections( uint256 _maxActiveSections ) external onlyRole(DEFAULT_ADMIN_ROLE) { maxActiveSections = _maxActiveSections; } /** * @dev Admin function to set the lock up configs. * @param _lockUpConfigs The lock up configs. */ function setLockupPeriods( LockUpConfig[] calldata _lockUpConfigs ) external onlyRole(DEFAULT_ADMIN_ROLE) { delete lockUpConfigs; for (uint i = 0; i < _lockUpConfigs.length; i++) { lockUpConfigs.push(_lockUpConfigs[i]); } } /** * @dev Admin function to get the lock-up configs. * @return All the configs of this contract. */ function getLockUpConfigs() external view returns (LockUpConfig[] memory) { return lockUpConfigs; } /* ============= User Functions ============== */ /** * @dev Stake an amount of token. * @param amount The amount of token to stake. * @param lockUpConfigIdx The lock up config index to choose. */ function stake( uint256 amount, uint256 lockUpConfigIdx ) external virtual returns (uint256) { return _stake(amount, lockUpConfigIdx); } /** * @dev Unstake an amount of token. * @param sectionId The section id to unstake. */ function unstake(uint256 sectionId) external virtual { _unstake(sectionId); } /* ============= Internal Functions ============== */ /** * @dev Stake an amount of token. * @param amount The amount of token to stake. * @param lockUpConfigIdx The lock up config index to choose. */ function _stake( uint256 amount, uint256 lockUpConfigIdx ) internal canStake(amount, lockUpConfigIdx) returns (uint256) { IERC20(tokenAddress).safeTransferFrom(msg.sender, address(this), amount); return _createSection( msg.sender, amount, lockUpConfigs[lockUpConfigIdx], _getNoLockMultiplier() ); } /** @dev Create a new section. * @param owner The owner address. * @param amount The amount of token to stake. * @param lockUpConfig The lock up config. */ function _createSection( address owner, uint256 amount, LockUpConfig memory lockUpConfig, uint256 noLockMultiplier ) internal returns (uint256) { uint256 id = sectionCounter++; sections[id] = Section({ id: id, owner: owner, amount: amount, lockUpConfig: lockUpConfig, noLockMultiplier: noLockMultiplier, startedDate: block.timestamp, unstakedDate: 0 }); activeUserSectionIds[owner].push(id); emit StakeToken( owner, id, amount, block.timestamp, lockUpConfig.duration, lockUpConfig.multiplier, noLockMultiplier ); return id; } /** * @dev Unstake an amount of token. * @param sectionId The section id to unstake. */ function _unstake(uint256 sectionId) internal canUnstake(sectionId) { Section storage section = sections[sectionId]; activeUserSectionIds[msg.sender] = UintArrayUtils.remove( activeUserSectionIds[msg.sender], sectionId ); section.unstakedDate = block.timestamp; IERC20(tokenAddress).safeTransfer(msg.sender, section.amount); emit UnstakeToken(msg.sender, sectionId); } /** * @dev Get the no lock multiplier. */ function _getNoLockMultiplier() internal view returns (uint256) { uint256 noLockMultiplier = 0; for (uint i = 0; i < lockUpConfigs.length; i++) { if (lockUpConfigs[i].duration == 0) { noLockMultiplier = lockUpConfigs[i].multiplier; break; } } return noLockMultiplier; } /* ============= View Functions ============== */ /** * @dev Get the active user section ids. * @param owner The owner of the sections. */ function getActiveUserSectionIds( address owner ) external view returns (uint256[] memory) { return activeUserSectionIds[owner]; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /// @title A contract for uint array utils /// @author Ancient8 Space3 development team /// @notice Please understand how it works before use it library UintArrayUtils { /// @notice The function for checking if an array contains a certain value /// @param arr The array to check /// @param _value The value to check /// @return a boolean value if the value is in the array function isIn( uint256[] memory arr, uint256 _value ) public pure returns (bool) { for (uint256 i = 0; i < arr.length; i++) { if (arr[i] == _value) return true; } return false; } /// @dev Remove all elements in an array that are equal to a value /// @param origin The array to check /// @param value The value to check /// @return New array without the value function remove( uint256[] memory origin, uint256 value ) public pure returns (uint256[] memory) { uint256 removedCount = 0; for (uint256 i = 0; i < origin.length; i++) { if (origin[i] == value) removedCount++; } uint256[] memory arr = new uint256[](origin.length - removedCount); uint256 j = 0; for (uint256 i = 0; i < origin.length; i++) { if (origin[i] != value) arr[j++] = origin[i]; } return arr; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": { "contracts/utils/ArrayUtils.sol": { "UintArrayUtils": "0x68d3504d8abcbfdde5bb489c223035454942d651" } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_maxActiveSections","type":"uint256"},{"internalType":"uint256","name":"_apocalypseDate","type":"uint256"}],"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":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"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":"staker","type":"address"},{"indexed":false,"internalType":"uint256","name":"sectionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startedDate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"multiplier","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"noLockMultiplier","type":"uint256"}],"name":"StakeToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"staker","type":"address"},{"indexed":false,"internalType":"uint256","name":"sectionId","type":"uint256"}],"name":"UnstakeToken","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"CONTROLLER_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":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"activeUserSectionIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apocalypseDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"components":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"multiplier","type":"uint256"}],"internalType":"struct ITokenStakingCore.LockUpConfig","name":"lockUpConfig","type":"tuple"},{"internalType":"uint256","name":"noLockMultiplier","type":"uint256"}],"name":"delegateStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getActiveUserSectionIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLockUpConfigs","outputs":[{"components":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"multiplier","type":"uint256"}],"internalType":"struct ITokenStakingCore.LockUpConfig[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"","type":"uint256"}],"name":"lockUpConfigs","outputs":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"multiplier","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxActiveSections","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"sectionCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sections","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"noLockMultiplier","type":"uint256"},{"internalType":"uint256","name":"startedDate","type":"uint256"},{"internalType":"uint256","name":"unstakedDate","type":"uint256"},{"components":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"multiplier","type":"uint256"}],"internalType":"struct ITokenStakingCore.LockUpConfig","name":"lockUpConfig","type":"tuple"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_apocalypseDate","type":"uint256"}],"name":"setApocalypseDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"uint256","name":"multiplier","type":"uint256"}],"internalType":"struct ITokenStakingCore.LockUpConfig[]","name":"_lockUpConfigs","type":"tuple[]"}],"name":"setLockupPeriods","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxActiveSections","type":"uint256"}],"name":"setMaxSections","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"lockUpConfigIdx","type":"uint256"}],"name":"stake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sectionId","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260006004553480156200001657600080fd5b5060405162001b3038038062001b3083398101604081905262000039916200014a565b838383836200004a6000856200007e565b50600180546001600160a01b0319166001600160a01b03949094169390931790925560035560025550620001929350505050565b6000828152602081815260408083206001600160a01b038516845290915281205460ff1662000123576000838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055620000da3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600162000127565b5060005b92915050565b80516001600160a01b03811681146200014557600080fd5b919050565b600080600080608085870312156200016157600080fd5b6200016c856200012d565b93506200017c602086016200012d565b6040860151606090960151949790965092505050565b61198e80620001a26000396000f3fe6080604052600436106101385760003560e01c80635042d83d116100b057806391d148541161006c57806391d14854146104445780639d76ea5814610464578063a217fddf1461049c578063d547741f146104b1578063ee1f1da6146104d1578063f11f6e941461050657005b80635042d83d146103815780635279c456146103a15780637b0472f0146103c15780637f83cc14146103e15780638610a7b8146103f7578063869a2a7d1461042457005b80632e17de78116100ff5780632e17de78146102285780632f2ff15d14610248578063356034401461026857806336568abe146103295780633666ffeb146103495780634d2b0ae91461036b57005b806301ffc9a714610141578063092c5b3b1461017657806317b916d4146101b85780631faab532146101d8578063248a9ca3146101f857005b3661013f57005b005b34801561014d57600080fd5b5061016161015c3660046114d2565b61051c565b60405190151581526020015b60405180910390f35b34801561018257600080fd5b506101aa7f08a35e1699a1a8b5214fb8b0126a8cc4c903fd5c7f475703ee2fc9cca6d1f1ab81565b60405190815260200161016d565b3480156101c457600080fd5b5061013f6101d33660046114fc565b610547565b3480156101e457600080fd5b5061013f6101f33660046114fc565b610558565b34801561020457600080fd5b506101aa6102133660046114fc565b60009081526020819052604090206001015490565b34801561023457600080fd5b5061013f6102433660046114fc565b610569565b34801561025457600080fd5b5061013f610263366004611531565b610575565b34801561027457600080fd5b506102df6102833660046114fc565b600660208181526000928352604092839020805460018201546002830154600384015460048501548851808a0190995260058601548952968501549588019590955260079093015491959094929392916001600160a01b031687565b6040805197885260208089019790975287019490945260608601929092526080850152805160a08501529091015160c08301526001600160a01b031660e08201526101000161016d565b34801561033557600080fd5b5061013f610344366004611531565b6105a0565b34801561035557600080fd5b5061035e6105d8565b60405161016d919061155d565b34801561037757600080fd5b506101aa60035481565b34801561038d57600080fd5b506101aa61039c3660046115b4565b61064b565b3480156103ad57600080fd5b5061013f6103bc3660046115de565b61067c565b3480156103cd57600080fd5b506101aa6103dc366004611653565b610702565b3480156103ed57600080fd5b506101aa60025481565b34801561040357600080fd5b50610417610412366004611675565b610715565b60405161016d9190611690565b34801561043057600080fd5b506101aa61043f3660046116d4565b610781565b34801561045057600080fd5b5061016161045f366004611531565b610798565b34801561047057600080fd5b50600154610484906001600160a01b031681565b6040516001600160a01b03909116815260200161016d565b3480156104a857600080fd5b506101aa600081565b3480156104bd57600080fd5b5061013f6104cc366004611531565b6107c1565b3480156104dd57600080fd5b506104f16104ec3660046114fc565b6107e6565b6040805192835260208301919091520161016d565b34801561051257600080fd5b506101aa60045481565b60006001600160e01b03198216630aa2759160e31b1480610541575061054182610814565b92915050565b600061055281610849565b50600255565b600061056381610849565b50600355565b61057281610853565b50565b60008281526020819052604090206001015461059081610849565b61059a8383610b64565b50505050565b6001600160a01b03811633146105c95760405163334bd91960e11b815260040160405180910390fd5b6105d38282610bf6565b505050565b60606005805480602002602001604051908101604052809291908181526020016000905b82821015610642578382906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050815260200190600101906105fc565b50505050905090565b6007602052816000526040600020818154811061066757600080fd5b90600052602060002001600091509150505481565b600061068781610849565b61069360056000611436565b60005b8281101561059a5760058484838181106106b2576106b2611723565b8354600181018555600094855260209094206040909102929092019260020290910190506106ed828281358155602082013560018201555050565b505080806106fa9061174f565b915050610696565b600061070e8383610c61565b9392505050565b6001600160a01b03811660009081526007602090815260409182902080548351818402810184019094528084526060939283018282801561077557602002820191906000526020600020905b815481526020019060010190808311610761575b50505050509050919050565b600061078f85858585610e68565b95945050505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000828152602081905260409020600101546107dc81610849565b61059a8383610bf6565b600581815481106107f657600080fd5b60009182526020909120600290910201805460019091015490915082565b60006001600160e01b03198216637965db0b60e01b148061054157506301ffc9a760e01b6001600160e01b0319831614610541565b6105728133610fd1565b336000908152600760205260409081902090516250c43560e11b815282917368d3504d8abcbfdde5bb489c223035454942d6519162a1886a9161089a918590600401611768565b602060405180830381865af41580156108b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108db91906117b8565b6109215760405162461bcd60e51b815260206004820152601260248201527114d958dd1a5bdb881a5cc81a5b9d985b1a5960721b60448201526064015b60405180910390fd5b600081815260066020818152604092839020835160e0810185528154815260018201548184015260028201548186015260038201546060820152600482015460808201908152855180870190965260058301548652938201549285019290925260a08201939093526007909201546001600160a01b031660c083015251156109eb5760405162461bcd60e51b815260206004820152601b60248201527f53656374696f6e20697320616c726561647920756e7374616b656400000000006044820152606401610918565b60a0810151516060820151610a0091906117da565b421015610a455760405162461bcd60e51b81526020600482015260136024820152722637b1b596bab81034b9903737ba1037bb32b960691b6044820152606401610918565b600083815260066020908152604080832033845260079092529182902091516332ef712b60e21b815290917368d3504d8abcbfdde5bb489c223035454942d6519163cbbdc4ac91610a9a918890600401611768565b600060405180830381865af4158015610ab7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610adf9190810190611834565b3360009081526007602090815260409091208251610b039391929190910190611457565b504260048201556001808201549054610b29916001600160a01b0390911690339061100e565b60405184815233907ff6e150e51c76005159a20fcadc3a9f06fba011914a1faeba1c7e8d82860643f79060200160405180910390a250505050565b6000610b708383610798565b610bee576000838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610ba63390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610541565b506000610541565b6000610c028383610798565b15610bee576000838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610541565b600082828060058054905011610cb95760405162461bcd60e51b815260206004820152601b60248201527f4c6f636b2d757020636f6e666967206973206e6f742076616c696400000000006044820152606401610918565b600060058281548110610cce57610cce611723565b9060005260206000209060020201604051806040016040529081600082015481526020016001820154815250509050806000015142610d0d91906117da565b60025411610d575760405162461bcd60e51b815260206004820152601760248201527620b837b1b0b63cb839b2903230ba329034b99037bb32b960491b6044820152606401610918565b6003543360009081526007602052604090205410610dae5760405162461bcd60e51b815260206004820152601460248201527313585e0814d958dd1a5bdb9cc81c995858da195960621b6044820152606401610918565b60008311610df45760405162461bcd60e51b8152602060048201526013602482015272105b5bdd5b9d081a5cc81b9bdd081d985b1a59606a1b6044820152606401610918565b600154610e0c906001600160a01b031633308961106d565b610e5e338760058881548110610e2457610e24611723565b906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050610e596110a6565b611125565b9695505050505050565b60007f08a35e1699a1a8b5214fb8b0126a8cc4c903fd5c7f475703ee2fc9cca6d1f1ab610e9481610849565b858585610ea28135426117da565b60025411610eec5760405162461bcd60e51b815260206004820152601760248201527620b837b1b0b63cb839b2903230ba329034b99037bb32b960491b6044820152606401610918565b6003546001600160a01b03841660009081526007602052604090205410610f4c5760405162461bcd60e51b815260206004820152601460248201527313585e0814d958dd1a5bdb9cc81c995858da195960621b6044820152606401610918565b60008211610f925760405162461bcd60e51b8152602060048201526013602482015272105b5bdd5b9d081a5cc81b9bdd081d985b1a59606a1b6044820152606401610918565b600154610faa906001600160a01b03168a308b61106d565b610fc48989610fbe368b90038b018b6118da565b89611125565b9998505050505050505050565b610fdb8282610798565b61100a5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610918565b5050565b6040516001600160a01b038381166024830152604482018390526105d391859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506112db565b6040516001600160a01b03848116602483015283811660448301526064820183905261059a9186918216906323b872dd9060840161103b565b600080805b60055481101561111f57600581815481106110c8576110c8611723565b90600052602060002090600202016000015460000361110d57600581815481106110f4576110f4611723565b906000526020600020906002020160010154915061111f565b806111178161174f565b9150506110ab565b50919050565b60048054600091829190826111398361174f565b9190505590506040518060e0016040528082815260200186815260200184815260200142815260200160008152602001858152602001876001600160a01b031681525060066000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005016000820151816000015560208201518160010155505060c08201518160070160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555090505060076000876001600160a01b03166001600160a01b03168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055856001600160a01b03167fb243aa83332208088e29c06af8b273715d006ed2f326f915c159e1b634b474d582874288600001518960200151896040516112ca96959493929190958652602086019490945260408501929092526060840152608083015260a082015260c00190565b60405180910390a295945050505050565b60006112f06001600160a01b0384168361133e565b9050805160001415801561131557508080602001905181019061131391906117b8565b155b156105d357604051635274afe760e01b81526001600160a01b0384166004820152602401610918565b606061070e8383600084600080856001600160a01b031684866040516113649190611929565b60006040518083038185875af1925050503d80600081146113a1576040519150601f19603f3d011682016040523d82523d6000602084013e6113a6565b606091505b5091509150610e5e8683836060826113c6576113c18261140d565b61070e565b81511580156113dd57506001600160a01b0384163b155b1561140657604051639996b31560e01b81526001600160a01b0385166004820152602401610918565b508061070e565b80511561141d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b508054600082556002029060005260206000209081019061057291906114a2565b828054828255906000526020600020908101928215611492579160200282015b82811115611492578251825591602001919060010190611477565b5061149e9291506114bd565b5090565b5b8082111561149e57600080825560018201556002016114a3565b5b8082111561149e57600081556001016114be565b6000602082840312156114e457600080fd5b81356001600160e01b03198116811461070e57600080fd5b60006020828403121561150e57600080fd5b5035919050565b80356001600160a01b038116811461152c57600080fd5b919050565b6000806040838503121561154457600080fd5b8235915061155460208401611515565b90509250929050565b602080825282518282018190526000919060409081850190868401855b828110156115a75761159784835180518252602090810151910152565b928401929085019060010161157a565b5091979650505050505050565b600080604083850312156115c757600080fd5b6115d083611515565b946020939093013593505050565b600080602083850312156115f157600080fd5b823567ffffffffffffffff8082111561160957600080fd5b818501915085601f83011261161d57600080fd5b81358181111561162c57600080fd5b8660208260061b850101111561164157600080fd5b60209290920196919550909350505050565b6000806040838503121561166657600080fd5b50508035926020909101359150565b60006020828403121561168757600080fd5b61070e82611515565b6020808252825182820181905260009190848201906040850190845b818110156116c8578351835292840192918401916001016116ac565b50909695505050505050565b60008060008084860360a08112156116eb57600080fd5b6116f486611515565b9450602086013593506040603f198201121561170f57600080fd5b509295919450506040830192608001359150565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161176157611761611739565b5060010190565b6000604082016040835280855480835260608501915086600052602092508260002060005b828110156117a95781548452928401926001918201910161178d565b50505092019290925292915050565b6000602082840312156117ca57600080fd5b8151801515811461070e57600080fd5b8082018082111561054157610541611739565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561182c5761182c6117ed565b604052919050565b6000602080838503121561184757600080fd5b825167ffffffffffffffff8082111561185f57600080fd5b818501915085601f83011261187357600080fd5b815181811115611885576118856117ed565b8060051b9150611896848301611803565b81815291830184019184810190888411156118b057600080fd5b938501935b838510156118ce578451825293850193908501906118b5565b98975050505050505050565b6000604082840312156118ec57600080fd5b6040516040810181811067ffffffffffffffff8211171561190f5761190f6117ed565b604052823581526020928301359281019290925250919050565b6000825160005b8181101561194a5760208186018101518583015201611930565b50600092019182525091905056fea26469706673582212202bb9c7dfec7c3d5452d8c797e4224106d818ff59cc6abeca00a77986bc62e01364736f6c6343000814003300000000000000000000000000def86691d6e0e7e6549bec6074d56fd463faf00000000000000000000000003e5a19c91266ad8ce2477b91585d1856b84062df000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000068783d00
Deployed Bytecode
0x6080604052600436106101385760003560e01c80635042d83d116100b057806391d148541161006c57806391d14854146104445780639d76ea5814610464578063a217fddf1461049c578063d547741f146104b1578063ee1f1da6146104d1578063f11f6e941461050657005b80635042d83d146103815780635279c456146103a15780637b0472f0146103c15780637f83cc14146103e15780638610a7b8146103f7578063869a2a7d1461042457005b80632e17de78116100ff5780632e17de78146102285780632f2ff15d14610248578063356034401461026857806336568abe146103295780633666ffeb146103495780634d2b0ae91461036b57005b806301ffc9a714610141578063092c5b3b1461017657806317b916d4146101b85780631faab532146101d8578063248a9ca3146101f857005b3661013f57005b005b34801561014d57600080fd5b5061016161015c3660046114d2565b61051c565b60405190151581526020015b60405180910390f35b34801561018257600080fd5b506101aa7f08a35e1699a1a8b5214fb8b0126a8cc4c903fd5c7f475703ee2fc9cca6d1f1ab81565b60405190815260200161016d565b3480156101c457600080fd5b5061013f6101d33660046114fc565b610547565b3480156101e457600080fd5b5061013f6101f33660046114fc565b610558565b34801561020457600080fd5b506101aa6102133660046114fc565b60009081526020819052604090206001015490565b34801561023457600080fd5b5061013f6102433660046114fc565b610569565b34801561025457600080fd5b5061013f610263366004611531565b610575565b34801561027457600080fd5b506102df6102833660046114fc565b600660208181526000928352604092839020805460018201546002830154600384015460048501548851808a0190995260058601548952968501549588019590955260079093015491959094929392916001600160a01b031687565b6040805197885260208089019790975287019490945260608601929092526080850152805160a08501529091015160c08301526001600160a01b031660e08201526101000161016d565b34801561033557600080fd5b5061013f610344366004611531565b6105a0565b34801561035557600080fd5b5061035e6105d8565b60405161016d919061155d565b34801561037757600080fd5b506101aa60035481565b34801561038d57600080fd5b506101aa61039c3660046115b4565b61064b565b3480156103ad57600080fd5b5061013f6103bc3660046115de565b61067c565b3480156103cd57600080fd5b506101aa6103dc366004611653565b610702565b3480156103ed57600080fd5b506101aa60025481565b34801561040357600080fd5b50610417610412366004611675565b610715565b60405161016d9190611690565b34801561043057600080fd5b506101aa61043f3660046116d4565b610781565b34801561045057600080fd5b5061016161045f366004611531565b610798565b34801561047057600080fd5b50600154610484906001600160a01b031681565b6040516001600160a01b03909116815260200161016d565b3480156104a857600080fd5b506101aa600081565b3480156104bd57600080fd5b5061013f6104cc366004611531565b6107c1565b3480156104dd57600080fd5b506104f16104ec3660046114fc565b6107e6565b6040805192835260208301919091520161016d565b34801561051257600080fd5b506101aa60045481565b60006001600160e01b03198216630aa2759160e31b1480610541575061054182610814565b92915050565b600061055281610849565b50600255565b600061056381610849565b50600355565b61057281610853565b50565b60008281526020819052604090206001015461059081610849565b61059a8383610b64565b50505050565b6001600160a01b03811633146105c95760405163334bd91960e11b815260040160405180910390fd5b6105d38282610bf6565b505050565b60606005805480602002602001604051908101604052809291908181526020016000905b82821015610642578382906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050815260200190600101906105fc565b50505050905090565b6007602052816000526040600020818154811061066757600080fd5b90600052602060002001600091509150505481565b600061068781610849565b61069360056000611436565b60005b8281101561059a5760058484838181106106b2576106b2611723565b8354600181018555600094855260209094206040909102929092019260020290910190506106ed828281358155602082013560018201555050565b505080806106fa9061174f565b915050610696565b600061070e8383610c61565b9392505050565b6001600160a01b03811660009081526007602090815260409182902080548351818402810184019094528084526060939283018282801561077557602002820191906000526020600020905b815481526020019060010190808311610761575b50505050509050919050565b600061078f85858585610e68565b95945050505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000828152602081905260409020600101546107dc81610849565b61059a8383610bf6565b600581815481106107f657600080fd5b60009182526020909120600290910201805460019091015490915082565b60006001600160e01b03198216637965db0b60e01b148061054157506301ffc9a760e01b6001600160e01b0319831614610541565b6105728133610fd1565b336000908152600760205260409081902090516250c43560e11b815282917368d3504d8abcbfdde5bb489c223035454942d6519162a1886a9161089a918590600401611768565b602060405180830381865af41580156108b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108db91906117b8565b6109215760405162461bcd60e51b815260206004820152601260248201527114d958dd1a5bdb881a5cc81a5b9d985b1a5960721b60448201526064015b60405180910390fd5b600081815260066020818152604092839020835160e0810185528154815260018201548184015260028201548186015260038201546060820152600482015460808201908152855180870190965260058301548652938201549285019290925260a08201939093526007909201546001600160a01b031660c083015251156109eb5760405162461bcd60e51b815260206004820152601b60248201527f53656374696f6e20697320616c726561647920756e7374616b656400000000006044820152606401610918565b60a0810151516060820151610a0091906117da565b421015610a455760405162461bcd60e51b81526020600482015260136024820152722637b1b596bab81034b9903737ba1037bb32b960691b6044820152606401610918565b600083815260066020908152604080832033845260079092529182902091516332ef712b60e21b815290917368d3504d8abcbfdde5bb489c223035454942d6519163cbbdc4ac91610a9a918890600401611768565b600060405180830381865af4158015610ab7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610adf9190810190611834565b3360009081526007602090815260409091208251610b039391929190910190611457565b504260048201556001808201549054610b29916001600160a01b0390911690339061100e565b60405184815233907ff6e150e51c76005159a20fcadc3a9f06fba011914a1faeba1c7e8d82860643f79060200160405180910390a250505050565b6000610b708383610798565b610bee576000838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610ba63390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610541565b506000610541565b6000610c028383610798565b15610bee576000838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610541565b600082828060058054905011610cb95760405162461bcd60e51b815260206004820152601b60248201527f4c6f636b2d757020636f6e666967206973206e6f742076616c696400000000006044820152606401610918565b600060058281548110610cce57610cce611723565b9060005260206000209060020201604051806040016040529081600082015481526020016001820154815250509050806000015142610d0d91906117da565b60025411610d575760405162461bcd60e51b815260206004820152601760248201527620b837b1b0b63cb839b2903230ba329034b99037bb32b960491b6044820152606401610918565b6003543360009081526007602052604090205410610dae5760405162461bcd60e51b815260206004820152601460248201527313585e0814d958dd1a5bdb9cc81c995858da195960621b6044820152606401610918565b60008311610df45760405162461bcd60e51b8152602060048201526013602482015272105b5bdd5b9d081a5cc81b9bdd081d985b1a59606a1b6044820152606401610918565b600154610e0c906001600160a01b031633308961106d565b610e5e338760058881548110610e2457610e24611723565b906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050610e596110a6565b611125565b9695505050505050565b60007f08a35e1699a1a8b5214fb8b0126a8cc4c903fd5c7f475703ee2fc9cca6d1f1ab610e9481610849565b858585610ea28135426117da565b60025411610eec5760405162461bcd60e51b815260206004820152601760248201527620b837b1b0b63cb839b2903230ba329034b99037bb32b960491b6044820152606401610918565b6003546001600160a01b03841660009081526007602052604090205410610f4c5760405162461bcd60e51b815260206004820152601460248201527313585e0814d958dd1a5bdb9cc81c995858da195960621b6044820152606401610918565b60008211610f925760405162461bcd60e51b8152602060048201526013602482015272105b5bdd5b9d081a5cc81b9bdd081d985b1a59606a1b6044820152606401610918565b600154610faa906001600160a01b03168a308b61106d565b610fc48989610fbe368b90038b018b6118da565b89611125565b9998505050505050505050565b610fdb8282610798565b61100a5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610918565b5050565b6040516001600160a01b038381166024830152604482018390526105d391859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506112db565b6040516001600160a01b03848116602483015283811660448301526064820183905261059a9186918216906323b872dd9060840161103b565b600080805b60055481101561111f57600581815481106110c8576110c8611723565b90600052602060002090600202016000015460000361110d57600581815481106110f4576110f4611723565b906000526020600020906002020160010154915061111f565b806111178161174f565b9150506110ab565b50919050565b60048054600091829190826111398361174f565b9190505590506040518060e0016040528082815260200186815260200184815260200142815260200160008152602001858152602001876001600160a01b031681525060066000838152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005016000820151816000015560208201518160010155505060c08201518160070160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555090505060076000876001600160a01b03166001600160a01b03168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055856001600160a01b03167fb243aa83332208088e29c06af8b273715d006ed2f326f915c159e1b634b474d582874288600001518960200151896040516112ca96959493929190958652602086019490945260408501929092526060840152608083015260a082015260c00190565b60405180910390a295945050505050565b60006112f06001600160a01b0384168361133e565b9050805160001415801561131557508080602001905181019061131391906117b8565b155b156105d357604051635274afe760e01b81526001600160a01b0384166004820152602401610918565b606061070e8383600084600080856001600160a01b031684866040516113649190611929565b60006040518083038185875af1925050503d80600081146113a1576040519150601f19603f3d011682016040523d82523d6000602084013e6113a6565b606091505b5091509150610e5e8683836060826113c6576113c18261140d565b61070e565b81511580156113dd57506001600160a01b0384163b155b1561140657604051639996b31560e01b81526001600160a01b0385166004820152602401610918565b508061070e565b80511561141d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b508054600082556002029060005260206000209081019061057291906114a2565b828054828255906000526020600020908101928215611492579160200282015b82811115611492578251825591602001919060010190611477565b5061149e9291506114bd565b5090565b5b8082111561149e57600080825560018201556002016114a3565b5b8082111561149e57600081556001016114be565b6000602082840312156114e457600080fd5b81356001600160e01b03198116811461070e57600080fd5b60006020828403121561150e57600080fd5b5035919050565b80356001600160a01b038116811461152c57600080fd5b919050565b6000806040838503121561154457600080fd5b8235915061155460208401611515565b90509250929050565b602080825282518282018190526000919060409081850190868401855b828110156115a75761159784835180518252602090810151910152565b928401929085019060010161157a565b5091979650505050505050565b600080604083850312156115c757600080fd5b6115d083611515565b946020939093013593505050565b600080602083850312156115f157600080fd5b823567ffffffffffffffff8082111561160957600080fd5b818501915085601f83011261161d57600080fd5b81358181111561162c57600080fd5b8660208260061b850101111561164157600080fd5b60209290920196919550909350505050565b6000806040838503121561166657600080fd5b50508035926020909101359150565b60006020828403121561168757600080fd5b61070e82611515565b6020808252825182820181905260009190848201906040850190845b818110156116c8578351835292840192918401916001016116ac565b50909695505050505050565b60008060008084860360a08112156116eb57600080fd5b6116f486611515565b9450602086013593506040603f198201121561170f57600080fd5b509295919450506040830192608001359150565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161176157611761611739565b5060010190565b6000604082016040835280855480835260608501915086600052602092508260002060005b828110156117a95781548452928401926001918201910161178d565b50505092019290925292915050565b6000602082840312156117ca57600080fd5b8151801515811461070e57600080fd5b8082018082111561054157610541611739565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561182c5761182c6117ed565b604052919050565b6000602080838503121561184757600080fd5b825167ffffffffffffffff8082111561185f57600080fd5b818501915085601f83011261187357600080fd5b815181811115611885576118856117ed565b8060051b9150611896848301611803565b81815291830184019184810190888411156118b057600080fd5b938501935b838510156118ce578451825293850193908501906118b5565b98975050505050505050565b6000604082840312156118ec57600080fd5b6040516040810181811067ffffffffffffffff8211171561190f5761190f6117ed565b604052823581526020928301359281019290925250919050565b6000825160005b8181101561194a5760208186018101518583015201611930565b50600092019182525091905056fea26469706673582212202bb9c7dfec7c3d5452d8c797e4224106d818ff59cc6abeca00a77986bc62e01364736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000def86691d6e0e7e6549bec6074d56fd463faf00000000000000000000000003e5a19c91266ad8ce2477b91585d1856b84062df000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000068783d00
-----Decoded View---------------
Arg [0] : admin (address): 0x00DEF86691D6E0e7e6549Bec6074D56fd463FAF0
Arg [1] : _tokenAddress (address): 0x3E5A19c91266aD8cE2477B91585d1856B84062dF
Arg [2] : _maxActiveSections (uint256): 10
Arg [3] : _apocalypseDate (uint256): 1752710400
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000def86691d6e0e7e6549bec6074d56fd463faf0
Arg [1] : 0000000000000000000000003e5a19c91266ad8ce2477b91585d1856b84062df
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 0000000000000000000000000000000000000000000000000000000068783d00
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.