ETH Price: $2,523.74 (-0.76%)

Contract

0x2121E4d93E3352b812A5B3Fd7fbD194c4bb662b1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Unlock170491652023-04-15 1:22:59503 days ago1681521779IN
0x2121E4d9...c4bb662b1
0 ETH0.0010114522.54048863
Lock169588182023-04-02 3:42:11516 days ago1680406931IN
0x2121E4d9...c4bb662b1
0 ETH0.0008970617.22110144
Unlock169245462023-03-28 8:06:59521 days ago1679990819IN
0x2121E4d9...c4bb662b1
0 ETH0.0011676626.02843209
Unlock169094772023-03-26 5:19:11523 days ago1679807951IN
0x2121E4d9...c4bb662b1
0 ETH0.0006349414.15354301
Unlock168943862023-03-24 2:27:23525 days ago1679624843IN
0x2121E4d9...c4bb662b1
0 ETH0.0006189713.79391814
Unlock168583402023-03-19 0:55:11530 days ago1679187311IN
0x2121E4d9...c4bb662b1
0 ETH0.000605613.4996014
Lock166824082023-02-22 7:08:23555 days ago1677049703IN
0x2121E4d9...c4bb662b1
0 ETH0.0016996224.56421028
Unlock166424992023-02-16 16:31:47560 days ago1676565107IN
0x2121E4d9...c4bb662b1
0 ETH0.0026278858.57832594
Unlock166242672023-02-14 3:19:23563 days ago1676344763IN
0x2121E4d9...c4bb662b1
0 ETH0.0012976628.91850744
Lock165385072023-02-02 3:42:11575 days ago1675309331IN
0x2121E4d9...c4bb662b1
0 ETH0.0010518220.19211257
Unlock165083002023-01-28 22:27:59579 days ago1674944879IN
0x2121E4d9...c4bb662b1
0 ETH0.0008321618.54490962
Lock164465392023-01-20 7:32:11588 days ago1674199931IN
0x2121E4d9...c4bb662b1
0 ETH0.001137316.43722929
Unlock162474822022-12-23 12:40:35615 days ago1671799235IN
0x2121E4d9...c4bb662b1
0 ETH0.0005628512.54655784
Unlock161125912022-12-04 16:19:11634 days ago1670170751IN
0x2121E4d9...c4bb662b1
0 ETH0.0006265913.96743275
Lock160241942022-11-22 7:55:11647 days ago1669103711IN
0x2121E4d9...c4bb662b1
0 ETH0.0006356912.20640101
Unlock160241902022-11-22 7:54:23647 days ago1669103663IN
0x2121E4d9...c4bb662b1
0 ETH0.0005411912.06376678
Unlock159979352022-11-18 15:56:11650 days ago1668786971IN
0x2121E4d9...c4bb662b1
0 ETH0.0011841526.40308864
Unlock157186902022-10-10 15:47:23689 days ago1665416843IN
0x2121E4d9...c4bb662b1
0 ETH0.0012595928.0702402
Unlock157070032022-10-09 0:37:35691 days ago1665275855IN
0x2121E4d9...c4bb662b1
0 ETH0.001043323.25636104
Unlock156903722022-10-06 16:52:59693 days ago1665075179IN
0x2121E4d9...c4bb662b1
0 ETH0.0020288945.21416402
Lock156506612022-10-01 3:35:23699 days ago1664595323IN
0x2121E4d9...c4bb662b1
0 ETH0.000603428.72270118
Unlock155944122022-09-23 6:59:47707 days ago1663916387IN
0x2121E4d9...c4bb662b1
0 ETH0.000282956.30571878
Lock155680152022-09-19 14:00:11710 days ago1663596011IN
0x2121E4d9...c4bb662b1
0 ETH0.0009370613.54310176
Lock155672672022-09-19 11:28:23710 days ago1663586903IN
0x2121E4d9...c4bb662b1
0 ETH0.000332584.80755049
Unlock155660102022-09-19 7:14:47711 days ago1663571687IN
0x2121E4d9...c4bb662b1
0 ETH0.000241435.38179465
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:
OpenDAOLock

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
File 1 of 4 : OpenDAOLock.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

