ETH Price: $2,452.18 (+2.13%)

Contract

0xbbDA1F5899f828735aF87e890AfC6449Fb90dE13
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer48359552018-01-01 13:10:392453 days ago1514812239IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0009300525
Transfer47382672017-12-15 18:14:502470 days ago1513361690IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004675821
Transfer47381372017-12-15 17:38:482470 days ago1513359528IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0008880840
Transfer47378102017-12-15 16:16:492470 days ago1513354609IN
0xbbDA1F58...9Fb90dE13
0 ETH0.001113350
Transfer47377432017-12-15 15:59:272470 days ago1513353567IN
0xbbDA1F58...9Fb90dE13
0 ETH0.001113350
Transfer47239102017-12-13 5:49:422472 days ago1513144182IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004689321
Transfer47180982017-12-12 5:35:092473 days ago1513056909IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0007812421
Transfer47161842017-12-11 21:26:462474 days ago1513027606IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004689321
Transfer47072162017-12-10 8:16:492475 days ago1512893809IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0007825821
Transfer47043562017-12-09 20:11:192476 days ago1512850279IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0005106423
Transfer47033632017-12-09 16:10:192476 days ago1512835819IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0008880840
Transfer46872452017-12-06 21:19:462479 days ago1512595186IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004689321
Transfer46869572017-12-06 20:08:282479 days ago1512590908IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004675821
Transfer46869572017-12-06 20:08:282479 days ago1512590908IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004675821
Transfer46866582017-12-06 18:54:022479 days ago1512586442IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0003713810
Transfer46815142017-12-05 20:23:212480 days ago1512505401IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004689321
Transfer46813822017-12-05 19:53:092480 days ago1512503589IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004675821
Transfer46811382017-12-05 18:45:522480 days ago1512499552IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004675821
Transfer46804422017-12-05 15:50:352480 days ago1512489035IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0005388324.2
Transfer46671432017-12-03 8:10:312482 days ago1512288631IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0004595221
Transfer46664322017-12-03 5:13:272482 days ago1512278007IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0002220210
Transfer46641102017-12-02 19:53:132483 days ago1512244393IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0008541723
Transfer46570302017-12-01 15:58:402484 days ago1512143920IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0008541723
Transfer46570272017-12-01 15:58:232484 days ago1512143903IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0011991723
Transfer46563612017-12-01 13:28:562484 days ago1512134936IN
0xbbDA1F58...9Fb90dE13
0 ETH0.0007389220
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
43267592017-10-01 6:02:392545 days ago1506837759
0xbbDA1F58...9Fb90dE13
205.57760525 ETH
43249012017-09-30 14:23:142546 days ago1506781394
0xbbDA1F58...9Fb90dE13
752.58027061 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DEST

Compiler Version
v0.4.16+commit.d7661dd9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-08-26
*/

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 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 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);
}


/**
 * @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 amout of tokens to be transfered
   */
  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[_to] = balances[_to].add(_value);
    balances[_from] = balances[_from].sub(_value);
    allowed[_from][msg.sender] = _allowance.sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Aprove 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) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    require((_value == 0) || (allowed[msg.sender][_spender] == 0));

    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 specifing the amount of tokens still avaible for the spender.
   */
  function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }

}



