ETH Price: $2,052.51 (+6.64%)
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Transfer404075872026-01-05 9:15:2132 days ago1767604521IN
0x149459AD...122331d94
0 ETH0.000000160.00482211
Transfer404075602026-01-05 9:14:2732 days ago1767604467IN
0x149459AD...122331d94
0 ETH0.000000240.00459569
Transfer398952042025-12-24 12:35:5544 days ago1766579755IN
0x149459AD...122331d94
0 ETH0.000000090.00177241
Approve398904102025-12-24 9:56:0744 days ago1766570167IN
0x149459AD...122331d94
0 ETH0.000000070.00150089
Transfer366702932025-10-10 20:58:53118 days ago1760129933IN
0x149459AD...122331d94
0 ETH0.000020340.43027225
Transfer353604792025-09-10 13:18:25149 days ago1757510305IN
0x149459AD...122331d94
0 ETH0.000000960.01848636
Transfer345731092025-08-23 7:52:45167 days ago1755935565IN
0x149459AD...122331d94
0 ETH0.000000170.00483506
Transfer345727532025-08-23 7:40:53167 days ago1755934853IN
0x149459AD...122331d94
0 ETH0.000000120.00237444
Transfer343573192025-08-18 7:59:45172 days ago1755503985IN
0x149459AD...122331d94
0 ETH0.000000080.0016986
Transfer343554972025-08-18 6:59:01172 days ago1755500341IN
0x149459AD...122331d94
0 ETH0.000000110.00314141
Approve343552712025-08-18 6:51:29172 days ago1755499889IN
0x149459AD...122331d94
0 ETH0.000000060.00142084
Transfer342538762025-08-15 22:31:39174 days ago1755297099IN
0x149459AD...122331d94
0 ETH0.000000050.00156089
Transfer342537122025-08-15 22:26:11174 days ago1755296771IN
0x149459AD...122331d94
0 ETH0.000000070.00150309
Approve302523182025-05-15 7:26:23267 days ago1747293983IN
0x149459AD...122331d94
0 ETH0.00000010.00209536
Transfer302336652025-05-14 21:04:37267 days ago1747256677IN
0x149459AD...122331d94
0 ETH0.000000250.00730643
Transfer302335152025-05-14 20:59:37267 days ago1747256377IN
0x149459AD...122331d94
0 ETH0.000000150.00441541
Transfer302335012025-05-14 20:59:09267 days ago1747256349IN
0x149459AD...122331d94
0 ETH0.000000230.00441206
Transfer300999152025-05-11 18:46:17271 days ago1746989177IN
0x149459AD...122331d94
0 ETH0.000000380.00727727
Approve300997572025-05-11 18:41:01271 days ago1746988861IN
0x149459AD...122331d94
0 ETH0.000000070.00144183
Transfer290113212025-04-16 13:59:49296 days ago1744811989IN
0x149459AD...122331d94
0 ETH0.000015090.00253844
Approve290111612025-04-16 13:54:29296 days ago1744811669IN
0x149459AD...122331d94
0 ETH0.000009390.001108
Transfer272384382025-03-06 13:03:43337 days ago1741266223IN
0x149459AD...122331d94
0 ETH0.000000150.00290453
Approve254635062025-01-24 10:59:19378 days ago1737716359IN
0x149459AD...122331d94
0 ETH0.000000220.00347926
Approve254627492025-01-24 10:34:05378 days ago1737714845IN
0x149459AD...122331d94
0 ETH0.00000040.00687192
Transfer183378602024-08-12 12:17:47543 days ago1723465067IN
0x149459AD...122331d94
0 ETH0.000000210.00479943
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions

Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Overtime

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Overtime.sol
/**
 *Submitted for verification at Etherscan.io on 2017-09-23
*/

pragma solidity ^0.4.16;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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;
  }

  function sub(uint256 a, uint256 b) internal constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) constant returns (uint256);
  function transfer(address to, uint256 value) returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) returns (bool);
  function approve(address spender, uint256 value) returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract ERC677 is ERC20 {
  function transferAndCall(address to, uint value, bytes data) returns (bool success);

  event Transfer(address indexed from, address indexed to, uint value, bytes data);
}

