ETH Price: $3,307.73 (-3.68%)
Gas: 24 Gwei

Contract

0xefBd6D7deF37ffae990503EcdB1291B2f7E38788
 
Transaction Hash
Method
Block
From
To
Value
0xa2a952ba06ce4e206ad907f07b405079a0d1e5936a95f176645c118a064cab0d Approve(pending)2024-06-30 2:04:463 days ago1719713086IN
Evolution: EVO Token
0 ETH(Pending)(Pending)
0x5abc3214e103fd4f43d525c00d9290ce3de1cd846f4b4ae54609444356172ea3 Transfer(pending)2024-06-30 1:55:503 days ago1719712550IN
Evolution: EVO Token
0 ETH(Pending)(Pending)
0xdfd92e42839d82250d06abff897644d0cef375061d993f95d24c2f0fcaad7d56 Transfer(pending)2024-06-30 1:55:503 days ago1719712550IN
Evolution: EVO Token
0 ETH(Pending)(Pending)
0xcdbf762bd2fbc767e2d6df7d049bf9559a570f6d9b946135d2bd36939e99fa40 Approve(pending)2024-06-30 1:52:463 days ago1719712366IN
Evolution: EVO Token
0 ETH(Pending)(Pending)
0xa65775bc388a1ab490ffb39d5a8701ab9d7eaafdeb3c87984772edc2086d915e Transfer(pending)2024-06-30 1:02:163 days ago1719709336IN
Evolution: EVO Token
0 ETH(Pending)(Pending)
Transfer200741952024-06-12 7:16:2321 days ago1718176583IN
Evolution: EVO Token
0 ETH0.000411988.70479275
Transfer198891142024-05-17 10:32:2347 days ago1715941943IN
Evolution: EVO Token
0 ETH0.000384948.13360302
Approve195189962024-03-26 13:45:2398 days ago1711460723IN
Evolution: EVO Token
0 ETH0.0009165337.98943765
Transfer194058692024-03-10 16:24:35114 days ago1710087875IN
Evolution: EVO Token
0 ETH0.004625197.7245473
Transfer193832702024-03-07 12:23:35118 days ago1709814215IN
Evolution: EVO Token
0 ETH0.0026113355.17516449
Approve193618852024-03-04 12:45:47121 days ago1709556347IN
Evolution: EVO Token
0 ETH0.0032734270.99157602
Transfer192001172024-02-10 20:36:59143 days ago1707597419IN
Evolution: EVO Token
0 ETH0.0014746731.15851561
Transfer189750962024-01-10 7:35:59175 days ago1704872159IN
Evolution: EVO Token
0 ETH0.0009272519.59213048
Transfer189051542023-12-31 11:25:59185 days ago1704021959IN
Evolution: EVO Token
0 ETH0.000594412.55935847
Transfer185328542023-11-09 7:19:47237 days ago1699514387IN
Evolution: EVO Token
0 ETH0.0012211525.80203835
Transfer181008202023-09-09 19:08:59297 days ago1694286539IN
Evolution: EVO Token
0 ETH0.0004351714.5
Transfer180813672023-09-07 1:47:47300 days ago1694051267IN
Evolution: EVO Token
0 ETH0.0005679312
Transfer176188892023-07-04 6:50:35365 days ago1688453435IN
Evolution: EVO Token
0 ETH0.0005663212.74033728
Approve176014212023-07-01 19:57:23367 days ago1688241443IN
Evolution: EVO Token
0 ETH0.0004725319.5860167
Transfer175114202023-06-19 4:28:47380 days ago1687148927IN
Evolution: EVO Token
0 ETH0.0006478313.68819662
Transfer169031712023-03-25 8:04:23466 days ago1679731463IN
Evolution: EVO Token
0 ETH0.0007184915.18122508
Approve169029202023-03-25 7:13:35466 days ago1679728415IN
Evolution: EVO Token
0 ETH0.0003078812.76169252
Transfer168305152023-03-15 3:03:59476 days ago1678849439IN
Evolution: EVO Token
0 ETH0.001308927.65613587
Transfer166405602023-02-16 10:01:11503 days ago1676541671IN
Evolution: EVO Token
0 ETH0.0014284427.3962484
Transfer164643082023-01-22 19:02:59527 days ago1674414179IN
Evolution: EVO Token
0 ETH0.0007647916.15938988
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
55475772018-05-03 5:54:412253 days ago1525326881  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
EvoToken

