ETH Price: $2,372.70 (-3.36%)

Contract

0xa4C5107184a88D4B324Dd10D98a11dd8037823Fe
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Unlock202335932024-07-04 13:57:1163 days ago1720101431IN
0xa4C51071...8037823Fe
0 ETH0.0017157517.08360516
Unlock189392912024-01-05 6:26:47244 days ago1704436007IN
0xa4C51071...8037823Fe
0 ETH0.0013044612.39595204
Unlock187091952023-12-03 23:40:59276 days ago1701646859IN
0xa4C51071...8037823Fe
0 ETH0.0029528729.40147391
Unlock183731312023-10-17 22:40:11323 days ago1697582411IN
0xa4C51071...8037823Fe
0 ETH0.000792057.88641177
Unlock181697202023-09-19 11:40:47352 days ago1695123647IN
0xa4C51071...8037823Fe
0 ETH0.0008790610.54880461
Unlock180768192023-09-06 10:29:23365 days ago1693996163IN
0xa4C51071...8037823Fe
0 ETH0.0014718814.65539402
Unlock180743382023-09-06 2:07:59365 days ago1693966079IN
0xa4C51071...8037823Fe
0 ETH0.001271312.65820407
Unlock179675322023-08-22 3:20:47380 days ago1692674447IN
0xa4C51071...8037823Fe
0 ETH0.0018370118.29093228
Unlock179459682023-08-19 2:53:11383 days ago1692413591IN
0xa4C51071...8037823Fe
0 ETH0.0004161616.64674111
Unlock178364342023-08-03 19:04:23399 days ago1691089463IN
0xa4C51071...8037823Fe
0 ETH0.0038169138
Unlock178347342023-08-03 13:21:47399 days ago1691068907IN
0xa4C51071...8037823Fe
0 ETH0.0026512326.39801851
Unlock177638822023-07-24 15:33:47409 days ago1690212827IN
0xa4C51071...8037823Fe
0 ETH0.00185459.80657355
Unlock176518312023-07-08 21:51:47424 days ago1688853107IN
0xa4C51071...8037823Fe
0 ETH0.0014756117.70747856
Unlock176216432023-07-04 16:08:35429 days ago1688486915IN
0xa4C51071...8037823Fe
0 ETH0.0007622226.28354247
Unlock174422532023-06-09 11:02:59454 days ago1686308579IN
0xa4C51071...8037823Fe
0 ETH0.001704120.44933435
Unlock174421892023-06-09 10:50:11454 days ago1686307811IN
0xa4C51071...8037823Fe
0 ETH0.0017135819.44581092
Unlock174421732023-06-09 10:46:59454 days ago1686307619IN
0xa4C51071...8037823Fe
0 ETH0.0021851920.76767049
Unlock165398812023-02-02 8:18:59581 days ago1675325939IN
0xa4C51071...8037823Fe
0 ETH0.0016129816.06033308
Unlock156545002022-10-01 16:28:47705 days ago1664641727IN
0xa4C51071...8037823Fe
0 ETH0.0012499915
Unlock154274952022-08-28 11:20:14739 days ago1661685614IN
0xa4C51071...8037823Fe
0 ETH0.000364053.6248454
Unlock153818162022-08-21 4:25:02746 days ago1661055902IN
0xa4C51071...8037823Fe
0 ETH0.000266423.19758266
Unlock152651992022-08-02 20:20:02765 days ago1659471602IN
0xa4C51071...8037823Fe
0 ETH0.0008861410.63530074
Unlock152651772022-08-02 20:15:05765 days ago1659471305IN
0xa4C51071...8037823Fe
0 ETH0.0011119712.61870258
Unlock152651672022-08-02 20:12:43765 days ago1659471163IN
0xa4C51071...8037823Fe
0 ETH0.0013974413.28253047
Lock152418692022-07-30 5:08:09768 days ago1659157689IN
0xa4C51071...8037823Fe
0 ETH0.000404977.38244812
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:
Locker

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-02
*/

pragma solidity 0.6.12;

// File: @openzeppelin/contracts/GSN/Context.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;