contract DEST  is StandardToken {

  // Constants
  // =========

  string public constant name = "Decentralized Escrow Token";
  string public constant symbol = "DEST";
  uint   public constant decimals = 18;

  uint public constant ETH_MIN_LIMIT = 500 ether;
  uint public constant ETH_MAX_LIMIT = 1500 ether;

  uint public constant START_TIMESTAMP = 1503824400; // 2017-08-27 09:00:00 UTC
  uint public constant END_TIMESTAMP   = 1506816000; // 2017-10-01 00:00:00 UTC

  address public constant wallet = 0x51559EfC1AcC15bcAfc7E0C2fB440848C136A46B;


  // State variables
  // ===============

  uint public ethCollected;
  mapping (address=>uint) ethInvested;


  // Constant functions
  // =========================

  function hasStarted() public constant returns (bool) {
    return now >= START_TIMESTAMP;
  }


  // Payments are not accepted after ICO is finished.
  function hasFinished() public constant returns (bool) {
    return now >= END_TIMESTAMP || ethCollected >= ETH_MAX_LIMIT;
  }


  // Investors can move their tokens only after ico has successfully finished
  function tokensAreLiquid() public constant returns (bool) {
    return (ethCollected >= ETH_MIN_LIMIT && now >= END_TIMESTAMP)
      || (ethCollected >= ETH_MAX_LIMIT);
  }


  function price(uint _v) public constant returns (uint) {
    return // poor man's binary search
      _v < 7 ether
        ? _v < 3 ether
          ? _v < 1 ether
            ? 1000
            : _v < 2 ether ? 1005 : 1010
          : _v < 4 ether
            ? 1015
            : _v < 5 ether ? 1020 : 1030
        : _v < 14 ether
          ? _v < 10 ether
            ? _v < 9 ether ? 1040 : 1050
            : 1080
          : _v < 100 ether
            ? _v < 20 ether ? 1110 : 1150
            : 1200;
  }


  // Public functions
  // =========================

  function() public payable {
    require(hasStarted() && !hasFinished());
    require(ethCollected + msg.value <= ETH_MAX_LIMIT);

    ethCollected += msg.value;
    ethInvested[msg.sender] += msg.value;

    uint _tokenValue = msg.value * price(msg.value);
    balances[msg.sender] += _tokenValue;
    totalSupply += _tokenValue;
    Transfer(0x0, msg.sender, _tokenValue);
  }


  // Investors can get refund if ETH_MIN_LIMIT is not reached.
  function refund() public {
    require(ethCollected < ETH_MIN_LIMIT && now >= END_TIMESTAMP);
    require(balances[msg.sender] > 0);

    totalSupply -= balances[msg.sender];
    balances[msg.sender] = 0;
    uint _ethRefund = ethInvested[msg.sender];
    ethInvested[msg.sender] = 0;
    msg.sender.transfer(_ethRefund);
  }


  // Owner can withdraw all the money after min_limit is reached.
  function withdraw() public {
    require(ethCollected >= ETH_MIN_LIMIT);
    wallet.transfer(this.balance);
  }


  // ERC20 functions
  // =========================

  function transfer(address _to, uint _value) public returns (bool)
  {
    require(tokensAreLiquid());
    return super.transfer(_to, _value);
  }


  function transferFrom(address _from, address _to, uint _value)
    public returns (bool)
  {
    require(tokensAreLiquid());
    return super.transferFrom(_from, _to, _value);
  }


  function approve(address _spender, uint _value)
    public returns (bool)
  {
    require(tokensAreLiquid());
    return super.approve(_spender, _value);
  }
}

Contract Security Audit

Contract ABI

