ETH Price: $3,083.67 (-0.63%)
Gas: 2 Gwei

Contract

0x06A336B88d72f471BB54438c42EcB1F9F3cf7DF7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer91137832019-12-16 4:14:201669 days ago1576469660IN
VIONC Token
0 ETH0.000147772.875
Transfer90337502019-12-01 18:16:131683 days ago1575224173IN
VIONC Token
0 ETH0.000036651
Transfer88941612019-11-08 4:33:261707 days ago1573187606IN
VIONC Token
0 ETH0.0004032211
Transfer87505132019-10-16 6:05:561729 days ago1571205956IN
VIONC Token
0 ETH0.000036591
Transfer80777092019-07-03 9:47:281834 days ago1562147248IN
VIONC Token
0 ETH0.000293258
Transfer78185922019-05-23 22:17:241875 days ago1558649844IN
VIONC Token
0 ETH0.000108285
Transfer78178872019-05-23 19:36:201875 days ago1558640180IN
VIONC Token
0 ETH0.000227484
Transfer78178482019-05-23 19:26:551875 days ago1558639615IN
VIONC Token
0 ETH0.000086624
Transfer78173632019-05-23 17:44:371875 days ago1558633477IN
VIONC Token
0 ETH0.000146624
Transfer70114122019-01-04 23:23:472014 days ago1546644227IN
VIONC Token
0 ETH0.000146624
Transfer69836832018-12-31 3:55:102019 days ago1546228510IN
VIONC Token
0 ETH0.000146624
Transfer67932032018-11-29 8:17:562050 days ago1543479476IN
VIONC Token
0 ETH0.0015029341
Transfer61276602018-08-11 10:07:242160 days ago1533982044IN
VIONC Token
0 ETH0.000182965
Transfer60909572018-08-05 5:24:492166 days ago1533446689IN
VIONC Token
0 ETH0.000047651.3
Transfer60550812018-07-30 3:58:072173 days ago1532923087IN
VIONC Token
0 ETH0.000073312
Transfer57445502018-06-06 23:10:122226 days ago1528326612IN
VIONC Token
0 ETH0.000219946
Transfer57419932018-06-06 12:10:262226 days ago1528287026IN
VIONC Token
0 ETH0.0005626815.35
Transfer57363092018-06-05 11:49:372227 days ago1528199377IN
VIONC Token
0 ETH0.0004398812
Approve55973252018-05-11 22:16:332252 days ago1526076993IN
VIONC Token
0 ETH0.000226765
Transfer55970132018-05-11 20:56:022252 days ago1526072162IN
VIONC Token
0 ETH0.000183285
Transfer55732892018-05-07 17:47:462256 days ago1525715266IN
VIONC Token
0 ETH0.000293258
Transfer54923942018-04-23 15:14:352270 days ago1524496475IN
VIONC Token
0 ETH0.0003665710
Transfer54083942018-04-09 9:15:362284 days ago1523265336IN
VIONC Token
0 ETH0.000073312
Approve53856602018-04-05 15:03:392288 days ago1522940619IN
VIONC Token
0 ETH0.000045481
Transfer53839772018-04-05 8:16:392288 days ago1522916199IN
VIONC Token
0 ETH0.000109973
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:
VNC

Compiler Version
v0.4.17+commit.bdeb9e52

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.17;

contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public constant 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 constant 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);
}

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() {
    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) onlyOwner public {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }
}