contract OpenDAOLock {
    using SafeERC20 for IERC20;

    // mainnet 0x3b484b82567a09e2588A13D54D032153f0c0aEe0
    IERC20 public immutable sosToken;
    uint256 public immutable lockDuration;

    struct Lock {
        uint64 unlockTime;
        uint192 amount;
    }

    mapping(address => Lock) public locks;

    constructor(IERC20 _sosToken, uint256 _lockDuration) {
        sosToken = _sosToken;
        lockDuration = _lockDuration;
    }

    function lock(uint256 _amount) external {
        require(_amount > 0, "OpenDAOLock: Invalid amount");
        sosToken.safeTransferFrom(msg.sender, address(this), _amount);
        Lock memory _lock = locks[msg.sender];
        _lock.amount += uint192(_amount);
        _lock.unlockTime = uint64(block.timestamp + lockDuration);
        locks[msg.sender] = _lock;
    }

    function unlock(uint256 _amount) external {
        require(_amount > 0, "OpenDAOLock: Invalid amount");
        Lock memory _lock = locks[msg.sender];
        require(block.timestamp >= _lock.unlockTime, "OpenDAOLock: Assets locked");
        require(uint256(_lock.amount) >= _amount, "OpenDAOLock: Insufficient amount to withdraw");
        locks[msg.sender].amount -= uint192(_amount);
        sosToken.safeTransfer(msg.sender, _amount);
    }

    function locked(address _account) external view returns(uint256) {
        return locks[_account].amount;
    }

    function lockTime(address _account) external view returns(uint64 _lockTime, uint64 _now) {
        if (locks[_account].unlockTime <= uint64(lockDuration)) {
            _lockTime = 0;
        } else {
            _lockTime = locks[_account].unlockTime - uint64(lockDuration);
        }
        _now = uint64(block.timestamp);
    }

    function unlockTime(address _account) external view returns(uint64 _unlockTime, uint64 _now) {
        _unlockTime = locks[_account].unlockTime;
        _now = uint64(block.timestamp);
    }
}

File 2 of 4 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}

File 3 of 4 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 4 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_sosToken","type":"address"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"lockTime","outputs":[{"internalType":"uint64","name":"_lockTime","type":"uint64"},{"internalType":"uint64","name":"_now","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"locked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"locks","outputs":[{"internalType":"uint64","name":"unlockTime","type":"uint64"},{"internalType":"uint192","name":"amount","type":"uint192"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sosToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"unlockTime","outputs":[{"internalType":"uint64","name":"_unlockTime","type":"uint64"},{"internalType":"uint64","name":"_now","type":"uint64"}],"stateMutability":"view","type":"function"}]