/*
 * @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 GSN 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 payable) {
    return msg.sender;
  }

  function _msgData() internal view virtual returns (bytes memory) {
    this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
    return msg.data;
  }
}
// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;
  event OwnershipTransferred(
    address indexed previousOwner,
    address indexed newOwner
  );

  /**
   * @dev Initializes the contract setting the deployer as the initial owner.
   */
  constructor() internal {
    address msgSender = _msgSender();
    _owner = msgSender;
    emit OwnershipTransferred(address(0), msgSender);
  }

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

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(_owner == _msgSender(), "Ownable: caller is not the owner");
    _;
  }

  /**
   * @dev Leaves the contract without owner. It will not be possible to call
   * `onlyOwner` functions anymore. Can only be called by the current owner.
   *
   * NOTE: Renouncing ownership will leave the contract without an owner,
   * thereby removing any functionality that is only available to the owner.
   */
  function renounceOwnership() public virtual onlyOwner {
    emit OwnershipTransferred(_owner, address(0));
    _owner = 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 {
    require(newOwner != address(0), "Ownable: new owner is the zero address");
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity >=0.6.0 <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: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
  /**
   * @dev Returns the addition of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `+` operator.
   *
   * Requirements:
   *
   * - Addition cannot overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");
    return c;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   *
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, "SafeMath: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   *
   * - Subtraction cannot overflow.
   */
  function sub(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;
    return c;
  }

  /**
   * @dev Returns the multiplication of two unsigned integers, reverting on
   * overflow.
   *
   * Counterpart to Solidity's `*` operator.
   *
   * Requirements:
   *
   * - Multiplication cannot overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // 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 0;
    }
    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");
    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    return div(a, b, "SafeMath: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
   * division by zero. The result is rounded towards zero.
   *
   * Counterpart to Solidity's `/` operator. Note: this function uses a
   * `revert` opcode (which leaves remaining gas untouched) while Solidity
   * uses an invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function div(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    return mod(a, b, "SafeMath: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message when dividing by zero.
   *
   * Counterpart to Solidity's `%` operator. This function uses a `revert`
   * opcode (which leaves remaining gas untouched) while Solidity uses an
   * invalid opcode to revert (consuming all remaining gas).
   *
   * Requirements:
   *
   * - The divisor cannot be zero.
   */
  function mod(
    uint256 a,
    uint256 b,
    string memory errorMessage
  ) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}
// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity >=0.6.2 <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;
    // solhint-disable-next-line no-inline-assembly
    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");
    // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
    (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");
    // solhint-disable-next-line avoid-low-level-calls
    (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");
    // solhint-disable-next-line avoid-low-level-calls
    (bool success, bytes memory returndata) = target.staticcall(data);
    return _verifyCallResult(success, returndata, errorMessage);
  }

  function _verifyCallResult(
    bool success,
    bytes memory returndata,
    string memory errorMessage
  ) private 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
        // solhint-disable-next-line no-inline-assembly
        assembly {
          let returndata_size := mload(returndata)
          revert(add(32, returndata), returndata_size)
        }
      } else {
        revert(errorMessage);
      }
    }
  }
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @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 SafeMath for uint256;
  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'
    // solhint-disable-next-line max-line-length
    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).add(value);
    _callOptionalReturn(
      token,
      abi.encodeWithSelector(token.approve.selector, spender, newAllowance)
    );
  }

  function safeDecreaseAllowance(
    IERC20 token,
    address spender,
    uint256 value
  ) internal {
    uint256 newAllowance =
      token.allowance(address(this), spender).sub(
        value,
        "SafeERC20: decreased allowance below zero"
      );
    _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
      // solhint-disable-next-line max-line-length
      require(
        abi.decode(returndata, (bool)),
        "SafeERC20: ERC20 operation did not succeed"
      );
    }
  }
}

// File: contracts/Locker.sol
/*
  Copyright 2020 Swap Holdings Ltd.
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/
/**
 * @title Locker: Lock and Unlock Token Balances
 */