library SaferMath {
  function mulX(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function divX(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;
  }
}

contract BasicToken is ERC20Basic {
  using SaferMath 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) public returns (bool) {
    require(_to != address(0));

    // SafeMath.sub will throw if there is not enough balance.
    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) public constant returns (uint256 balance) {
    return balances[_owner];
  }

}

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) public returns (bool) {
    require(_to != address(0));

    uint256 _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.
   *
   * 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;
    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 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 VNC is StandardToken, Ownable {

  string public constant name = "VIONC";
  string public constant symbol = "VNC";
  uint8 public constant decimals = 8;

  uint256 public constant SUPPLY_CAP = 38000000 * (10 ** uint256(decimals));

  address NULL_ADDRESS = address(0);

  uint public nonce = 0;

event NonceTick(uint nonce);
  function incNonce() {
    nonce += 1;
    if(nonce > 100) {
        nonce = 0;
    }
    NonceTick(nonce);
  }

  // Note intended to act as a source of authorized messaging from development team
  event NoteChanged(string newNote);
  string public note = "Welcome to the future of transportation chain.";
  function setNote(string note_) public onlyOwner {
      note = note_;
      NoteChanged(note);
  }
  
  event PerformingDrop(uint count);
  function drop(address[] addresses, uint256 amount) public onlyOwner {
    uint256 amt = amount * 10**8;
    require(amt > 0);
    require(amt <= SUPPLY_CAP);
    PerformingDrop(addresses.length);
    
    // Maximum drop is 5000 addresses
    assert(addresses.length <= 5000);
    assert(balances[owner] >= amt * addresses.length);
    for (uint i = 0; i < addresses.length; i++) {
      address recipient = addresses[i];
      if(recipient != NULL_ADDRESS) {
        balances[owner] -= amt;
        balances[recipient] += amt;
        Transfer(owner, recipient, amt);
      }
    }
  }

  /**
   * @dev Constructor that gives msg.sender all of existing tokens..
   */
  function VNC() {
    totalSupply = SUPPLY_CAP;
    balances[msg.sender] = SUPPLY_CAP;
  }
}

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":"SUPPLY_CAP","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":"note","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"note_","type":"string"}],"name":"setNote","outputs":[],"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":"addresses","type":"address[]"},{"name":"amount","type":"uint256"}],"name":"drop","outputs":[],"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":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"incNonce","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"nonce","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"nonce","type":"uint256"}],"name":"NonceTick","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newNote","type":"string"}],"name":"NoteChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"count","type":"uint256"}],"name":"PerformingDrop","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"}]

