ETH Price: $2,732.62 (-2.03%)

Contract

0xFafBB19945FC2D79828E4c5813A619D5683074BA
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Finish Pre Sale251464222018-02-24 6:44:512555 days ago1519454691IN
0xFafBB199...5683074BA
0 ETH0.0007510821
Transfer51448412018-02-23 23:57:472555 days ago1519430267IN
0xFafBB199...5683074BA
0.05 ETH0.0007230910.1
Transfer51448322018-02-23 23:54:182555 days ago1519430058IN
0xFafBB199...5683074BA
0.085 ETH0.0007159410
Transfer51448242018-02-23 23:52:452555 days ago1519429965IN
0xFafBB199...5683074BA
0.06 ETH0.0010023114
Transfer51448152018-02-23 23:50:102555 days ago1519429810IN
0xFafBB199...5683074BA
0.033 ETH0.0028637640
Transfer51448092018-02-23 23:48:442555 days ago1519429724IN
0xFafBB199...5683074BA
0.4 ETH0.0014318820
Transfer51446842018-02-23 23:20:162555 days ago1519428016IN
0xFafBB199...5683074BA
0.1201 ETH0.000175443.1
Transfer51446702018-02-23 23:17:052555 days ago1519427825IN
0xFafBB199...5683074BA
0.3 ETH0.0016978230
Transfer51446672018-02-23 23:15:442555 days ago1519427744IN
0xFafBB199...5683074BA
0.65 ETH0.0029353541
Transfer51446312018-02-23 23:08:262555 days ago1519427306IN
0xFafBB199...5683074BA
0.04 ETH0.0021478230
Transfer51445652018-02-23 22:54:022555 days ago1519426442IN
0xFafBB199...5683074BA
0.04 ETH0.0021478230
Transfer51444762018-02-23 22:30:482555 days ago1519425048IN
0xFafBB199...5683074BA
0.3 ETH0.0029353541
Transfer51444692018-02-23 22:28:532555 days ago1519424933IN
0xFafBB199...5683074BA
0.144 ETH0.001867633
Transfer51444532018-02-23 22:26:092555 days ago1519424769IN
0xFafBB199...5683074BA
0.495 ETH0.0049399869
Transfer51444252018-02-23 22:18:412555 days ago1519424321IN
0xFafBB199...5683074BA
0.144 ETH0.0022194131
Transfer51443592018-02-23 22:02:392555 days ago1519423359IN
0xFafBB199...5683074BA
0.99727033 ETH0.0015034721
Transfer51443522018-02-23 22:01:072555 days ago1519423267IN
0xFafBB199...5683074BA
0.305 ETH0.003579750
Transfer51443502018-02-23 22:00:162555 days ago1519423216IN
0xFafBB199...5683074BA
0.2 ETH0.0021478230
Transfer51443472018-02-23 21:59:392555 days ago1519423179IN
0xFafBB199...5683074BA
1.5 ETH0.003579750
Transfer51443452018-02-23 21:59:012555 days ago1519423141IN
0xFafBB199...5683074BA
0.999 ETH0.0006296621
Transfer51442392018-02-23 21:37:592555 days ago1519421879IN
0xFafBB199...5683074BA
0.008 ETH0.003579750
Transfer51442212018-02-23 21:33:062555 days ago1519421586IN
0xFafBB199...5683074BA
0.036 ETH0.0023203541
Transfer51439892018-02-23 20:37:262555 days ago1519418246IN
0xFafBB199...5683074BA
0.2 ETH0.0029353541
Transfer51439752018-02-23 20:35:142555 days ago1519418114IN
0xFafBB199...5683074BA
0.2 ETH0.0015034721
Transfer51439702018-02-23 20:33:482555 days ago1519418028IN
0xFafBB199...5683074BA
0.2 ETH0.00048321
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
51464222018-02-24 6:44:512555 days ago1519454691
0xFafBB199...5683074BA
68.39566469 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
preSale2

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.4.18;
 
/**
 * @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) public constant returns (uint256);
  function transfer(address to, uint256 value) public 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) 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);
}
 
/**
 * @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 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) public 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) public 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 amout of tokens to be transfered
   */
  function transferFrom(address _from, address _to, uint256 _value) public 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) public 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 available for the spender.
   */
  function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
    return allowed[_owner][_spender];
  }
 
}
 
/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    
  address public owner;
 
  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() public {
    owner = msg.sender;
  }
 
  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }
 
  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));      
    owner = newOwner;
  }
 
}
 
/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
 
contract MintableToken is StandardToken, Ownable {
    
  event Mint(address indexed to, uint256 amount);
  
  event MintFinished();
 
  bool public mintingFinished = false;
 
  address public saleAgent;
  
   modifier canMint() {
   require(!mintingFinished);
    _;
  }
  
   modifier onlySaleAgent() {
   require(msg.sender == saleAgent);
    _;
  }

  function setSaleAgent(address newSaleAgent) public onlyOwner {
   saleAgent = newSaleAgent;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will recieve the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) public onlySaleAgent canMint returns (bool) {
    totalSupply = totalSupply.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    return true;
  }
 
  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() public onlySaleAgent returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }
  
}
 