contract Locker is Ownable {
  using SafeERC20 for IERC20;
  using SafeMath for uint256;
  uint256 internal constant MAX_PERCENTAGE = 100;
  // Token to be locked (ERC-20)
  IERC20 public immutable token;
  // Locked token balances per account
  mapping(address => uint256) internal balances;
  // Previous withdrawals per epoch
  mapping(address => mapping(uint256 => uint256)) public withdrawals;
  // Total amount locked
  uint256 public totalSupply;
  // ERC-20 token properties
  string public name;
  string public symbol;
  uint8 public decimals;
  // Maximum unlockable percentage per epoch
  uint256 public throttlingPercentage;
  // Duration of each epoch in seconds
  uint256 public throttlingDuration;
  // Balance above which maximum percentage kicks in
  uint256 public throttlingBalance;
  /**
   * @notice Events
   */
  event Lock(address participant, uint256 amount);
  event Unlock(address participant, uint256 amount);
  event SetThrottlingPercentage(uint256 throttlingPercentage);
  event SetThrottlingDuration(uint256 throttlingDuration);
  event SetThrottlingBalance(uint256 throttlingBalance);

  /**
   * @notice Constructor
   * @param _token address
   * @param _name string
   * @param _symbol string
   * @param _decimals uint8
   * @param _throttlingPercentage uint256
   * @param _throttlingDuration uint256
   * @param _throttlingBalance uint256
   */
  constructor(
    address _token,
    string memory _name,
    string memory _symbol,
    uint8 _decimals,
    uint256 _throttlingPercentage,
    uint256 _throttlingDuration,
    uint256 _throttlingBalance
  ) public {
    require(_throttlingPercentage <= MAX_PERCENTAGE, "PERCENTAGE_TOO_HIGH");
    token = IERC20(_token);
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
    throttlingPercentage = _throttlingPercentage;
    throttlingDuration = _throttlingDuration;
    throttlingBalance = _throttlingBalance;
  }

  /**
   * @notice Lock tokens for msg.sender
   * @param amount of tokens to lock
   */
  function lock(uint256 amount) external {
    _lock(msg.sender, msg.sender, amount);
  }

  /**
   * @notice Lock tokens on behalf of another account
   * @param account to lock tokens for
   * @param amount of tokens to lock
   */
  function lockFor(address account, uint256 amount) external {
    _lock(msg.sender, account, amount);
  }

  /**
   * @notice Unlock and transfer to msg.sender
   * @param amount of tokens to unlock
   */
  function unlock(uint256 amount) external {
    uint256 previous = withdrawals[msg.sender][epoch()];
    // Only enforce percentage above a certain balance
    if (balances[msg.sender] > throttlingBalance) {
      require(
        (previous.add(amount)) <=
          throttlingPercentage.mul(balances[msg.sender].add(previous)).div(
            MAX_PERCENTAGE
          ),
        "AMOUNT_EXCEEDS_LIMIT"
      );
    }
    balances[msg.sender] = balances[msg.sender].sub(amount);
    totalSupply = totalSupply.sub(amount);
    withdrawals[msg.sender][epoch()] = previous.add(amount);
    token.safeTransfer(msg.sender, amount);
    emit Unlock(msg.sender, amount);
  }

  /**
   * @notice Set throttling percentage
   * @dev Only owner
   */
  function setThrottlingPercentage(uint256 _throttlingPercentage)
    external
    onlyOwner
  {
    require(_throttlingPercentage <= MAX_PERCENTAGE, "PERCENTAGE_TOO_HIGH");
    throttlingPercentage = _throttlingPercentage;
    emit SetThrottlingPercentage(throttlingPercentage);
  }

  /**
   * @notice Set throttling duration
   * @dev Only owner
   */
  function setThrottlingDuration(uint256 _throttlingDuration)
    external
    onlyOwner
  {
    throttlingDuration = _throttlingDuration;
    emit SetThrottlingDuration(throttlingDuration);
  }

  /**
   * @notice Set throttling balance
   * @dev Only owner
   */
  function setThrottlingBalance(uint256 _throttlingBalance) external onlyOwner {
    throttlingBalance = _throttlingBalance;
    emit SetThrottlingBalance(throttlingBalance);
  }

  /**
   * @notice Return current epoch
   */
  function epoch() public view returns (uint256) {
    return block.timestamp.sub(block.timestamp.mod(throttlingDuration));
  }

  /**
   * @notice See {IERC20-balanceOf}
   */
  function balanceOf(address account) external view returns (uint256) {
    return balances[account];
  }

  /**
   * @notice Perform a locking token transfer
   * @param from address
   * @param account address
   * @param amount uint256
   */
  function _lock(
    address from,
    address account,
    uint256 amount
  ) private {
    require(
      balances[account].add(amount) <= (type(uint256).max).div(MAX_PERCENTAGE),
      "OVERFLOW_PROTECTION"
    );
    require(token.balanceOf(from) >= amount, "BALANCE_INSUFFICIENT");
    balances[account] = balances[account].add(amount);
    totalSupply = totalSupply.add(amount);
    token.safeTransferFrom(from, address(this), amount);
    emit Lock(account, amount);
  }
}