[{"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":"ETH_MAX_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_v","type":"uint256"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensAreLiquid","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"hasStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ETH_MIN_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"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":"START_TIMESTAMP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"END_TIMESTAMP","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[],"name":"ethCollected","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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"},{"constant":true,"inputs":[],"name":"hasFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"}]

6060604052341561000f57600080fd5b5b610d118061001f6000396000f3006060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101f6578063095ea7b31461028157806317e5259e146102b757806318160ddd146102dc57806323b872dd1461030157806326a49e371461033d578063313ce567146103655780633396c4051461038a5780633ccfd60b146103b157806344691f7e146103c65780634f07cc4f146103ed578063521eb27314610412578063590e1ae31461044157806370a0823114610456578063781cd99d1461048757806395d89b41146104ac578063a07c765f14610537578063a9059cbb1461055c578063bee2e13414610592578063dd62ed3e146105b7578063fe5815a6146105ee575b5b6000610125610615565b80156101365750610134610621565b155b151561014157600080fd5b685150ae84a8cdf0000034600354011115151561015d57600080fd5b6003805434908101909155600160a060020a033316600090815260046020526040902080548201905561018f90610647565b600160a060020a03331660008181526001602052604080822080543495909502948501905581548401825592935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b50005b341561020157600080fd5b610209610762565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102465780820151818401525b60200161022d565b50505050905090810190601f1680156102735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561028c57600080fd5b6102a3600160a060020a0360043516602435610799565b604051901515815260200160405180910390f35b34156102c257600080fd5b6102ca6107c1565b60405190815260200160405180910390f35b34156102e757600080fd5b6102ca6107ce565b60405190815260200160405180910390f35b341561030c57600080fd5b6102a3600160a060020a03600435811690602435166044356107d4565b604051901515815260200160405180910390f35b341561034857600080fd5b6102ca600435610647565b60405190815260200160405180910390f35b341561037057600080fd5b6102ca6107fe565b60405190815260200160405180910390f35b341561039557600080fd5b6102a3610803565b604051901515815260200160405180910390f35b34156103bc57600080fd5b6103c4610840565b005b34156103d157600080fd5b6102a3610615565b604051901515815260200160405180910390f35b34156103f857600080fd5b6102ca6108a3565b60405190815260200160405180910390f35b341561041d57600080fd5b6104256108b0565b604051600160a060020a03909116815260200160405180910390f35b341561044c57600080fd5b6103c46108c8565b005b341561046157600080fd5b6102ca600160a060020a0360043516610977565b60405190815260200160405180910390f35b341561049257600080fd5b6102ca610996565b60405190815260200160405180910390f35b34156104b757600080fd5b61020961099e565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102465780820151818401525b60200161022d565b50505050905090810190601f1680156102735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561054257600080fd5b6102ca6109d5565b60405190815260200160405180910390f35b341561056757600080fd5b6102a3600160a060020a03600435166024356109dd565b604051901515815260200160405180910390f35b341561059d57600080fd5b6102ca610a05565b60405190815260200160405180910390f35b34156105c257600080fd5b6102ca600160a060020a0360043581169060243516610a0b565b60405190815260200160405180910390f35b34156105f957600080fd5b6102a3610621565b604051901515815260200160405180910390f35b6359a28a104210155b90565b60006359d03000421015806106415750685150ae84a8cdf0000060035410155b90505b90565b6000676124fee993bc000082106106da5767c249fdd32778000082106106a15768056bc75e2d63100000821061067f576104b061069b565b6801158e460913d0000082106106975761047e61069b565b6104565b5b6106d3565b678ac7230489e8000082106106b8576104386106d3565b677ce66c50e284000082106106cf5761041a6106d3565b6104105b5b5b610754565b6729a2241af62c0000821061072157673782dace9d900000821061071857674563918244f40000821061070f5761040661069b565b6103fc5b6106d3565b6103f75b610754565b670de0b6b3a7640000821061075057671bc16d674ec800008210610747576103f26106d3565b6103ed5b610754565b6103e85b5b5b61ffff1690505b919050565b60408051908101604052601a81527f446563656e7472616c697a656420457363726f7720546f6b656e000000000000602082015281565b60006107a3610803565b15156107ae57600080fd5b6107b88383610a38565b90505b92915050565b685150ae84a8cdf0000081565b60005481565b60006107de610803565b15156107e957600080fd5b6107f4848484610adf565b90505b9392505050565b601281565b6000681b1ae4d6e2ef5000006003541015801561082457506359d030004210155b806106415750685150ae84a8cdf0000060035410155b90505b90565b600354681b1ae4d6e2ef50000090101561085957600080fd5b7351559efc1acc15bcafc7e0c2fb440848c136a46b30600160a060020a03163180156108fc0290604051600060405180830381858888f1935050505015156108a057600080fd5b5b565b681b1ae4d6e2ef50000081565b7351559efc1acc15bcafc7e0c2fb440848c136a46b81565b6000681b1ae4d6e2ef5000006003541080156108e857506359d030004210155b15156108f357600080fd5b600160a060020a0333166000908152600160205260408120541161091657600080fd5b50600160a060020a0333166000818152600160209081526040808320805484540384558390556004909152808220805492905590919082156108fc0290839051600060405180830381858888f19350505050151561097357600080fd5b5b50565b600160a060020a0381166000908152600160205260409020545b919050565b6359a28a1081565b60408051908101604052600481527f4445535400000000000000000000000000000000000000000000000000000000602082015281565b6359d0300081565b60006109e7610803565b15156109f257600080fd5b6107b88383610bf4565b90505b92915050565b60035481565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b6000811580610a6a5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b1515610a7557600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190610b26908463ffffffff610cb416565b600160a060020a038086166000908152600160205260408082209390935590871681522054610b5b908463ffffffff610cce16565b600160a060020a038616600090815260016020526040902055610b84818463ffffffff610cce16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b600160a060020a033316600090815260016020526040812054610c1d908363ffffffff610cce16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610c52908363ffffffff610cb416565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b600082820183811015610cc357fe5b8091505b5092915050565b600082821115610cda57fe5b508082035b929150505600a165627a7a72305820ddd2bdadffe52a28b68978ea6901188e50fc10b9a99dba19e86e130413e497f60029

Deployed Bytecode

0x6060604052361561011a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101f6578063095ea7b31461028157806317e5259e146102b757806318160ddd146102dc57806323b872dd1461030157806326a49e371461033d578063313ce567146103655780633396c4051461038a5780633ccfd60b146103b157806344691f7e146103c65780634f07cc4f146103ed578063521eb27314610412578063590e1ae31461044157806370a0823114610456578063781cd99d1461048757806395d89b41146104ac578063a07c765f14610537578063a9059cbb1461055c578063bee2e13414610592578063dd62ed3e146105b7578063fe5815a6146105ee575b5b6000610125610615565b80156101365750610134610621565b155b151561014157600080fd5b685150ae84a8cdf0000034600354011115151561015d57600080fd5b6003805434908101909155600160a060020a033316600090815260046020526040902080548201905561018f90610647565b600160a060020a03331660008181526001602052604080822080543495909502948501905581548401825592935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35b50005b341561020157600080fd5b610209610762565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102465780820151818401525b60200161022d565b50505050905090810190601f1680156102735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561028c57600080fd5b6102a3600160a060020a0360043516602435610799565b604051901515815260200160405180910390f35b34156102c257600080fd5b6102ca6107c1565b60405190815260200160405180910390f35b34156102e757600080fd5b6102ca6107ce565b60405190815260200160405180910390f35b341561030c57600080fd5b6102a3600160a060020a03600435811690602435166044356107d4565b604051901515815260200160405180910390f35b341561034857600080fd5b6102ca600435610647565b60405190815260200160405180910390f35b341561037057600080fd5b6102ca6107fe565b60405190815260200160405180910390f35b341561039557600080fd5b6102a3610803565b604051901515815260200160405180910390f35b34156103bc57600080fd5b6103c4610840565b005b34156103d157600080fd5b6102a3610615565b604051901515815260200160405180910390f35b34156103f857600080fd5b6102ca6108a3565b60405190815260200160405180910390f35b341561041d57600080fd5b6104256108b0565b604051600160a060020a03909116815260200160405180910390f35b341561044c57600080fd5b6103c46108c8565b005b341561046157600080fd5b6102ca600160a060020a0360043516610977565b60405190815260200160405180910390f35b341561049257600080fd5b6102ca610996565b60405190815260200160405180910390f35b34156104b757600080fd5b61020961099e565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102465780820151818401525b60200161022d565b50505050905090810190601f1680156102735780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561054257600080fd5b6102ca6109d5565b60405190815260200160405180910390f35b341561056757600080fd5b6102a3600160a060020a03600435166024356109dd565b604051901515815260200160405180910390f35b341561059d57600080fd5b6102ca610a05565b60405190815260200160405180910390f35b34156105c257600080fd5b6102ca600160a060020a0360043581169060243516610a0b565b60405190815260200160405180910390f35b34156105f957600080fd5b6102a3610621565b604051901515815260200160405180910390f35b6359a28a104210155b90565b60006359d03000421015806106415750685150ae84a8cdf0000060035410155b90505b90565b6000676124fee993bc000082106106da5767c249fdd32778000082106106a15768056bc75e2d63100000821061067f576104b061069b565b6801158e460913d0000082106106975761047e61069b565b6104565b5b6106d3565b678ac7230489e8000082106106b8576104386106d3565b677ce66c50e284000082106106cf5761041a6106d3565b6104105b5b5b610754565b6729a2241af62c0000821061072157673782dace9d900000821061071857674563918244f40000821061070f5761040661069b565b6103fc5b6106d3565b6103f75b610754565b670de0b6b3a7640000821061075057671bc16d674ec800008210610747576103f26106d3565b6103ed5b610754565b6103e85b5b5b61ffff1690505b919050565b60408051908101604052601a81527f446563656e7472616c697a656420457363726f7720546f6b656e000000000000602082015281565b60006107a3610803565b15156107ae57600080fd5b6107b88383610a38565b90505b92915050565b685150ae84a8cdf0000081565b60005481565b60006107de610803565b15156107e957600080fd5b6107f4848484610adf565b90505b9392505050565b601281565b6000681b1ae4d6e2ef5000006003541015801561082457506359d030004210155b806106415750685150ae84a8cdf0000060035410155b90505b90565b600354681b1ae4d6e2ef50000090101561085957600080fd5b7351559efc1acc15bcafc7e0c2fb440848c136a46b30600160a060020a03163180156108fc0290604051600060405180830381858888f1935050505015156108a057600080fd5b5b565b681b1ae4d6e2ef50000081565b7351559efc1acc15bcafc7e0c2fb440848c136a46b81565b6000681b1ae4d6e2ef5000006003541080156108e857506359d030004210155b15156108f357600080fd5b600160a060020a0333166000908152600160205260408120541161091657600080fd5b50600160a060020a0333166000818152600160209081526040808320805484540384558390556004909152808220805492905590919082156108fc0290839051600060405180830381858888f19350505050151561097357600080fd5b5b50565b600160a060020a0381166000908152600160205260409020545b919050565b6359a28a1081565b60408051908101604052600481527f4445535400000000000000000000000000000000000000000000000000000000602082015281565b6359d0300081565b60006109e7610803565b15156109f257600080fd5b6107b88383610bf4565b90505b92915050565b60035481565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b6000811580610a6a5750600160a060020a03338116600090815260026020908152604080832093871683529290522054155b1515610a7557600080fd5b600160a060020a03338116600081815260026020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b600160a060020a038084166000908152600260209081526040808320338516845282528083205493861683526001909152812054909190610b26908463ffffffff610cb416565b600160a060020a038086166000908152600160205260408082209390935590871681522054610b5b908463ffffffff610cce16565b600160a060020a038616600090815260016020526040902055610b84818463ffffffff610cce16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b509392505050565b600160a060020a033316600090815260016020526040812054610c1d908363ffffffff610cce16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610c52908363ffffffff610cb416565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b600082820183811015610cc357fe5b8091505b5092915050565b600082821115610cda57fe5b508082035b929150505600a165627a7a72305820ddd2bdadffe52a28b68978ea6901188e50fc10b9a99dba19e86e130413e497f60029

Swarm Source

bzzr://ddd2bdadffe52a28b68978ea6901188e50fc10b9a99dba19e86e130413e497f6

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.