contract AgroTechFarmToken is MintableToken {
    
    string public constant name = "Agro Tech Farm";
    
    string public constant symbol = "ATF";
    
    uint32 public constant decimals = 18;
}

contract preSale2 is Ownable {    
    using SafeMath for uint;        
    AgroTechFarmToken public token;
    bool public preSale2Finished = false;          
    address public multisig;  
    uint public rate;
    uint public tokenCap;
    uint public start;
    uint public period;
    uint public hardcap;
    address public restricted;
	uint public restrictedPercent;

    function preSale2() public {        
	    token = AgroTechFarmToken(0xa55ffAeA5c8cf32B550F663bf17d4F7b739534ff); 
		multisig = 0x227917ac3C1F192874d43031cF4D40fd40Ae6127;
		rate = 83333333333000000000; 
		tokenCap =  25000000000000000000000; 
		start = 1518739200; 
		period = 8; 
	    hardcap = 500000000000000000000;
	    restricted = 0xbcCd749ecCCee5B4898d0E38D2a536fa84Ea9Ef6;   
	    restrictedPercent = 35;
          
    }
 
    modifier saleIsOn() {
    	require(now > start && now < start + period * 1 days);
    	_;
    }
	
    modifier isUnderHardCap() {
      require(this.balance <= hardcap);
        _;
    } 


  function balancePreSale2() public constant returns (uint) {
     return this.balance;
    }


  function finishPreSale2() public onlyOwner returns (bool)  {
        if(now > start + period * 1 days || this.balance >= hardcap) {                     
         multisig.transfer(this.balance);
         preSale2Finished = true;
         return true;
         } else return false;     
      }
 
   function createTokens() public isUnderHardCap saleIsOn payable {
        uint tokens = rate.mul(msg.value).div(1 ether);      
        uint bonusTokens = 0;        
        uint totalSupply = token.totalSupply();
       
        if (totalSupply <= tokenCap) {
            bonusTokens = tokens.div(2); 
        } else bonusTokens = tokens.mul(40).div(100); 

        
        tokens += bonusTokens;     
        token.mint(msg.sender, tokens);
       
	    uint restrictedTokens = tokens.mul(restrictedPercent).div(100); 
        token.mint(restricted, restrictedTokens);        
        
    }
 

    function() external payable {
        createTokens();
    } 
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"balancePreSale2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"restrictedPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"multisig","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishPreSale2","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"restricted","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"preSale2Finished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardcap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"period","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

60606040526000600160146101000a81548160ff021916908315150217905550341561002a57600080fd5b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a55ffaea5c8cf32b550f663bf17d4f7b739534ff600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073227917ac3c1f192874d43031cf4d40fd40ae6127600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506804847b7925beaf120060038190555069054b40b1f852bda00000600481905550635a861f006005819055506008600681905550681b1ae4d6e2ef50000060078190555073bccd749ecccee5b4898d0e38d2a536fa84ea9ef6600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506023600981905550610b23806101c46000396000f3006060604052600436106100db576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063146ef27d146100e55780632c4e722e1461010e57806337339506146101375780634783c35b146101605780635d49c199146101b55780637072c6b1146101e25780638da5cb5b14610237578063acd590d31461028c578063b071cbe6146102b9578063b4427263146102e2578063be9a6555146102ec578063dd54291b14610315578063ef78d4fd1461033e578063f2fde38b14610367578063fc0c546a146103a0575b6100e36103f5565b005b34156100f057600080fd5b6100f86107a2565b6040518082815260200191505060405180910390f35b341561011957600080fd5b6101216107c1565b6040518082815260200191505060405180910390f35b341561014257600080fd5b61014a6107c7565b6040518082815260200191505060405180910390f35b341561016b57600080fd5b6101736107cd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156101c057600080fd5b6101c86107f3565b604051808215151515815260200191505060405180910390f35b34156101ed57600080fd5b6101f561092b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561024257600080fd5b61024a610951565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561029757600080fd5b61029f610976565b604051808215151515815260200191505060405180910390f35b34156102c457600080fd5b6102cc610989565b6040518082815260200191505060405180910390f35b6102ea6103f5565b005b34156102f757600080fd5b6102ff61098f565b6040518082815260200191505060405180910390f35b341561032057600080fd5b610328610995565b6040518082815260200191505060405180910390f35b341561034957600080fd5b61035161099b565b6040518082815260200191505060405180910390f35b341561037257600080fd5b61039e600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506109a1565b005b34156103ab57600080fd5b6103b3610a7b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000806000806007543073ffffffffffffffffffffffffffffffffffffffff16311115151561042357600080fd5b6005544211801561043e575062015180600654026005540142105b151561044957600080fd5b610478670de0b6b3a764000061046a34600354610aa190919063ffffffff16565b610adc90919063ffffffff16565b935060009250600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561050c57600080fd5b6102c65a03f1151561051d57600080fd5b5050506040518051905091506004548211151561054f57610548600285610adc90919063ffffffff16565b9250610579565b6105766064610568602887610aa190919063ffffffff16565b610adc90919063ffffffff16565b92505b8284019350600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1933866000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561064b57600080fd5b6102c65a03f1151561065c57600080fd5b505050604051805190505061068f606461068160095487610aa190919063ffffffff16565b610adc90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561078057600080fd5b6102c65a03f1151561079157600080fd5b505050604051805190505050505050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b60035481565b60095481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561085057600080fd5b62015180600654026005540142118061088257506007543073ffffffffffffffffffffffffffffffffffffffff163110155b1561092357600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050151561090057600080fd5b60018060146101000a81548160ff02191690831515021790555060019050610928565b600090505b90565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160149054906101000a900460ff1681565b60075481565b60055481565b60045481565b60065481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109fc57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610a3857600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000841415610ab65760009150610ad5565b8284029050828482811515610ac757fe5b04141515610ad157fe5b8091505b5092915050565b6000808284811515610aea57fe5b04905080915050929150505600a165627a7a723058207688a0d511aeb17a20755c03cbcdd3d1461c72fcae6236bfc8310dddebe03f1f0029

Deployed Bytecode

0x6060604052600436106100db576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063146ef27d146100e55780632c4e722e1461010e57806337339506146101375780634783c35b146101605780635d49c199146101b55780637072c6b1146101e25780638da5cb5b14610237578063acd590d31461028c578063b071cbe6146102b9578063b4427263146102e2578063be9a6555146102ec578063dd54291b14610315578063ef78d4fd1461033e578063f2fde38b14610367578063fc0c546a146103a0575b6100e36103f5565b005b34156100f057600080fd5b6100f86107a2565b6040518082815260200191505060405180910390f35b341561011957600080fd5b6101216107c1565b6040518082815260200191505060405180910390f35b341561014257600080fd5b61014a6107c7565b6040518082815260200191505060405180910390f35b341561016b57600080fd5b6101736107cd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156101c057600080fd5b6101c86107f3565b604051808215151515815260200191505060405180910390f35b34156101ed57600080fd5b6101f561092b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561024257600080fd5b61024a610951565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561029757600080fd5b61029f610976565b604051808215151515815260200191505060405180910390f35b34156102c457600080fd5b6102cc610989565b6040518082815260200191505060405180910390f35b6102ea6103f5565b005b34156102f757600080fd5b6102ff61098f565b6040518082815260200191505060405180910390f35b341561032057600080fd5b610328610995565b6040518082815260200191505060405180910390f35b341561034957600080fd5b61035161099b565b6040518082815260200191505060405180910390f35b341561037257600080fd5b61039e600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506109a1565b005b34156103ab57600080fd5b6103b3610a7b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000806000806007543073ffffffffffffffffffffffffffffffffffffffff16311115151561042357600080fd5b6005544211801561043e575062015180600654026005540142105b151561044957600080fd5b610478670de0b6b3a764000061046a34600354610aa190919063ffffffff16565b610adc90919063ffffffff16565b935060009250600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561050c57600080fd5b6102c65a03f1151561051d57600080fd5b5050506040518051905091506004548211151561054f57610548600285610adc90919063ffffffff16565b9250610579565b6105766064610568602887610aa190919063ffffffff16565b610adc90919063ffffffff16565b92505b8284019350600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1933866000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561064b57600080fd5b6102c65a03f1151561065c57600080fd5b505050604051805190505061068f606461068160095487610aa190919063ffffffff16565b610adc90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561078057600080fd5b6102c65a03f1151561079157600080fd5b505050604051805190505050505050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b60035481565b60095481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561085057600080fd5b62015180600654026005540142118061088257506007543073ffffffffffffffffffffffffffffffffffffffff163110155b1561092357600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050151561090057600080fd5b60018060146101000a81548160ff02191690831515021790555060019050610928565b600090505b90565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160149054906101000a900460ff1681565b60075481565b60055481565b60045481565b60065481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109fc57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610a3857600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000841415610ab65760009150610ad5565b8284029050828482811515610ac757fe5b04141515610ad157fe5b8091505b5092915050565b6000808284811515610aea57fe5b04905080915050929150505600a165627a7a723058207688a0d511aeb17a20755c03cbcdd3d1461c72fcae6236bfc8310dddebe03f1f0029

Swarm Source

bzzr://7688a0d511aeb17a20755c03cbcdd3d1461c72fcae6236bfc8310dddebe03f1f

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.