6060604081815260048054600160a060020a031916905560006005555190810160405280602e81526020017f57656c636f6d6520746f2074686520667574757265206f66207472616e73706f81526020017f72746174696f6e20636861696e2e00000000000000000000000000000000000081525060069080516100879291602001906100d1565b50341561009357600080fd5b60038054600160a060020a03191633600160a060020a0316908117909155660d8014722580006000818155918252600160205260409091205561016c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011257805160ff191683800117855561013f565b8280016001018555821561013f579182015b8281111561013f578251825591602001919060010190610124565b5061014b92915061014f565b5090565b61016991905b8082111561014b5760008155600101610155565b90565b610dec8061017b6000396000f300606060405236156101045763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610109578063095ea7b3146101935780630cfccc83146101c957806318160ddd146101ee57806323b872dd1461020157806326d111f5146102295780632d7b299d1461023c578063313ce5671461028f5780633974874b146102b8578063661884631461030957806370a082311461032b5780638da5cb5b1461034a578063911475cc1461037957806395d89b411461038c578063a9059cbb1461039f578063affed0e0146103c1578063d73dd623146103d4578063dd62ed3e146103f6578063f2fde38b1461041b575b600080fd5b341561011457600080fd5b61011c61043a565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610158578082015183820152602001610140565b50505050905090810190601f1680156101855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019e57600080fd5b6101b5600160a060020a0360043516602435610471565b604051901515815260200160405180910390f35b34156101d457600080fd5b6101dc6104dd565b60405190815260200160405180910390f35b34156101f957600080fd5b6101dc6104e8565b341561020c57600080fd5b6101b5600160a060020a03600435811690602435166044356104ee565b341561023457600080fd5b61011c610618565b341561024757600080fd5b61028d60046024813581810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506106b695505050505050565b005b341561029a57600080fd5b6102a2610792565b60405160ff909116815260200160405180910390f35b34156102c357600080fd5b61028d6004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650509335935061079792505050565b341561031457600080fd5b6101b5600160a060020a036004351660243561090b565b341561033657600080fd5b6101dc600160a060020a0360043516610a05565b341561035557600080fd5b61035d610a20565b604051600160a060020a03909116815260200160405180910390f35b341561038457600080fd5b61028d610a2f565b341561039757600080fd5b61011c610a80565b34156103aa57600080fd5b6101b5600160a060020a0360043516602435610ab7565b34156103cc57600080fd5b6101dc610b8d565b34156103df57600080fd5b6101b5600160a060020a0360043516602435610b93565b341561040157600080fd5b6101dc600160a060020a0360043581169060243516610c37565b341561042657600080fd5b61028d600160a060020a0360043516610c62565b60408051908101604052600581527f56494f4e43000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b660d80147225800081565b60005481565b600080600160a060020a038416151561050657600080fd5b50600160a060020a0380851660008181526002602090815260408083203390951683529381528382205492825260019052919091205461054c908463ffffffff610cfd16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610581908463ffffffff610d0f16565b600160a060020a0385166000908152600160205260409020556105aa818463ffffffff610cfd16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b505050505081565b60035433600160a060020a039081169116146106d157600080fd5b60068180516106e4929160200190610d25565b507f29928852ccc0f94f50f6bbf315a9b4e2d2ded4c4f5de08857997daf086b754366006604051602080825282546002600019610100600184161502019091160490820181905281906040820190849080156107815780601f1061075657610100808354040283529160200191610781565b820191906000526020600020905b81548152906001019060200180831161076457829003601f168201915b50509250505060405180910390a150565b600881565b6003546000908190819033600160a060020a039081169116146107b957600080fd5b6305f5e10084029250600083116107cf57600080fd5b660d8014722580008311156107e357600080fd5b7fd0707c61df60f834131065c6e5663fcae19010cdcd4f80af656fa5216107502d855160405190815260200160405180910390a16113888551111561082457fe5b8451600354600160a060020a031660009081526001602052604090205490840290101561084d57fe5b600091505b84518210156109045784828151811061086757fe5b90602001906020020151600454909150600160a060020a038083169116146108f95760038054600160a060020a039081166000908152600160205260408082208054889003905584831680835291819020805488019055925490929116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b600190910190610852565b5050505050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561096857600160a060020a03338116600090815260026020908152604080832093881683529290529081205561099f565b610978818463ffffffff610cfd16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b60058054600101908190556064901115610a495760006005555b7f69da1b4368a5f2483f8b2b6611d68efdedb8e61a34b9824a6e74ad0b96ee524a60055460405190815260200160405180910390a1565b60408051908101604052600381527f564e430000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610ace57600080fd5b600160a060020a033316600090815260016020526040902054610af7908363ffffffff610cfd16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610b2c908363ffffffff610d0f16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60055481565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610bcb908363ffffffff610d0f16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610c7d57600080fd5b600160a060020a0381161515610c9257600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610d0957fe5b50900390565b600082820183811015610d1e57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610d6657805160ff1916838001178555610d93565b82800160010185558215610d93579182015b82811115610d93578251825591602001919060010190610d78565b50610d9f929150610da3565b5090565b610dbd91905b80821115610d9f5760008155600101610da9565b905600a165627a7a723058205d474a241b143ce9ee3f7eef639ff12e7c065c9b899d0030a8655dfda63195010029

Deployed Bytecode

