ETH Price: $2,830.10 (-10.21%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer82730102019-08-02 19:07:532011 days ago1564772873IN
0x633B041C...F10fF6f85
0 ETH0.0008610923.00000051
Transfer81490332019-07-14 11:54:082030 days ago1563105248IN
0x633B041C...F10fF6f85
0 ETH0.000262077
Transfer81377812019-07-12 18:10:422032 days ago1562955042IN
0x633B041C...F10fF6f85
0 ETH0.000104872
Transfer78500132019-05-28 19:51:552077 days ago1559073115IN
0x633B041C...F10fF6f85
0 ETH0.0007487820
Transfer78149672019-05-23 8:42:212082 days ago1558600941IN
0x633B041C...F10fF6f85
0 ETH0.000074872
Transfer75031942019-04-04 18:03:502131 days ago1554401030IN
0x633B041C...F10fF6f85
0 ETH0.000104872
Transfer74633752019-03-29 12:21:562137 days ago1553862116IN
0x633B041C...F10fF6f85
0 ETH0.000351549.38975027
Approve73788502019-03-16 8:06:112150 days ago1552723571IN
0x633B041C...F10fF6f85
0 ETH0.000045561
Approve72725042019-02-27 1:43:552167 days ago1551231835IN
0x633B041C...F10fF6f85
0 ETH0.000182274
Transfer72110602019-02-12 13:03:412182 days ago1549976621IN
0x633B041C...F10fF6f85
0 ETH0.000074872
Transfer71093192019-01-22 14:54:502203 days ago1548168890IN
0x633B041C...F10fF6f85
0 ETH0.0005166513.8
Transfer70783172019-01-16 22:41:512209 days ago1547678511IN
0x633B041C...F10fF6f85
0 ETH0.000044851.2
Transfer70536382019-01-12 12:37:062213 days ago1547296626IN
0x633B041C...F10fF6f85
0 ETH0.000104872
Transfer70069422019-01-04 4:01:392221 days ago1546574499IN
0x633B041C...F10fF6f85
0 ETH0.000104752
Transfer69751322018-12-29 17:37:152227 days ago1546105035IN
0x633B041C...F10fF6f85
0 ETH0.000112313
Transfer67744792018-11-26 5:47:282260 days ago1543211248IN
0x633B041C...F10fF6f85
0 ETH0.000074872
Transfer66802772018-11-10 19:36:012276 days ago1541878561IN
0x633B041C...F10fF6f85
0 ETH0.000104872
Transfer66662162018-11-08 12:17:462278 days ago1541679466IN
0x633B041C...F10fF6f85
0 ETH0.0004937213.1875
Transfer65199542018-10-15 13:47:172302 days ago1539611237IN
0x633B041C...F10fF6f85
0 ETH0.000090082.40625
Transfer64986112018-10-12 2:23:302305 days ago1539311010IN
0x633B041C...F10fF6f85
0 ETH0.000067313
Transfer64985142018-10-12 2:01:412305 days ago1539309701IN
0x633B041C...F10fF6f85
0 ETH0.000104872
Transfer64923452018-10-11 1:57:342306 days ago1539223054IN
0x633B041C...F10fF6f85
0 ETH0.000186875
Transfer64855282018-10-09 23:29:592308 days ago1539127799IN
0x633B041C...F10fF6f85
0 ETH0.000074752
Transfer64702452018-10-07 12:15:472310 days ago1538914547IN
0x633B041C...F10fF6f85
0 ETH0.000104872
Transfer63486352018-09-17 13:49:232330 days ago1537192163IN
0x633B041C...F10fF6f85
0 ETH0.000104872
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
54170942018-04-10 19:42:232490 days ago1523389343  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
OMPxToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-04-11
*/

pragma solidity ^0.4.13;

contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public view returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeERC20 {
    function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
        assert(token.transfer(to, value));
    }

    function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
        assert(token.transferFrom(from, to, value));
    }

    function safeApprove(ERC20 token, address spender, uint256 value) internal {
        assert(token.approve(spender, value));
    }
}

contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    return balances[_owner];
  }

}

contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;
  address internal owner;

  function StandardToken() public {
    // tokens available to sale
    owner = msg.sender;
  }
  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender] || msg.sender == owner);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    if (msg.sender != owner) {
      allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    }
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * 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
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public view returns (uint256) {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    if (a == 0) {
      return 0;
    }
    uint256 c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  /**
  * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }

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

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    emit OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract BurnableToken is BasicToken, Ownable {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public onlyOwner{
    require(_value <= balances[msg.sender]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    address burner = msg.sender;
    balances[burner] = balances[burner].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(burner, _value);
  }
}

contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

contract OMPxToken is BurnableToken, MintableToken{
    using SafeMath for uint256;
    uint32 public constant decimals = 18;
    uint256 public constant initialSupply = 1e24;

    string public constant name = "OMPx Token";
    string public constant symbol = "OMPX";
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60606040526004805460038054600160a060020a03191633600160a060020a0316908117909155600160a860020a0319909116179055610d25806100446000396000f3006060604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461010057806306fdde0314610127578063095ea7b3146101b157806318160ddd146101d357806323b872dd146101f8578063313ce56714610220578063378dc3dc1461024c57806340c10f191461025f57806342966c6814610281578063661884631461029957806370a08231146102bb5780637d64bcb4146102da5780638da5cb5b146102ed57806395d89b411461031c578063a9059cbb1461032f578063d73dd62314610351578063dd62ed3e14610373578063f2fde38b14610398575b600080fd5b341561010b57600080fd5b6101136103b7565b604051901515815260200160405180910390f35b341561013257600080fd5b61013a6103d8565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017657808201518382015260200161015e565b50505050905090810190601f1680156101a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101bc57600080fd5b610113600160a060020a036004351660243561040f565b34156101de57600080fd5b6101e661047b565b60405190815260200160405180910390f35b341561020357600080fd5b610113600160a060020a0360043581169060243516604435610481565b341561022b57600080fd5b610233610643565b60405163ffffffff909116815260200160405180910390f35b341561025757600080fd5b6101e6610648565b341561026a57600080fd5b610113600160a060020a0360043516602435610656565b341561028c57600080fd5b610297600435610775565b005b34156102a457600080fd5b610113600160a060020a036004351660243561084d565b34156102c657600080fd5b6101e6600160a060020a0360043516610947565b34156102e557600080fd5b610113610962565b34156102f857600080fd5b610300610a0f565b604051600160a060020a03909116815260200160405180910390f35b341561032757600080fd5b61013a610a1e565b341561033a57600080fd5b610113600160a060020a0360043516602435610a55565b341561035c57600080fd5b610113600160a060020a0360043516602435610b67565b341561037e57600080fd5b6101e6600160a060020a0360043581169060243516610c0b565b34156103a357600080fd5b610297600160a060020a0360043516610c36565b60045474010000000000000000000000000000000000000000900460ff1681565b60408051908101604052600a81527f4f4d507820546f6b656e00000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a038316151561049857600080fd5b600160a060020a0384166000908152602081905260409020548211156104bd57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111580610500575060035433600160a060020a039081169116145b151561050b57600080fd5b600160a060020a038416600090815260208190526040902054610534908363ffffffff610cd116565b600160a060020a038086166000908152602081905260408082209390935590851681522054610569908363ffffffff610ce316565b600160a060020a038085166000908152602081905260409020919091556003543382169116146105f257600160a060020a03808516600090815260026020908152604080832033909416835292905220546105ca908363ffffffff610cd116565b600160a060020a03808616600090815260026020908152604080832033909416835292905220555b82600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060019392505050565b601281565b69d3c21bcecceda100000081565b60045460009033600160a060020a0390811691161461067457600080fd5b60045474010000000000000000000000000000000000000000900460ff161561069c57600080fd5b6001546106af908363ffffffff610ce316565b600155600160a060020a0383166000908152602081905260409020546106db908363ffffffff610ce316565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60045460009033600160a060020a0390811691161461079357600080fd5b600160a060020a0333166000908152602081905260409020548211156107b857600080fd5b5033600160a060020a0381166000908152602081905260409020546107dd9083610cd1565b600160a060020a038216600090815260208190526040902055600154610809908363ffffffff610cd116565b600155600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108aa57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556108e1565b6108ba818463ffffffff610cd116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60045460009033600160a060020a0390811691161461098057600080fd5b60045474010000000000000000000000000000000000000000900460ff16156109a857600080fd5b6004805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600454600160a060020a031681565b60408051908101604052600481527f4f4d505800000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610a6c57600080fd5b600160a060020a033316600090815260208190526040902054821115610a9157600080fd5b600160a060020a033316600090815260208190526040902054610aba908363ffffffff610cd116565b600160a060020a033381166000908152602081905260408082209390935590851681522054610aef908363ffffffff610ce316565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b9f908363ffffffff610ce316565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60045433600160a060020a03908116911614610c5157600080fd5b600160a060020a0381161515610c6657600080fd5b600454600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610cdd57fe5b50900390565b600082820183811015610cf257fe5b93925050505600a165627a7a723058203c43e679a287bd7f0838b6ea5ffea39af8d2a72b376d563f08f44e317c840a5c0029

Deployed Bytecode

0x6060604052600436106100fb5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461010057806306fdde0314610127578063095ea7b3146101b157806318160ddd146101d357806323b872dd146101f8578063313ce56714610220578063378dc3dc1461024c57806340c10f191461025f57806342966c6814610281578063661884631461029957806370a08231146102bb5780637d64bcb4146102da5780638da5cb5b146102ed57806395d89b411461031c578063a9059cbb1461032f578063d73dd62314610351578063dd62ed3e14610373578063f2fde38b14610398575b600080fd5b341561010b57600080fd5b6101136103b7565b604051901515815260200160405180910390f35b341561013257600080fd5b61013a6103d8565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017657808201518382015260200161015e565b50505050905090810190601f1680156101a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101bc57600080fd5b610113600160a060020a036004351660243561040f565b34156101de57600080fd5b6101e661047b565b60405190815260200160405180910390f35b341561020357600080fd5b610113600160a060020a0360043581169060243516604435610481565b341561022b57600080fd5b610233610643565b60405163ffffffff909116815260200160405180910390f35b341561025757600080fd5b6101e6610648565b341561026a57600080fd5b610113600160a060020a0360043516602435610656565b341561028c57600080fd5b610297600435610775565b005b34156102a457600080fd5b610113600160a060020a036004351660243561084d565b34156102c657600080fd5b6101e6600160a060020a0360043516610947565b34156102e557600080fd5b610113610962565b34156102f857600080fd5b610300610a0f565b604051600160a060020a03909116815260200160405180910390f35b341561032757600080fd5b61013a610a1e565b341561033a57600080fd5b610113600160a060020a0360043516602435610a55565b341561035c57600080fd5b610113600160a060020a0360043516602435610b67565b341561037e57600080fd5b6101e6600160a060020a0360043581169060243516610c0b565b34156103a357600080fd5b610297600160a060020a0360043516610c36565b60045474010000000000000000000000000000000000000000900460ff1681565b60408051908101604052600a81527f4f4d507820546f6b656e00000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a038316151561049857600080fd5b600160a060020a0384166000908152602081905260409020548211156104bd57600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111580610500575060035433600160a060020a039081169116145b151561050b57600080fd5b600160a060020a038416600090815260208190526040902054610534908363ffffffff610cd116565b600160a060020a038086166000908152602081905260408082209390935590851681522054610569908363ffffffff610ce316565b600160a060020a038085166000908152602081905260409020919091556003543382169116146105f257600160a060020a03808516600090815260026020908152604080832033909416835292905220546105ca908363ffffffff610cd116565b600160a060020a03808616600090815260026020908152604080832033909416835292905220555b82600160a060020a031684600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a35060019392505050565b601281565b69d3c21bcecceda100000081565b60045460009033600160a060020a0390811691161461067457600080fd5b60045474010000000000000000000000000000000000000000900460ff161561069c57600080fd5b6001546106af908363ffffffff610ce316565b600155600160a060020a0383166000908152602081905260409020546106db908363ffffffff610ce316565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60045460009033600160a060020a0390811691161461079357600080fd5b600160a060020a0333166000908152602081905260409020548211156107b857600080fd5b5033600160a060020a0381166000908152602081905260409020546107dd9083610cd1565b600160a060020a038216600090815260208190526040902055600154610809908363ffffffff610cd116565b600155600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156108aa57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556108e1565b6108ba818463ffffffff610cd116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60045460009033600160a060020a0390811691161461098057600080fd5b60045474010000000000000000000000000000000000000000900460ff16156109a857600080fd5b6004805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600454600160a060020a031681565b60408051908101604052600481527f4f4d505800000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610a6c57600080fd5b600160a060020a033316600090815260208190526040902054821115610a9157600080fd5b600160a060020a033316600090815260208190526040902054610aba908363ffffffff610cd116565b600160a060020a033381166000908152602081905260408082209390935590851681522054610aef908363ffffffff610ce316565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b9f908363ffffffff610ce316565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60045433600160a060020a03908116911614610c5157600080fd5b600160a060020a0381161515610c6657600080fd5b600454600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610cdd57fe5b50900390565b600082820183811015610cf257fe5b93925050505600a165627a7a723058203c43e679a287bd7f0838b6ea5ffea39af8d2a72b376d563f08f44e317c840a5c0029

Swarm Source

bzzr://3c43e679a287bd7f0838b6ea5ffea39af8d2a72b376d563f08f44e317c840a5c

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