60c060405234801561001057600080fd5b50604051610be9380380610be983398101604081905261002f91610045565b6001600160a01b0390911660805260a05261007f565b6000806040838503121561005857600080fd5b82516001600160a01b038116811461006f57600080fd5b6020939093015192949293505050565b60805160a051610b236100c660003960008181609201528181610459015281816104a901526105c20152600081816101ae015281816103f8015261053f0152610b236000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063a4beda631161005b578063a4beda6314610196578063c2e63e60146101a9578063cbf9fe5f146101e8578063dd4670641461022157600080fd5b8063045544431461008d5780635de9a137146100c75780636198e3391461012b57806376b467b714610140575b600080fd5b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020015b60405180910390f35b6101036100d536600461096c565b60006020819052908152604090205467ffffffffffffffff811690600160401b90046001600160c01b031682565b6040805167ffffffffffffffff90931683526001600160c01b039091166020830152016100be565b61013e610139366004610995565b610234565b005b61017561014e36600461096c565b6001600160a01b031660009081526020819052604090205467ffffffffffffffff16904290565b6040805167ffffffffffffffff9384168152929091166020830152016100be565b6101756101a436600461096c565b610433565b6101d07f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100be565b6100b46101f636600461096c565b6001600160a01b0316600090815260208190526040902054600160401b90046001600160c01b031690565b61013e61022f366004610995565b6104e2565b600081116102895760405162461bcd60e51b815260206004820152601b60248201527f4f70656e44414f4c6f636b3a20496e76616c696420616d6f756e74000000000060448201526064015b60405180910390fd5b336000908152602081815260409182902082518084019093525467ffffffffffffffff8116808452600160401b9091046001600160c01b0316918301919091524210156103185760405162461bcd60e51b815260206004820152601a60248201527f4f70656e44414f4c6f636b3a20417373657473206c6f636b65640000000000006044820152606401610280565b8181602001516001600160c01b0316101561039b5760405162461bcd60e51b815260206004820152602c60248201527f4f70656e44414f4c6f636b3a20496e73756666696369656e7420616d6f756e7460448201527f20746f20776974686472617700000000000000000000000000000000000000006064820152608401610280565b33600090815260208190526040902080548391906008906103cd908490600160401b90046001600160c01b03166109c4565b92506101000a8154816001600160c01b0302191690836001600160c01b0316021790555061042f33837f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166106239092919063ffffffff16565b5050565b6001600160a01b038116600090815260208190526040812054819067ffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811691161161048a57600091506104db565b6001600160a01b0383166000908152602081905260409020546104d8907f00000000000000000000000000000000000000000000000000000000000000009067ffffffffffffffff166109ec565b91505b5091429150565b600081116105325760405162461bcd60e51b815260206004820152601b60248201527f4f70656e44414f4c6f636b3a20496e76616c696420616d6f756e7400000000006044820152606401610280565b6105676001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163330846106b8565b336000908152602081815260409182902082518084019093525467ffffffffffffffff81168352600160401b90046001600160c01b031690820181815283916105b1908390610a0d565b6001600160c01b03169052506105e77f000000000000000000000000000000000000000000000000000000000000000042610a38565b67ffffffffffffffff908116825233600090815260208181526040909120835191909301516001600160c01b0316600160401b02911617905550565b6040516001600160a01b0383166024820152604481018290526106b390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526106f6565b505050565b6040516001600160a01b03808516602483015283166044820152606481018290526106f09085906323b872dd60e01b9060840161064f565b50505050565b600061074b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166107db9092919063ffffffff16565b8051909150156106b357808060200190518101906107699190610a50565b6106b35760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610280565b60606107ea84846000856107f4565b90505b9392505050565b60608247101561086c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610280565b843b6108ba5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610280565b600080866001600160a01b031685876040516108d69190610a9e565b60006040518083038185875af1925050503d8060008114610913576040519150601f19603f3d011682016040523d82523d6000602084013e610918565b606091505b5091509150610928828286610933565b979650505050505050565b606083156109425750816107ed565b8251156109525782518084602001fd5b8160405162461bcd60e51b81526004016102809190610aba565b60006020828403121561097e57600080fd5b81356001600160a01b03811681146107ed57600080fd5b6000602082840312156109a757600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b60006001600160c01b03838116908316818110156109e4576109e46109ae565b039392505050565b600067ffffffffffffffff838116908316818110156109e4576109e46109ae565b60006001600160c01b03808316818516808303821115610a2f57610a2f6109ae565b01949350505050565b60008219821115610a4b57610a4b6109ae565b500190565b600060208284031215610a6257600080fd5b815180151581146107ed57600080fd5b60005b83811015610a8d578181015183820152602001610a75565b838111156106f05750506000910152565b60008251610ab0818460208701610a72565b9190910192915050565b6020815260008251806020840152610ad9816040850160208701610a72565b601f01601f1916919091016040019291505056fea26469706673582212207d0e9cb091dd8cd25404520d94c5a9f87bd5795360916368bdb3a0c21fbe175164736f6c634300080900330000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee00000000000000000000000000000000000000000000000000000000000093a80

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c8063a4beda631161005b578063a4beda6314610196578063c2e63e60146101a9578063cbf9fe5f146101e8578063dd4670641461022157600080fd5b8063045544431461008d5780635de9a137146100c75780636198e3391461012b57806376b467b714610140575b600080fd5b6100b47f0000000000000000000000000000000000000000000000000000000000093a8081565b6040519081526020015b60405180910390f35b6101036100d536600461096c565b60006020819052908152604090205467ffffffffffffffff811690600160401b90046001600160c01b031682565b6040805167ffffffffffffffff90931683526001600160c01b039091166020830152016100be565b61013e610139366004610995565b610234565b005b61017561014e36600461096c565b6001600160a01b031660009081526020819052604090205467ffffffffffffffff16904290565b6040805167ffffffffffffffff9384168152929091166020830152016100be565b6101756101a436600461096c565b610433565b6101d07f0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee081565b6040516001600160a01b0390911681526020016100be565b6100b46101f636600461096c565b6001600160a01b0316600090815260208190526040902054600160401b90046001600160c01b031690565b61013e61022f366004610995565b6104e2565b600081116102895760405162461bcd60e51b815260206004820152601b60248201527f4f70656e44414f4c6f636b3a20496e76616c696420616d6f756e74000000000060448201526064015b60405180910390fd5b336000908152602081815260409182902082518084019093525467ffffffffffffffff8116808452600160401b9091046001600160c01b0316918301919091524210156103185760405162461bcd60e51b815260206004820152601a60248201527f4f70656e44414f4c6f636b3a20417373657473206c6f636b65640000000000006044820152606401610280565b8181602001516001600160c01b0316101561039b5760405162461bcd60e51b815260206004820152602c60248201527f4f70656e44414f4c6f636b3a20496e73756666696369656e7420616d6f756e7460448201527f20746f20776974686472617700000000000000000000000000000000000000006064820152608401610280565b33600090815260208190526040902080548391906008906103cd908490600160401b90046001600160c01b03166109c4565b92506101000a8154816001600160c01b0302191690836001600160c01b0316021790555061042f33837f0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee06001600160a01b03166106239092919063ffffffff16565b5050565b6001600160a01b038116600090815260208190526040812054819067ffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000093a80811691161161048a57600091506104db565b6001600160a01b0383166000908152602081905260409020546104d8907f0000000000000000000000000000000000000000000000000000000000093a809067ffffffffffffffff166109ec565b91505b5091429150565b600081116105325760405162461bcd60e51b815260206004820152601b60248201527f4f70656e44414f4c6f636b3a20496e76616c696420616d6f756e7400000000006044820152606401610280565b6105676001600160a01b037f0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0163330846106b8565b336000908152602081815260409182902082518084019093525467ffffffffffffffff81168352600160401b90046001600160c01b031690820181815283916105b1908390610a0d565b6001600160c01b03169052506105e77f0000000000000000000000000000000000000000000000000000000000093a8042610a38565b67ffffffffffffffff908116825233600090815260208181526040909120835191909301516001600160c01b0316600160401b02911617905550565b6040516001600160a01b0383166024820152604481018290526106b390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526106f6565b505050565b6040516001600160a01b03808516602483015283166044820152606481018290526106f09085906323b872dd60e01b9060840161064f565b50505050565b600061074b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166107db9092919063ffffffff16565b8051909150156106b357808060200190518101906107699190610a50565b6106b35760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610280565b60606107ea84846000856107f4565b90505b9392505050565b60608247101561086c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610280565b843b6108ba5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610280565b600080866001600160a01b031685876040516108d69190610a9e565b60006040518083038185875af1925050503d8060008114610913576040519150601f19603f3d011682016040523d82523d6000602084013e610918565b606091505b5091509150610928828286610933565b979650505050505050565b606083156109425750816107ed565b8251156109525782518084602001fd5b8160405162461bcd60e51b81526004016102809190610aba565b60006020828403121561097e57600080fd5b81356001600160a01b03811681146107ed57600080fd5b6000602082840312156109a757600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b60006001600160c01b03838116908316818110156109e4576109e46109ae565b039392505050565b600067ffffffffffffffff838116908316818110156109e4576109e46109ae565b60006001600160c01b03808316818516808303821115610a2f57610a2f6109ae565b01949350505050565b60008219821115610a4b57610a4b6109ae565b500190565b600060208284031215610a6257600080fd5b815180151581146107ed57600080fd5b60005b83811015610a8d578181015183820152602001610a75565b838111156106f05750506000910152565b60008251610ab0818460208701610a72565b9190910192915050565b6020815260008251806020840152610ad9816040850160208701610a72565b601f01601f1916919091016040019291505056fea26469706673582212207d0e9cb091dd8cd25404520d94c5a9f87bd5795360916368bdb3a0c21fbe175164736f6c63430008090033

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

0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee00000000000000000000000000000000000000000000000000000000000093a80

-----Decoded View---------------
Arg [0] : _sosToken (address): 0x3b484b82567a09e2588A13D54D032153f0c0aEe0
Arg [1] : _lockDuration (uint256): 604800

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000093a80


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
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.