Compiler Version
v0.4.23+commit.124ca40d

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-05-03
*/

pragma solidity ^0.4.16;

/*
Copyright (c) 2016 Smart Contract Solutions, Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  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;
  }

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

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

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

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
  function balanceOf(address _owner) public view returns (uint256);
  function allowance(address _owner, address _spender) public view returns (uint256);
  function transfer(address _to, uint256 _value) public returns (bool);
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool);
  function approve(address _spender, uint256 _value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
  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
 */
contract EvoToken is IERC20 {
  using SafeMath for uint256;

  // Evo Token parameters
  string public name = 'Evolution';
  string public symbol = 'EVO';
  uint8 public constant decimals = 18;
  uint256 public constant decimalFactor = 10 ** uint256(decimals);
  uint256 public constant totalSupply = 5000000000 * decimalFactor;
  mapping (address => uint256) balances;
  mapping (address => mapping (address => uint256)) internal allowed;

  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);

  /**
  * @dev Constructor for Evo creation
  * @dev Assigns the totalSupply to the EvoDistribution contract
  */
  function EvoToken(address _evoDistributionContractAddress) public {
    require(_evoDistributionContractAddress != address(0));
    balances[_evoDistributionContractAddress] = totalSupply;
    Transfer(address(0), _evoDistributionContractAddress, totalSupply);
  }

  /**
  * @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];
  }

  /**
   * @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 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);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
   * @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]);
    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].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 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);
    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);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Don't accept eth
   */
  function () public payable {
      revert();
  }
}

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":"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":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimalFactor","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"","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"},{"inputs":[{"name":"_evoDistributionContractAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"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"}]

60c0604052600960808190527f45766f6c7574696f6e000000000000000000000000000000000000000000000060a090815261003e916000919061011b565b506040805180820190915260038082527f45564f000000000000000000000000000000000000000000000000000000000060209092019182526100839160019161011b565b5034801561009057600080fd5b50604051602080610ac48339810160405251600160a060020a03811615156100b757600080fd5b600160a060020a03811660008181526002602090815260408083206b1027e72f1f1281308800000090819055815190815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506101b6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061015c57805160ff1916838001178555610189565b82800160010185558215610189579182015b8281111561018957825182559160200191906001019061016e565b50610195929150610199565b5090565b6101b391905b80821115610195576000815560010161019f565b90565b6108ff806101c56000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d157806366188463146101fc5780636d6a6a4d1461022057806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610368565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103d2565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103e2565b3480156101dd57600080fd5b506101e6610564565b6040805160ff9092168252519081900360200190f35b34801561020857600080fd5b5061016c600160a060020a0360043516602435610569565b34801561022c57600080fd5b50610195610662565b34801561024157600080fd5b50610195600160a060020a036004351661066e565b34801561026257600080fd5b506100d3610689565b34801561027757600080fd5b5061016c600160a060020a03600435166024356106e3565b34801561029b57600080fd5b5061016c600160a060020a03600435166024356107de565b3480156102bf57600080fd5b50610195600160a060020a0360043581169060243516610880565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b505050505081565b600160a060020a03338116600081815260036020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6b1027e72f1f1281308800000081565b6000600160a060020a03831615156103f957600080fd5b600160a060020a03841660009081526002602052604090205482111561041e57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561045157600080fd5b600160a060020a03841660009081526002602052604090205461047a908363ffffffff6108ab16565b600160a060020a0380861660009081526002602052604080822093909355908516815220546104af908363ffffffff6108bd16565b600160a060020a038085166000908152600260209081526040808320949094558783168252600381528382203390931682529190915220546104f7908363ffffffff6108ab16565b600160a060020a038086166000818152600360209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054808311156105c657600160a060020a0333811660009081526003602090815260408083209388168352929052908120556105fd565b6105d6818463ffffffff6108ab16565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b670de0b6b3a764000081565b600160a060020a031660009081526002602052604090205490565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103605780601f1061033557610100808354040283529160200191610360565b6000600160a060020a03831615156106fa57600080fd5b600160a060020a03331660009081526002602052604090205482111561071f57600080fd5b600160a060020a033316600090815260026020526040902054610748908363ffffffff6108ab16565b600160a060020a03338116600090815260026020526040808220939093559085168152205461077d908363ffffffff6108bd16565b600160a060020a038085166000818152600260209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610816908363ffffffff6108bd16565b600160a060020a0333811660008181526003602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6000828211156108b757fe5b50900390565b6000828201838110156108cc57fe5b93925050505600a165627a7a723058208cbb3002d0458f3ad24c30a749d9c120f57b0ce16db6e5018c80c4e3fdf1d14b0029000000000000000000000000957390acd6efef7187ecf67bd48204b217ea8f0b

