ETH Price: $3,493.44 (+2.74%)
Gas: 11 Gwei

Contract

0x80F74a0DF87cAba05B9133A154fBacFeEf2C3FAe
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Deposit203141512024-07-15 19:58:5934 hrs ago1721073539IN
0x80F74a0D...eEf2C3FAe
0 ETH0.0013868218.30544094
Deposit202519402024-07-07 3:26:3510 days ago1720322795IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000112291.69759197
Deposit202480202024-07-06 14:19:3510 days ago1720275575IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000222593.13747057
Withdraw202090532024-07-01 3:42:2316 days ago1719805343IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000278094.24458336
Withdraw201251442024-06-19 10:19:2327 days ago1718792363IN
0x80F74a0D...eEf2C3FAe
0 ETH0.00015443.18907838
Withdraw200957672024-06-15 7:41:1131 days ago1718437271IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000211844.37425198
Withdraw200890532024-06-14 9:09:1132 days ago1718356151IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000338046.98193611
Withdraw200861212024-06-13 23:18:1133 days ago1718320691IN
0x80F74a0D...eEf2C3FAe
0 ETH0.00034987.22487481
Withdraw200861172024-06-13 23:17:2333 days ago1718320643IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000499037.61544306
Withdraw200638042024-06-10 20:25:4736 days ago1718051147IN
0x80F74a0D...eEf2C3FAe
0 ETH0.0010437721.55260554
Deposit200615882024-06-10 12:59:5936 days ago1718024399IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000607878.56786563
Withdraw199823382024-05-30 11:22:3547 days ago1717068155IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000681910.40615104
Withdraw199764552024-05-29 15:37:3548 days ago1716997055IN
0x80F74a0D...eEf2C3FAe
0 ETH0.0015854824.19076353
Deposit199693792024-05-28 15:52:2349 days ago1716911543IN
0x80F74a0D...eEf2C3FAe
0 ETH0.001273919.26189926
Deposit199368342024-05-24 2:43:4754 days ago1716518627IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000468966.61107202
Deposit198779782024-05-15 21:10:1162 days ago1715807411IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000547867.72082694
Deposit198675892024-05-14 10:15:1163 days ago1715681711IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000549547.74438905
Deposit198660792024-05-14 5:11:1164 days ago1715663471IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000244033.4396921
Deposit198642562024-05-13 23:04:2364 days ago1715641463IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000268963.79101859
Deposit198538252024-05-12 12:05:1165 days ago1715515511IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000303734.28109255
Deposit198537732024-05-12 11:54:4765 days ago1715514887IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000229573.23580738
Deposit198529062024-05-12 9:00:1165 days ago1715504411IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000240613.63756057
Deposit198524682024-05-12 7:30:5965 days ago1715499059IN
0x80F74a0D...eEf2C3FAe
0 ETH0.00022923.90814144
Deposit198524602024-05-12 7:29:2365 days ago1715498963IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000288133.80441879
Deposit198491602024-05-11 20:24:5966 days ago1715459099IN
0x80F74a0D...eEf2C3FAe
0 ETH0.000241983.41076349
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Lock

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 8 : Lock.sol
// SPDX-License-Identifier: UNLICENSED
// Developed by Liteflow.com
pragma solidity 0.8.20;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/ReentrancyGuard.sol';

/**
 * @notice Lock Contract
 */