0x606060405236156101045763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610109578063095ea7b3146101935780630cfccc83146101c957806318160ddd146101ee57806323b872dd1461020157806326d111f5146102295780632d7b299d1461023c578063313ce5671461028f5780633974874b146102b8578063661884631461030957806370a082311461032b5780638da5cb5b1461034a578063911475cc1461037957806395d89b411461038c578063a9059cbb1461039f578063affed0e0146103c1578063d73dd623146103d4578063dd62ed3e146103f6578063f2fde38b1461041b575b600080fd5b341561011457600080fd5b61011c61043a565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610158578082015183820152602001610140565b50505050905090810190601f1680156101855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561019e57600080fd5b6101b5600160a060020a0360043516602435610471565b604051901515815260200160405180910390f35b34156101d457600080fd5b6101dc6104dd565b60405190815260200160405180910390f35b34156101f957600080fd5b6101dc6104e8565b341561020c57600080fd5b6101b5600160a060020a03600435811690602435166044356104ee565b341561023457600080fd5b61011c610618565b341561024757600080fd5b61028d60046024813581810190830135806020601f820181900481020160405190810160405281815292919060208401838380828437509496506106b695505050505050565b005b341561029a57600080fd5b6102a2610792565b60405160ff909116815260200160405180910390f35b34156102c357600080fd5b61028d6004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843750949650509335935061079792505050565b341561031457600080fd5b6101b5600160a060020a036004351660243561090b565b341561033657600080fd5b6101dc600160a060020a0360043516610a05565b341561035557600080fd5b61035d610a20565b604051600160a060020a03909116815260200160405180910390f35b341561038457600080fd5b61028d610a2f565b341561039757600080fd5b61011c610a80565b34156103aa57600080fd5b6101b5600160a060020a0360043516602435610ab7565b34156103cc57600080fd5b6101dc610b8d565b34156103df57600080fd5b6101b5600160a060020a0360043516602435610b93565b341561040157600080fd5b6101dc600160a060020a0360043581169060243516610c37565b341561042657600080fd5b61028d600160a060020a0360043516610c62565b60408051908101604052600581527f56494f4e43000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b660d80147225800081565b60005481565b600080600160a060020a038416151561050657600080fd5b50600160a060020a0380851660008181526002602090815260408083203390951683529381528382205492825260019052919091205461054c908463ffffffff610cfd16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610581908463ffffffff610d0f16565b600160a060020a0385166000908152600160205260409020556105aa818463ffffffff610cfd16565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b505050505081565b60035433600160a060020a039081169116146106d157600080fd5b60068180516106e4929160200190610d25565b507f29928852ccc0f94f50f6bbf315a9b4e2d2ded4c4f5de08857997daf086b754366006604051602080825282546002600019610100600184161502019091160490820181905281906040820190849080156107815780601f1061075657610100808354040283529160200191610781565b820191906000526020600020905b81548152906001019060200180831161076457829003601f168201915b50509250505060405180910390a150565b600881565b6003546000908190819033600160a060020a039081169116146107b957600080fd5b6305f5e10084029250600083116107cf57600080fd5b660d8014722580008311156107e357600080fd5b7fd0707c61df60f834131065c6e5663fcae19010cdcd4f80af656fa5216107502d855160405190815260200160405180910390a16113888551111561082457fe5b8451600354600160a060020a031660009081526001602052604090205490840290101561084d57fe5b600091505b84518210156109045784828151811061086757fe5b90602001906020020151600454909150600160a060020a038083169116146108f95760038054600160a060020a039081166000908152600160205260408082208054889003905584831680835291819020805488019055925490929116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a35b600190910190610852565b5050505050565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561096857600160a060020a03338116600090815260026020908152604080832093881683529290529081205561099f565b610978818463ffffffff610cfd16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031681565b60058054600101908190556064901115610a495760006005555b7f69da1b4368a5f2483f8b2b6611d68efdedb8e61a34b9824a6e74ad0b96ee524a60055460405190815260200160405180910390a1565b60408051908101604052600381527f564e430000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610ace57600080fd5b600160a060020a033316600090815260016020526040902054610af7908363ffffffff610cfd16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610b2c908363ffffffff610d0f16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60055481565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610bcb908363ffffffff610d0f16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610c7d57600080fd5b600160a060020a0381161515610c9257600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610d0957fe5b50900390565b600082820183811015610d1e57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610d6657805160ff1916838001178555610d93565b82800160010185558215610d93579182015b82811115610d93578251825591602001919060010190610d78565b50610d9f929150610da3565b5090565b610dbd91905b80821115610d9f5760008155600101610da9565b905600a165627a7a723058205d474a241b143ce9ee3f7eef639ff12e7c065c9b899d0030a8655dfda63195010029

Swarm Source

bzzr://5d474a241b143ce9ee3f7eef639ff12e7c065c9b899d0030a8655dfda6319501

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.