Deployed Bytecode

0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d157806366188463146101fc5780636d6a6a4d1461022057806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610368565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103d2565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103e2565b3480156101dd57600080fd5b506101e6610564565b6040805160ff9092168252519081900360200190f35b34801561020857600080fd5b5061016c600160a060020a0360043516602435610569565b34801561022c57600080fd5b50610195610662565b34801561024157600080fd5b50610195600160a060020a036004351661066e565b34801561026257600080fd5b506100d3610689565b34801561027757600080fd5b5061016c600160a060020a03600435166024356106e3565b34801561029b57600080fd5b5061016c600160a060020a03600435166024356107de565b3480156102bf57600080fd5b50610195600160a060020a0360043581169060243516610880565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103605780601f1061033557610100808354040283529160200191610360565b820191906000526020600020905b81548152906001019060200180831161034357829003601f168201915b505050505081565b600160a060020a03338116600081815260036020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6b1027e72f1f1281308800000081565b6000600160a060020a03831615156103f957600080fd5b600160a060020a03841660009081526002602052604090205482111561041e57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561045157600080fd5b600160a060020a03841660009081526002602052604090205461047a908363ffffffff6108ab16565b600160a060020a0380861660009081526002602052604080822093909355908516815220546104af908363ffffffff6108bd16565b600160a060020a038085166000908152600260209081526040808320949094558783168252600381528382203390931682529190915220546104f7908363ffffffff6108ab16565b600160a060020a038086166000818152600360209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054808311156105c657600160a060020a0333811660009081526003602090815260408083209388168352929052908120556105fd565b6105d6818463ffffffff6108ab16565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b670de0b6b3a764000081565b600160a060020a031660009081526002602052604090205490565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103605780601f1061033557610100808354040283529160200191610360565b6000600160a060020a03831615156106fa57600080fd5b600160a060020a03331660009081526002602052604090205482111561071f57600080fd5b600160a060020a033316600090815260026020526040902054610748908363ffffffff6108ab16565b600160a060020a03338116600090815260026020526040808220939093559085168152205461077d908363ffffffff6108bd16565b600160a060020a038085166000818152600260209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054610816908363ffffffff6108bd16565b600160a060020a0333811660008181526003602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b6000828211156108b757fe5b50900390565b6000828201838110156108cc57fe5b93925050505600a165627a7a723058208cbb3002d0458f3ad24c30a749d9c120f57b0ce16db6e5018c80c4e3fdf1d14b0029

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

000000000000000000000000957390acd6efef7187ecf67bd48204b217ea8f0b

-----Decoded View---------------
Arg [0] : _evoDistributionContractAddress (address): 0x957390Acd6EfEF7187ecf67bD48204B217ea8f0B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000957390acd6efef7187ecf67bd48204b217ea8f0b


Swarm Source

bzzr://8cbb3002d0458f3ad24c30a749d9c120f57b0ce16db6e5018c80c4e3fdf1d14b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Evolution is a community driven adaptation of EOS open source software. Evolution's DPOS consensus structures votes and tokens evenly to ensure true decentralization.

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.