contract Lock is Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;

    /**
     * @dev Hold the balance of a user and the last deposit date in one storage slot
     */
    struct Balance {
        uint40 lastDepositDate;
        uint216 amount;
    }

    /**
     * @notice Deposit event
     */
    event Deposit(address indexed account, uint256 amount);

    /**
     * @notice Withdraw event
     */
    event Withdraw(address indexed account, uint256 amount);

    /**
     * @notice Thrown when a user tries to withdraw before the lock duration is reached
     */
    error LockDurationNotReached();

    /**
     * @notice Thrown when a user tries to withdraw more than its balance
     */
    error InsufficientBalance();

    /**
     * @notice Thrown when a transfer fails
     */
    error TransferFailed();

    /**
     * @notice Thrown when the provided amount is invalid
     */
    error InvalidAmount();

    /**
     * @notice The token to deposit and withdraw from this contract
     */
    IERC20 public immutable token;

    /**
     * @notice The minimum duration between deposit and withdraw
     */
    uint256 public lockDuration;

    /**
     * @notice The balance of each user with their last deposit date
     */
    mapping(address account => Balance) private balances;

    /**
     * @dev Constructor
     */
    constructor(
        address initialOwner_,
        IERC20 token_,
        uint256 lockDuration_
    ) Ownable(initialOwner_) {
        token = token_;
        lockDuration = lockDuration_;
    }

    /**
     * @notice Deposit token from the sender to this contract
     */
    function deposit(uint216 amount_) external nonReentrant {
        // save balance before transfer
        uint256 _contractBalance = token.balanceOf(address(this));

        // transfer token
        token.safeTransferFrom(msg.sender, address(this), amount_);

        // calculate actual amount transferred
        uint216 _transferredAmount = uint216(
            token.balanceOf(address(this)) - _contractBalance
        );

        // check amount is not 0
        if (_transferredAmount == 0) revert InvalidAmount();

        // get balance
        Balance storage _balance = balances[msg.sender];

        // update balance
        _balance.amount = _balance.amount + _transferredAmount;

        // update last deposit date
        _balance.lastDepositDate = uint40(block.timestamp);

        // emit event
        emit Deposit(msg.sender, _transferredAmount);
    }

    /**
     * @notice Withdraw token back to the sender
     */
    function withdraw(uint216 amount_) external {
        // check amount is not 0
        if (amount_ == 0) revert InvalidAmount();

        // get balance
        Balance storage _balance = balances[msg.sender];

        // check lock duration
        if (block.timestamp - _balance.lastDepositDate < lockDuration)
            revert LockDurationNotReached();

        // check balance
        if (_balance.amount < amount_) revert InsufficientBalance();

        // update balance
        _balance.amount = _balance.amount - amount_;

        // transfer token
        token.safeTransfer(msg.sender, amount_);

        // emit event
        emit Withdraw(msg.sender, amount_);
    }

    /**
     * @notice Get the deposit of a user
     */
    function balanceOf(
        address account_
    ) external view returns (Balance memory) {
        return balances[account_];
    }

    /**
     * @notice Update the lock duration. Only the owner can call this function
     */
    function setLockDuration(uint256 newLockDuration_) external onlyOwner {
        lockDuration = newLockDuration_;
    }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 8 : IERC20Permit.sol
// 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);
}

File 4 of 8 : IERC20.sol
// 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);
}

File 5 of 8 : SafeERC20.sol
// 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;
    }
}

File 6 of 8 : Address.sol
// 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();
        }
    }
}

File 7 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (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;
    }
}