// File: contracts/Imports.sol
contract Imports {

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_throttlingPercentage","type":"uint256"},{"internalType":"uint256","name":"_throttlingDuration","type":"uint256"},{"internalType":"uint256","name":"_throttlingBalance","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"participant","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Lock","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":false,"internalType":"uint256","name":"throttlingBalance","type":"uint256"}],"name":"SetThrottlingBalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"throttlingDuration","type":"uint256"}],"name":"SetThrottlingDuration","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"throttlingPercentage","type":"uint256"}],"name":"SetThrottlingPercentage","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"participant","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unlock","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lockFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_throttlingBalance","type":"uint256"}],"name":"setThrottlingBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_throttlingDuration","type":"uint256"}],"name":"setThrottlingDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_throttlingPercentage","type":"uint256"}],"name":"setThrottlingPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"throttlingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"throttlingDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"throttlingPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b5060405162001c8a38038062001c8a833981810160405260e08110156200003757600080fd5b8151602083018051604051929492938301929190846401000000008211156200005f57600080fd5b9083019060208201858111156200007557600080fd5b82516401000000008111828201881017156200009057600080fd5b82525081516020918201929091019080838360005b83811015620000bf578181015183820152602001620000a5565b50505050905090810190601f168015620000ed5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011157600080fd5b9083019060208201858111156200012757600080fd5b82516401000000008111828201881017156200014257600080fd5b82525081516020918201929091019080838360005b838110156200017157818101518382015260200162000157565b50505050905090810190601f1680156200019f5780820380516001836020036101000a031916815260200191505b506040908152602082015190820151606083015160809093015191945092506000620001ca620002d4565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060648311156200026b576040805162461bcd60e51b815260206004820152601360248201527f50455243454e544147455f544f4f5f4849474800000000000000000000000000604482015290519081900360640190fd5b6001600160601b0319606088901b16608052855162000292906004906020890190620002d8565b508451620002a8906005906020880190620002d8565b506006805460ff191660ff95909516949094179093556007919091556008556009555062000374915050565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031b57805160ff19168380011785556200034b565b828001600101855582156200034b579182015b828111156200034b5782518255916020019190600101906200032e565b50620003599291506200035d565b5090565b5b808211156200035957600081556001016200035e565b60805160601c6118e9620003a16000398061068b5280610d4e5280610e3b5280610fd952506118e96000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c8063715018a6116100cd578063cbd387bb11610081578063dd46706411610066578063dd467064146103a2578063f2fde38b146103bf578063fc0c546a146103f25761016c565b8063cbd387bb14610368578063d139da8e146103855761016c565b8063900cf0cf116100b2578063900cf0cf1461035057806395d89b4114610358578063aabcc666146103605761016c565b8063715018a6146103175780638da5cb5b1461031f5761016c565b8063473f6624116101245780636249981a116101095780636249981a146102bf5780636c514590146102c757806370a08231146102e45761016c565b8063473f66241461029a5780636198e339146102a25761016c565b8063313ce56711610155578063313ce567146102085780633d96e27614610226578063422b1077146102615761016c565b806306fdde031461017157806318160ddd146101ee575b600080fd5b6101796103fa565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b357818101518382015260200161019b565b50505050905090810190601f1680156101e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f66104a6565b60408051918252519081900360200190f35b6102106104ac565b6040805160ff9092168252519081900360200190f35b61025f6004803603604081101561023c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104b5565b005b6101f66004803603604081101561027757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104c4565b6101f66104e1565b61025f600480360360208110156102b857600080fd5b50356104e7565b6101f66106f1565b61025f600480360360208110156102dd57600080fd5b50356106f7565b6101f6600480360360208110156102fa57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610833565b61025f61085b565b61032761095b565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101f6610977565b61017961099d565b6101f6610a16565b61025f6004803603602081101561037e57600080fd5b5035610a1c565b61025f6004803603602081101561039b57600080fd5b5035610ae8565b61025f600480360360208110156103b857600080fd5b5035610bb4565b61025f600480360360208110156103d557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610bc2565b610327610d4c565b6004805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f8101849004840282018401909252818152929183018282801561049e5780601f106104735761010080835404028352916020019161049e565b820191906000526020600020905b81548152906001019060200180831161048157829003601f168201915b505050505081565b60035481565b60065460ff1681565b6104c0338383610d70565b5050565b600260209081526000928352604080842090915290825290205481565b60075481565b336000908152600260205260408120816104ff610977565b8152602001908152602001600020549050600954600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610604573360009081526001602052604090205461058d906064906105879061057e9085611057565b600754906110d4565b90611147565b6105978284611057565b111561060457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f414d4f554e545f455843454544535f4c494d4954000000000000000000000000604482015290519081900360640190fd5b3360009081526001602052604090205461061e9083611189565b3360009081526001602052604090205560035461063b9083611189565b6003556106488183611057565b33600090815260026020526040812090610660610977565b81526020810191909152604001600020556106b273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001633846111cb565b604080513381526020810184905281517f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f1929181900390910190a15050565b60085481565b6106ff61125d565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461078857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60648111156107f857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50455243454e544147455f544f4f5f4849474800000000000000000000000000604482015290519081900360640190fd5b60078190556040805182815290517ff5a8dc700edae95780db2333cd3109744ac86583e1b3063acc1d322e12f198c19181900360200190a150565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61086361125d565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146108ec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60006109986109916008544261126190919063ffffffff16565b4290611189565b905090565b6005805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f8101849004840282018401909252818152929183018282801561049e5780601f106104735761010080835404028352916020019161049e565b60095481565b610a2461125d565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610aad57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60098190556040805182815290517f752b906a64472f598f80382f3982f1d1f86b61890ffe1d39eec15c7c2fbff9599181900360200190a150565b610af061125d565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610b7957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60088190556040805182815290517f0a45a0f4bb388948b1cb4cc7ec863932391e81f71dfa9b52c4e6a5d4e15908f09181900360200190a150565b610bbf333383610d70565b50565b610bca61125d565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610c5357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610cbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061181d6026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b610d9b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6064611147565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054610dcb9083611057565b1115610e3857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f564552464c4f575f50524f54454354494f4e00000000000000000000000000604482015290519081900360640190fd5b807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610ec057600080fd5b505afa158015610ed4573d6000803e3d6000fd5b505050506040513d6020811015610eea57600080fd5b50511015610f5957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f42414c414e43455f494e53554646494349454e54000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610f899082611057565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600354610fbc9082611057565b60035561100173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168430846112a3565b6040805173ffffffffffffffffffffffffffffffffffffffff841681526020810183905281517f625fed9875dada8643f2418b838ae0bc78d9a148a18eee4ee1979ff0f3f5d427929181900390910190a1505050565b6000828201838110156110cb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000826110e3575060006110ce565b828202828482816110f057fe5b04146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806118696021913960400191505060405180910390fd5b60006110cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061133e565b60006110cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113fc565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611258908490611470565b505050565b3390565b60006110cb83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250611548565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052611338908590611470565b50505050565b600081836113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113a9578181015183820152602001611391565b50505050905090810190601f1680156113d65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816113f057fe5b049150505b9392505050565b60008184841115611468576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156113a9578181015183820152602001611391565b505050900390565b60606114d2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166115c49092919063ffffffff16565b805190915015611258578080602001905160208110156114f157600080fd5b5051611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061188a602a913960400191505060405180910390fd5b600081836115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156113a9578181015183820152602001611391565b508284816115bb57fe5b06949350505050565b60606115d384846000856115db565b949350505050565b606082471015611636576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806118436026913960400191505060405180910390fd5b61163f85611796565b6116aa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061171457805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016116d7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611776576040519150601f19603f3d011682016040523d82523d6000602084013e61177b565b606091505b509150915061178b82828661179c565b979650505050505050565b3b151590565b606083156117ab5750816113f5565b8251156117bb5782518084602001fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528451602484015284518593919283926044019190850190808383600083156113a957818101518382015260200161139156fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212204426ba49ebd60c634a83d723f2b00413700d0c1fb6938ced06d5eab912d4166a64736f6c634300060c003300000000000000000000000027054b13b1b798b345b591a4d22e6562d47ea75a00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000a5374616b6564204153540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047341535400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061016c5760003560e01c8063715018a6116100cd578063cbd387bb11610081578063dd46706411610066578063dd467064146103a2578063f2fde38b146103bf578063fc0c546a146103f25761016c565b8063cbd387bb14610368578063d139da8e146103855761016c565b8063900cf0cf116100b2578063900cf0cf1461035057806395d89b4114610358578063aabcc666146103605761016c565b8063715018a6146103175780638da5cb5b1461031f5761016c565b8063473f6624116101245780636249981a116101095780636249981a146102bf5780636c514590146102c757806370a08231146102e45761016c565b8063473f66241461029a5780636198e339146102a25761016c565b8063313ce56711610155578063313ce567146102085780633d96e27614610226578063422b1077146102615761016c565b806306fdde031461017157806318160ddd146101ee575b600080fd5b6101796103fa565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b357818101518382015260200161019b565b50505050905090810190601f1680156101e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f66104a6565b60408051918252519081900360200190f35b6102106104ac565b6040805160ff9092168252519081900360200190f35b61025f6004803603604081101561023c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104b5565b005b6101f66004803603604081101561027757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104c4565b6101f66104e1565b61025f600480360360208110156102b857600080fd5b50356104e7565b6101f66106f1565b61025f600480360360208110156102dd57600080fd5b50356106f7565b6101f6600480360360208110156102fa57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610833565b61025f61085b565b61032761095b565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101f6610977565b61017961099d565b6101f6610a16565b61025f6004803603602081101561037e57600080fd5b5035610a1c565b61025f6004803603602081101561039b57600080fd5b5035610ae8565b61025f600480360360208110156103b857600080fd5b5035610bb4565b61025f600480360360208110156103d557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610bc2565b610327610d4c565b6004805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f8101849004840282018401909252818152929183018282801561049e5780601f106104735761010080835404028352916020019161049e565b820191906000526020600020905b81548152906001019060200180831161048157829003601f168201915b505050505081565b60035481565b60065460ff1681565b6104c0338383610d70565b5050565b600260209081526000928352604080842090915290825290205481565b60075481565b336000908152600260205260408120816104ff610977565b8152602001908152602001600020549050600954600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610604573360009081526001602052604090205461058d906064906105879061057e9085611057565b600754906110d4565b90611147565b6105978284611057565b111561060457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f414d4f554e545f455843454544535f4c494d4954000000000000000000000000604482015290519081900360640190fd5b3360009081526001602052604090205461061e9083611189565b3360009081526001602052604090205560035461063b9083611189565b6003556106488183611057565b33600090815260026020526040812090610660610977565b81526020810191909152604001600020556106b273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000027054b13b1b798b345b591a4d22e6562d47ea75a1633846111cb565b604080513381526020810184905281517f6381d9813cabeb57471b5a7e05078e64845ccdb563146a6911d536f24ce960f1929181900390910190a15050565b60085481565b6106ff61125d565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461078857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60648111156107f857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f50455243454e544147455f544f4f5f4849474800000000000000000000000000604482015290519081900360640190fd5b60078190556040805182815290517ff5a8dc700edae95780db2333cd3109744ac86583e1b3063acc1d322e12f198c19181900360200190a150565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61086361125d565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146108ec57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60006109986109916008544261126190919063ffffffff16565b4290611189565b905090565b6005805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f8101849004840282018401909252818152929183018282801561049e5780601f106104735761010080835404028352916020019161049e565b60095481565b610a2461125d565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610aad57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60098190556040805182815290517f752b906a64472f598f80382f3982f1d1f86b61890ffe1d39eec15c7c2fbff9599181900360200190a150565b610af061125d565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610b7957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60088190556040805182815290517f0a45a0f4bb388948b1cb4cc7ec863932391e81f71dfa9b52c4e6a5d4e15908f09181900360200190a150565b610bbf333383610d70565b50565b610bca61125d565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610c5357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116610cbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061181d6026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b7f00000000000000000000000027054b13b1b798b345b591a4d22e6562d47ea75a81565b610d9b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6064611147565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902054610dcb9083611057565b1115610e3857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4f564552464c4f575f50524f54454354494f4e00000000000000000000000000604482015290519081900360640190fd5b807f00000000000000000000000027054b13b1b798b345b591a4d22e6562d47ea75a73ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610ec057600080fd5b505afa158015610ed4573d6000803e3d6000fd5b505050506040513d6020811015610eea57600080fd5b50511015610f5957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f42414c414e43455f494e53554646494349454e54000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610f899082611057565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600354610fbc9082611057565b60035561100173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000027054b13b1b798b345b591a4d22e6562d47ea75a168430846112a3565b6040805173ffffffffffffffffffffffffffffffffffffffff841681526020810183905281517f625fed9875dada8643f2418b838ae0bc78d9a148a18eee4ee1979ff0f3f5d427929181900390910190a1505050565b6000828201838110156110cb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000826110e3575060006110ce565b828202828482816110f057fe5b04146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806118696021913960400191505060405180910390fd5b60006110cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061133e565b60006110cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113fc565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611258908490611470565b505050565b3390565b60006110cb83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250611548565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052611338908590611470565b50505050565b600081836113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113a9578181015183820152602001611391565b50505050905090810190601f1680156113d65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816113f057fe5b049150505b9392505050565b60008184841115611468576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156113a9578181015183820152602001611391565b505050900390565b60606114d2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166115c49092919063ffffffff16565b805190915015611258578080602001905160208110156114f157600080fd5b5051611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061188a602a913960400191505060405180910390fd5b600081836115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156113a9578181015183820152602001611391565b508284816115bb57fe5b06949350505050565b60606115d384846000856115db565b949350505050565b606082471015611636576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806118436026913960400191505060405180910390fd5b61163f85611796565b6116aa57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061171457805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016116d7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611776576040519150601f19603f3d011682016040523d82523d6000602084013e61177b565b606091505b509150915061178b82828661179c565b979650505050505050565b3b151590565b606083156117ab5750816113f5565b8251156117bb5782518084602001fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528451602484015284518593919283926044019190850190808383600083156113a957818101518382015260200161139156fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212204426ba49ebd60c634a83d723f2b00413700d0c1fb6938ced06d5eab912d4166a64736f6c634300060c0033

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

00000000000000000000000027054b13b1b798b345b591a4d22e6562d47ea75a00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000a5374616b6564204153540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047341535400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _token (address): 0x27054b13b1B798B345b591a4d22e6562d47eA75a
Arg [1] : _name (string): Staked AST
Arg [2] : _symbol (string): sAST
Arg [3] : _decimals (uint8): 4
Arg [4] : _throttlingPercentage (uint256): 10
Arg [5] : _throttlingDuration (uint256): 604800
Arg [6] : _throttlingBalance (uint256): 100

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000027054b13b1b798b345b591a4d22e6562d47ea75a
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000093a80
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 5374616b65642041535400000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 7341535400000000000000000000000000000000000000000000000000000000


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.