contract ERC677Receiver {
  function onTokenTransfer(address _sender, uint _value, bytes _data);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances. 
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @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) returns (bool) {
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    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) constant returns (uint256 balance) {
    return balances[_owner];
  }

}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

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


  /**
   * @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) returns (bool) {
    var _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // require (_value <= _allowance);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = _allowance.sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

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

  function decreaseApproval (address _spender, uint _subtractedValue) 
    returns (bool success) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract ERC677Token is ERC677 {

  /**
  * @dev transfer token to a contract address with additional data if the recipient is a contact.
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  * @param _data The extra data to be passed to the receiving contract.
  */
  function transferAndCall(address _to, uint _value, bytes _data)
    public
    returns (bool success)
  {
    super.transfer(_to, _value);
    Transfer(msg.sender, _to, _value, _data);
    if (isContract(_to)) {
      contractFallback(_to, _value, _data);
    }
    return true;
  }


  // PRIVATE

  function contractFallback(address _to, uint _value, bytes _data)
    private
  {
    ERC677Receiver receiver = ERC677Receiver(_to);
    receiver.onTokenTransfer(msg.sender, _value, _data);
  }

  function isContract(address _addr)
    private
    returns (bool hasCode)
  {
    uint length;
    assembly { length := extcodesize(_addr) }
    return length > 0;
  }

}