File 8 of 8 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant NOT_ENTERED = 1;
    uint256 private constant ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner_","type":"address"},{"internalType":"contract IERC20","name":"token_","type":"address"},{"internalType":"uint256","name":"lockDuration_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"LockDurationNotReached","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"balanceOf","outputs":[{"components":[{"internalType":"uint40","name":"lastDepositDate","type":"uint40"},{"internalType":"uint216","name":"amount","type":"uint216"}],"internalType":"struct Lock.Balance","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint216","name":"amount_","type":"uint216"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLockDuration_","type":"uint256"}],"name":"setLockDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint216","name":"amount_","type":"uint216"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561001057600080fd5b50604051610b95380380610b9583398101604081905261002f916100eb565b826001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61006781610083565b50600180556001600160a01b039091166080526002555061012e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146100e857600080fd5b50565b60008060006060848603121561010057600080fd5b835161010b816100d3565b602085015190935061011c816100d3565b80925050604084015190509250925092565b608051610a30610165600039600081816101c7015281816102ed015281816103810152818161040301526104560152610a306000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80638da5cb5b116100665780638da5cb5b14610164578063d91500af14610189578063d9d29ac91461019c578063f2fde38b146101af578063fc0c546a146101c257600080fd5b806304554443146100985780634eb665af146100b457806370a08231146100c9578063715018a61461015c575b600080fd5b6100a160025481565b6040519081526020015b60405180910390f35b6100c76100c23660046108b5565b6101e9565b005b6101316100d73660046108ce565b6040805180820190915260008082526020820152506001600160a01b031660009081526003602090815260409182902082518084019093525464ffffffffff81168352600160281b90046001600160d81b03169082015290565b60408051825164ffffffffff1681526020928301516001600160d81b031692810192909252016100ab565b6100c76101f6565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016100ab565b6100c76101973660046108f7565b61020a565b6100c76101aa3660046108f7565b610361565b6100c76101bd3660046108ce565b61058d565b6101717f000000000000000000000000000000000000000000000000000000000000000081565b6101f16105cd565b600255565b6101fe6105cd565b61020860006105fa565b565b806001600160d81b03166000036102345760405163162908e360e11b815260040160405180910390fd5b33600090815260036020526040902060025481546102599064ffffffffff1642610936565b101561027857604051638ea2ac9d60e01b815260040160405180910390fd5b80546001600160d81b03808416600160281b9092041610156102ad57604051631e9acf1760e31b815260040160405180910390fd5b80546102ca908390600160281b90046001600160d81b0316610949565b815464ffffffffff16600160281b6001600160d81b039283160217825561031f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316903390851661064a565b6040516001600160d81b038316815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a25050565b6103696106ae565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156103d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f49190610970565b90506104346001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633306001600160d81b0386166106d8565b6040516370a0823160e01b815230600482015260009082906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa15801561049d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c19190610970565b6104cb9190610936565b9050806001600160d81b03166000036104f75760405163162908e360e11b815260040160405180910390fd5b3360009081526003602052604090208054610523908390600160281b90046001600160d81b0316610989565b64ffffffffff19600160281b6001600160d81b03928316021664ffffffffff4216178255604051908316815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a250505061058a60018055565b50565b6105956105cd565b6001600160a01b0381166105c457604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61058a816105fa565b6000546001600160a01b031633146102085760405163118cdaa760e01b81523360048201526024016105bb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b038381166024830152604482018390526106a991859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610717565b505050565b6002600154036106d157604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b6040516001600160a01b0384811660248301528381166044830152606482018390526107119186918216906323b872dd90608401610677565b50505050565b600061072c6001600160a01b0384168361077a565b9050805160001415801561075157508080602001905181019061074f91906109a9565b155b156106a957604051635274afe760e01b81526001600160a01b03841660048201526024016105bb565b606061078883836000610791565b90505b92915050565b6060814710156107b65760405163cd78605960e01b81523060048201526024016105bb565b600080856001600160a01b031684866040516107d291906109cb565b60006040518083038185875af1925050503d806000811461080f576040519150601f19603f3d011682016040523d82523d6000602084013e610814565b606091505b5091509150610824868383610830565b925050505b9392505050565b606082610845576108408261088c565b610829565b815115801561085c57506001600160a01b0384163b155b1561088557604051639996b31560e01b81526001600160a01b03851660048201526024016105bb565b5080610829565b80511561089c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000602082840312156108c757600080fd5b5035919050565b6000602082840312156108e057600080fd5b81356001600160a01b038116811461082957600080fd5b60006020828403121561090957600080fd5b81356001600160d81b038116811461082957600080fd5b634e487b7160e01b600052601160045260246000fd5b8181038181111561078b5761078b610920565b6001600160d81b0382811682821603908082111561096957610969610920565b5092915050565b60006020828403121561098257600080fd5b5051919050565b6001600160d81b0381811683821601908082111561096957610969610920565b6000602082840312156109bb57600080fd5b8151801515811461082957600080fd5b6000825160005b818110156109ec57602081860181015185830152016109d2565b50600092019182525091905056fea2646970667358221220a915967507ba7c7b65d1ee981c96fad399092b9f561f0d657f755a42a10eb43564736f6c634300081400330000000000000000000000001b6234b10ff4dea401471a93a89a3bae00774eff000000000000000000000000a23c1194d421f252b4e6d5edcc3205f7650a4ebe0000000000000000000000000000000000000000000000000000000000278d00

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c80638da5cb5b116100665780638da5cb5b14610164578063d91500af14610189578063d9d29ac91461019c578063f2fde38b146101af578063fc0c546a146101c257600080fd5b806304554443146100985780634eb665af146100b457806370a08231146100c9578063715018a61461015c575b600080fd5b6100a160025481565b6040519081526020015b60405180910390f35b6100c76100c23660046108b5565b6101e9565b005b6101316100d73660046108ce565b6040805180820190915260008082526020820152506001600160a01b031660009081526003602090815260409182902082518084019093525464ffffffffff81168352600160281b90046001600160d81b03169082015290565b60408051825164ffffffffff1681526020928301516001600160d81b031692810192909252016100ab565b6100c76101f6565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016100ab565b6100c76101973660046108f7565b61020a565b6100c76101aa3660046108f7565b610361565b6100c76101bd3660046108ce565b61058d565b6101717f000000000000000000000000a23c1194d421f252b4e6d5edcc3205f7650a4ebe81565b6101f16105cd565b600255565b6101fe6105cd565b61020860006105fa565b565b806001600160d81b03166000036102345760405163162908e360e11b815260040160405180910390fd5b33600090815260036020526040902060025481546102599064ffffffffff1642610936565b101561027857604051638ea2ac9d60e01b815260040160405180910390fd5b80546001600160d81b03808416600160281b9092041610156102ad57604051631e9acf1760e31b815260040160405180910390fd5b80546102ca908390600160281b90046001600160d81b0316610949565b815464ffffffffff16600160281b6001600160d81b039283160217825561031f907f000000000000000000000000a23c1194d421f252b4e6d5edcc3205f7650a4ebe6001600160a01b0316903390851661064a565b6040516001600160d81b038316815233907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243649060200160405180910390a25050565b6103696106ae565b6040516370a0823160e01b81523060048201526000907f000000000000000000000000a23c1194d421f252b4e6d5edcc3205f7650a4ebe6001600160a01b0316906370a0823190602401602060405180830381865afa1580156103d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f49190610970565b90506104346001600160a01b037f000000000000000000000000a23c1194d421f252b4e6d5edcc3205f7650a4ebe1633306001600160d81b0386166106d8565b6040516370a0823160e01b815230600482015260009082906001600160a01b037f000000000000000000000000a23c1194d421f252b4e6d5edcc3205f7650a4ebe16906370a0823190602401602060405180830381865afa15801561049d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c19190610970565b6104cb9190610936565b9050806001600160d81b03166000036104f75760405163162908e360e11b815260040160405180910390fd5b3360009081526003602052604090208054610523908390600160281b90046001600160d81b0316610989565b64ffffffffff19600160281b6001600160d81b03928316021664ffffffffff4216178255604051908316815233907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c9060200160405180910390a250505061058a60018055565b50565b6105956105cd565b6001600160a01b0381166105c457604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61058a816105fa565b6000546001600160a01b031633146102085760405163118cdaa760e01b81523360048201526024016105bb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b038381166024830152604482018390526106a991859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610717565b505050565b6002600154036106d157604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b6040516001600160a01b0384811660248301528381166044830152606482018390526107119186918216906323b872dd90608401610677565b50505050565b600061072c6001600160a01b0384168361077a565b9050805160001415801561075157508080602001905181019061074f91906109a9565b155b156106a957604051635274afe760e01b81526001600160a01b03841660048201526024016105bb565b606061078883836000610791565b90505b92915050565b6060814710156107b65760405163cd78605960e01b81523060048201526024016105bb565b600080856001600160a01b031684866040516107d291906109cb565b60006040518083038185875af1925050503d806000811461080f576040519150601f19603f3d011682016040523d82523d6000602084013e610814565b606091505b5091509150610824868383610830565b925050505b9392505050565b606082610845576108408261088c565b610829565b815115801561085c57506001600160a01b0384163b155b1561088557604051639996b31560e01b81526001600160a01b03851660048201526024016105bb565b5080610829565b80511561089c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000602082840312156108c757600080fd5b5035919050565b6000602082840312156108e057600080fd5b81356001600160a01b038116811461082957600080fd5b60006020828403121561090957600080fd5b81356001600160d81b038116811461082957600080fd5b634e487b7160e01b600052601160045260246000fd5b8181038181111561078b5761078b610920565b6001600160d81b0382811682821603908082111561096957610969610920565b5092915050565b60006020828403121561098257600080fd5b5051919050565b6001600160d81b0381811683821601908082111561096957610969610920565b6000602082840312156109bb57600080fd5b8151801515811461082957600080fd5b6000825160005b818110156109ec57602081860181015185830152016109d2565b50600092019182525091905056fea2646970667358221220a915967507ba7c7b65d1ee981c96fad399092b9f561f0d657f755a42a10eb43564736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000001b6234b10ff4dea401471a93a89a3bae00774eff000000000000000000000000a23c1194d421f252b4e6d5edcc3205f7650a4ebe0000000000000000000000000000000000000000000000000000000000278d00

-----Decoded View---------------
Arg [0] : initialOwner_ (address): 0x1b6234B10FF4deA401471a93A89A3BaE00774EfF
Arg [1] : token_ (address): 0xa23C1194d421F252b4e6D5edcc3205F7650a4eBE
Arg [2] : lockDuration_ (uint256): 2592000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000001b6234b10ff4dea401471a93a89a3bae00774eff
Arg [1] : 000000000000000000000000a23c1194d421f252b4e6d5edcc3205f7650a4ebe
Arg [2] : 0000000000000000000000000000000000000000000000000000000000278d00


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.