contract Overtime is StandardToken, ERC677Token {

  uint public constant totalSupply = 10**27;
  string public constant name = "Overtime Token";
  uint8 public constant decimals = 18;
  string public constant symbol = "OVERTIME";

  function Overtime()
    public
  {
    balances[msg.sender] = totalSupply;
  }

  /**
  * @dev transfer token to a specified address with additional data if the recipient is a contract.
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  * @param _data The extra data to be passed to the receiving contract.
  */
  function transferAndCall(address _to, uint _value, bytes _data)
    public
    validRecipient(_to)
    returns (bool success)
  {
    return super.transferAndCall(_to, _value, _data);
  }

  /**
  * @dev transfer token to a specified address.
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint _value)
    public
    validRecipient(_to)
    returns (bool success)
  {
    return super.transfer(_to, _value);
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * @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
    validRecipient(_spender)
    returns (bool)
  {
    return super.approve(_spender,  _value);
  }

  /**
   * @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
    validRecipient(_to)
    returns (bool)
  {
    return super.transferFrom(_from, _to, _value);
  }


  // MODIFIERS

  modifier validRecipient(address _recipient) {
    require(_recipient != address(0) && _recipient != address(this));
    _;
  }

}

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

Contract Security Audit

Contract ABI

API
[{"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":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","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":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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","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"}]

6060604052341561000f57600080fd5b600160a060020a03331660009081526001602052604090206b033b2e3c9fd0803ce80000009055610b0f806100456000396000f3006060604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461017e57806323b872dd146101a3578063313ce567146101cb5780634000aea0146101f4578063661884631461025957806370a082311461027b57806395d89b411461029a578063a9059cbb146102ad578063d73dd623146102cf578063dd62ed3e146102f1575b600080fd5b34156100c957600080fd5b6100d1610316565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010d5780820151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015357600080fd5b61016a600160a060020a036004351660243561034d565b604051901515815260200160405180910390f35b341561018957600080fd5b610191610397565b60405190815260200160405180910390f35b34156101ae57600080fd5b61016a600160a060020a03600435811690602435166044356103a7565b34156101d657600080fd5b6101de6103f3565b60405160ff909116815260200160405180910390f35b34156101ff57600080fd5b61016a60048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506103f895505050505050565b341561026457600080fd5b61016a600160a060020a036004351660243561043b565b341561028657600080fd5b610191600160a060020a0360043516610535565b34156102a557600080fd5b6100d1610550565b34156102b857600080fd5b61016a600160a060020a0360043516602435610587565b34156102da57600080fd5b61016a600160a060020a03600435166024356105c9565b34156102fc57600080fd5b610191600160a060020a036004358116906024351661066d565b60408051908101604052600e81527f4f76657274696d6520546f6b656e000000000000000000000000000000000000602082015281565b600082600160a060020a0381161580159061037a575030600160a060020a031681600160a060020a031614155b151561038557600080fd5b61038f8484610698565b949350505050565b6b033b2e3c9fd0803ce800000081565b600082600160a060020a038116158015906103d4575030600160a060020a031681600160a060020a031614155b15156103df57600080fd5b6103ea858585610704565b95945050505050565b601281565b600083600160a060020a03811615801590610425575030600160a060020a031681600160a060020a031614155b151561043057600080fd5b6103ea858585610814565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561049857600160a060020a0333811660009081526002602090815260408083209388168352929052908120556104cf565b6104a8818463ffffffff6108f816565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60408051908101604052600881527f4f56455254494d45000000000000000000000000000000000000000000000000602082015281565b600082600160a060020a038116158015906105b4575030600160a060020a031681600160a060020a031614155b15156105bf57600080fd5b61038f848461090a565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610601908363ffffffff6109c916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600160a060020a038084166000818152600260209081526040808320339095168352938152838220549282526001905291822054610748908463ffffffff6108f816565b600160a060020a03808716600090815260016020526040808220939093559086168152205461077d908463ffffffff6109c916565b600160a060020a0385166000908152600160205260409020556107a6818463ffffffff6108f816565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b6000610820848461090a565b5083600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405182815260406020820181815290820183818151815260200191508051906020019080838360005b8381101561089a578082015183820152602001610882565b50505050905090810190601f1680156108c75780820380516001836020036101000a031916815260200191505b50935050505060405180910390a36108de846109df565b156108ee576108ee8484846109e7565b5060019392505050565b60008282111561090457fe5b50900390565b600160a060020a033316600090815260016020526040812054610933908363ffffffff6108f816565b600160a060020a033381166000908152600160205260408082209390935590851681522054610968908363ffffffff6109c916565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b6000828201838110156109d857fe5b9392505050565b6000903b1190565b82600160a060020a03811663a4c0ed363385856040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610a80578082015183820152602001610a68565b50505050905090810190601f168015610aad5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1515610acd57600080fd5b5af11515610ada57600080fd5b505050505050505600a165627a7a72305820a89e55907290e210ace030cd6ff22c4de918afee33a3121cb52de9216bf3179c0029

Deployed Bytecode

0x6060604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461017e57806323b872dd146101a3578063313ce567146101cb5780634000aea0146101f4578063661884631461025957806370a082311461027b57806395d89b411461029a578063a9059cbb146102ad578063d73dd623146102cf578063dd62ed3e146102f1575b600080fd5b34156100c957600080fd5b6100d1610316565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561010d5780820151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015357600080fd5b61016a600160a060020a036004351660243561034d565b604051901515815260200160405180910390f35b341561018957600080fd5b610191610397565b60405190815260200160405180910390f35b34156101ae57600080fd5b61016a600160a060020a03600435811690602435166044356103a7565b34156101d657600080fd5b6101de6103f3565b60405160ff909116815260200160405180910390f35b34156101ff57600080fd5b61016a60048035600160a060020a03169060248035919060649060443590810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506103f895505050505050565b341561026457600080fd5b61016a600160a060020a036004351660243561043b565b341561028657600080fd5b610191600160a060020a0360043516610535565b34156102a557600080fd5b6100d1610550565b34156102b857600080fd5b61016a600160a060020a0360043516602435610587565b34156102da57600080fd5b61016a600160a060020a03600435166024356105c9565b34156102fc57600080fd5b610191600160a060020a036004358116906024351661066d565b60408051908101604052600e81527f4f76657274696d6520546f6b656e000000000000000000000000000000000000602082015281565b600082600160a060020a0381161580159061037a575030600160a060020a031681600160a060020a031614155b151561038557600080fd5b61038f8484610698565b949350505050565b6b033b2e3c9fd0803ce800000081565b600082600160a060020a038116158015906103d4575030600160a060020a031681600160a060020a031614155b15156103df57600080fd5b6103ea858585610704565b95945050505050565b601281565b600083600160a060020a03811615801590610425575030600160a060020a031681600160a060020a031614155b151561043057600080fd5b6103ea858585610814565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561049857600160a060020a0333811660009081526002602090815260408083209388168352929052908120556104cf565b6104a8818463ffffffff6108f816565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60408051908101604052600881527f4f56455254494d45000000000000000000000000000000000000000000000000602082015281565b600082600160a060020a038116158015906105b4575030600160a060020a031681600160a060020a031614155b15156105bf57600080fd5b61038f848461090a565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610601908363ffffffff6109c916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600160a060020a038084166000818152600260209081526040808320339095168352938152838220549282526001905291822054610748908463ffffffff6108f816565b600160a060020a03808716600090815260016020526040808220939093559086168152205461077d908463ffffffff6109c916565b600160a060020a0385166000908152600160205260409020556107a6818463ffffffff6108f816565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b6000610820848461090a565b5083600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405182815260406020820181815290820183818151815260200191508051906020019080838360005b8381101561089a578082015183820152602001610882565b50505050905090810190601f1680156108c75780820380516001836020036101000a031916815260200191505b50935050505060405180910390a36108de846109df565b156108ee576108ee8484846109e7565b5060019392505050565b60008282111561090457fe5b50900390565b600160a060020a033316600090815260016020526040812054610933908363ffffffff6108f816565b600160a060020a033381166000908152600160205260408082209390935590851681522054610968908363ffffffff6109c916565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b6000828201838110156109d857fe5b9392505050565b6000903b1190565b82600160a060020a03811663a4c0ed363385856040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610a80578082015183820152602001610a68565b50505050905090810190601f168015610aad5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1515610acd57600080fd5b5af11515610ada57600080fd5b505050505050505600a165627a7a72305820a89e55907290e210ace030cd6ff22c4de918afee33a3121cb52de9216bf3179c0029

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
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.