ETH Price: $2,783.65 (+4.15%)

Contract

0xfB93a26b5Fb1Dca4A472Ce6B4bb001f30CFb0f3E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer83381032019-08-12 21:17:442020 days ago1565644664IN
0xfB93a26b...30CFb0f3E
0 ETH0.000053591
Transfer62938512018-09-08 11:12:482359 days ago1536405168IN
0xfB93a26b...30CFb0f3E
0 ETH0.00019335
Transfer62890622018-09-07 15:46:242360 days ago1536335184IN
0xfB93a26b...30CFb0f3E
0 ETH0.000301057.8
Transfer62740742018-09-05 3:39:332362 days ago1536118773IN
0xfB93a26b...30CFb0f3E
0 ETH0.000235824.4
Transfer62708712018-09-04 14:46:022363 days ago1536072362IN
0xfB93a26b...30CFb0f3E
0 ETH0.00026835
Transfer62707272018-09-04 14:14:122363 days ago1536070452IN
0xfB93a26b...30CFb0f3E
0 ETH0.000165627
Transfer62699092018-09-04 10:58:372363 days ago1536058717IN
0xfB93a26b...30CFb0f3E
0 ETH0.000220399.34
Transfer62691812018-09-04 8:01:542363 days ago1536048114IN
0xfB93a26b...30CFb0f3E
0 ETH0.0005359710
Transfer62689822018-09-04 7:12:042363 days ago1536045124IN
0xfB93a26b...30CFb0f3E
0 ETH0.000192985
Transfer62687532018-09-04 6:08:532363 days ago1536041333IN
0xfB93a26b...30CFb0f3E
0 ETH0.000214644
Transfer62511602018-09-01 7:11:502366 days ago1535785910IN
0xfB93a26b...30CFb0f3E
0 ETH0.000274497.1
Transfer62262702018-08-28 2:11:182370 days ago1535422278IN
0xfB93a26b...30CFb0f3E
0 ETH0.000094644
Transfer62226492018-08-27 11:34:212371 days ago1535369661IN
0xfB93a26b...30CFb0f3E
0 ETH0.000160593
Transfer62226422018-08-27 11:32:312371 days ago1535369551IN
0xfB93a26b...30CFb0f3E
0 ETH0.000183334.75
Transfer62114262018-08-25 14:20:162373 days ago1535206816IN
0xfB93a26b...30CFb0f3E
0 ETH0.000024181
Transfer61980062018-08-23 7:39:482375 days ago1535009988IN
0xfB93a26b...30CFb0f3E
0 ETH0.000024181
Transfer61974852018-08-23 5:22:152375 days ago1535001735IN
0xfB93a26b...30CFb0f3E
0 ETH0.0015155139.2
Transfer61972262018-08-23 4:20:012375 days ago1534998001IN
0xfB93a26b...30CFb0f3E
0 ETH0.000143043.7
Transfer61909322018-08-22 2:53:302376 days ago1534906410IN
0xfB93a26b...30CFb0f3E
0 ETH0.000966440.84375
Transfer61888932018-08-21 18:45:572376 days ago1534877157IN
0xfB93a26b...30CFb0f3E
0 ETH0.000154134
Transfer61859872018-08-21 7:05:272377 days ago1534835127IN
0xfB93a26b...30CFb0f3E
0 ETH0.000214384
Transfer61851642018-08-21 3:43:402377 days ago1534823020IN
0xfB93a26b...30CFb0f3E
0 ETH0.00019335
Transfer61836222018-08-20 21:30:232377 days ago1534800623IN
0xfB93a26b...30CFb0f3E
0 ETH0.000024181
Transfer61834232018-08-20 20:45:512377 days ago1534797951IN
0xfB93a26b...30CFb0f3E
0 ETH0.000024241
Transfer61791502018-08-20 3:18:462378 days ago1534735126IN
0xfB93a26b...30CFb0f3E
0 ETH0.000024241
View all transactions

Advanced mode:
Parent Transaction Hash Block
From
To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ONTOPToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.21;

contract owned {
    address public owner;

    function owned() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }

    function transferOwnership(address newOwner) onlyOwner public {
        owner = newOwner;
    }
}


contract TokenERC20 {
    // Public variables of the token
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    // 18 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply;

    // This creates an array with all balances
    mapping (address => uint256) public balanceOf;

    // This generates a public event on the blockchain that will notify clients
    event Transfer(address indexed from, address indexed to, uint256 value);

    // This notifies clients about the amount burnt
    event Burn(address indexed from, uint256 value);
       
    
    /**
     * Constrctor function
     *
     * Initializes contract with initial supply tokens to the creator of the contract
     */
    function TokenERC20(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) public {
        totalSupply = initialSupply * 10 ** uint256(decimals);  // Update total supply with the decimal amount
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint _value) internal {
        // Prevent transfer to 0x0 address. Use burn() instead
        require(_to != 0x0);
        // Check if the sender has enough
        require(balanceOf[_from] >= _value);
        // Check for overflows
        require(balanceOf[_to] + _value > balanceOf[_to]);
        // Save this for an assertion in the future
        uint previousBalances = balanceOf[_from] + balanceOf[_to];
        // Subtract from the sender
        balanceOf[_from] -= _value;
        // Add the same to the recipient
        balanceOf[_to] += _value;
        emit Transfer(_from, _to, _value);
        // Asserts are used to use static analysis to find bugs in your code. They should never fail
        assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
    }

    /**
     * Transfer tokens
     *
     * Send `_value` tokens to `_to` from your account
     *
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transfer(address _to, uint256 _value) public returns (bool success) {
        _transfer(msg.sender, _to, _value);
        return true;
    }

    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burn(uint256 _value) public returns (bool success) {
        require(balanceOf[msg.sender] >= _value);   // Check if the sender has enough
        balanceOf[msg.sender] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        emit Burn(msg.sender, _value);
        return true;
    }

}

/******************************************/
/*       ADVANCED TOKEN STARTS HERE       */
/******************************************/

contract ONTOPToken is owned, TokenERC20 {
    struct frozenInfo {
       bool frozenAccount;
       bool frozenAccBytime;
       // uint time_stfrozen;
       uint time_end_frozen;
       uint time_last_query;
       uint256 frozen_total;
       // uint256 realsestep;
    }
    
    struct frozenInfo_prv {
       uint256 realsestep;
    }
    
    uint private constant timerate = 1;
    string public declaration = "frozenInfos will reflush by function QueryFrozenCoins and transfer.";
    // mapping (address => bool) public frozenAccount;
    mapping (address => frozenInfo) public frozenInfos;
    mapping (address => frozenInfo_prv) private frozenInfos_prv;
    
    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    // This notifies clients about the frozen coin
    event FrozenTotal(address indexed from, uint256 value);
    /* Initializes contract with initial supply tokens to the creator of the contract */
    function ONTOPToken(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}
    
    function _resetFrozenInfo(address target) internal {
       frozenInfos[target].frozen_total = 0;
       frozenInfos[target].time_end_frozen = 0;
       frozenInfos_prv[target].realsestep = 0;
       frozenInfos[target].time_last_query = 0;
       frozenInfos[target].frozenAccBytime = false; 
    }
    
    function _refulshFrozenInfo(address target) internal {
       if(frozenInfos[target].frozenAccBytime) 
        {
            uint nowtime = now ;// + 60*60*24*365*5 ;
            frozenInfos[target].time_last_query = nowtime;
            if(nowtime>=frozenInfos[target].time_end_frozen)
            {
               _resetFrozenInfo(target);              
            }
            else
            {
               uint stepcnt = frozenInfos[target].time_end_frozen - nowtime;
               uint256 releasecoin = stepcnt * frozenInfos_prv[target].realsestep;
               if(frozenInfos[target].frozen_total<=releasecoin)
                  _resetFrozenInfo(target);
               else
               {
                  frozenInfos[target].frozen_total=releasecoin;
               }
            }
        }       
    }
    
    /* Internal transfer, only can be called by this contract */
    
    function _transfer(address _from, address _to, uint _value) internal {
        require (_to != 0x0);                               // Prevent transfer to 0x0 address. Use burn() instead
        require (balanceOf[_from] >= _value);               // Check if the sender has enough
        require (balanceOf[_to] + _value >= balanceOf[_to]); // Check for overflows
        // require(!frozenAccount[_from]);                     // Check if sender is frozen
        // require(!frozenAccount[_to]);                       // Check if recipient is frozen
        require(!frozenInfos[_from].frozenAccount);                     // Check if sender is frozen
        require(!frozenInfos[_to].frozenAccount);                       // Check if recipient is frozen
        require(!frozenInfos[_to].frozenAccBytime); 
                
        if(frozenInfos[_from].frozenAccBytime) 
        {
            _refulshFrozenInfo(_from);
            if(frozenInfos[_from].frozenAccBytime)
            {
               if((balanceOf[_from]-_value)<=frozenInfos[_from].frozen_total)
                   require(false);
            }
        }
        
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        emit Transfer(_from, _to, _value);
    }

    /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
    /// @param target Address to be frozen
    /// @param freeze either to freeze it or not
    function freezeAccount(address target, bool freeze) onlyOwner public {
        // frozenAccount[target] = freeze;
        frozenInfos[target].frozenAccount = freeze;
        emit FrozenFunds(target, freeze);
    }
    
    function freezeAccountByTime(address target, uint time) onlyOwner public {
        // frozenAccount[target] = freeze;
        require (target != 0x0);
        require (balanceOf[target] >= 1); 
        require(!frozenInfos[target].frozenAccBytime);
        require (time >0);
        frozenInfos[target].frozenAccBytime = true;
        uint nowtime = now;
        frozenInfos[target].time_end_frozen = nowtime + time * timerate;
        frozenInfos[target].time_last_query = nowtime;
        frozenInfos[target].frozen_total = balanceOf[target];
        frozenInfos_prv[target].realsestep = frozenInfos[target].frozen_total / (time * timerate);  
        require (frozenInfos_prv[target].realsestep>0);      
        emit FrozenTotal(target, frozenInfos[target].frozen_total);
    }    
    
    function UnfreezeAccountByTime(address target) onlyOwner public {
        _resetFrozenInfo(target);
        emit FrozenTotal(target, frozenInfos[target].frozen_total);
    }
    
    function QueryFrozenCoins(address _from) public returns (uint256 total) {
        require (_from != 0x0);
        require(frozenInfos[_from].frozenAccBytime);
        _refulshFrozenInfo(_from);        
        emit FrozenTotal(_from, frozenInfos[_from].frozen_total);
        return frozenInfos[_from].frozen_total;
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"time","type":"uint256"}],"name":"freezeAccountByTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"}],"name":"QueryFrozenCoins","outputs":[{"name":"total","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","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":"target","type":"address"}],"name":"UnfreezeAccountByTime","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"declaration","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenInfos","outputs":[{"name":"frozenAccount","type":"bool"},{"name":"frozenAccBytime","type":"bool"},{"name":"time_end_frozen","type":"uint256"},{"name":"time_last_query","type":"uint256"},{"name":"frozen_total","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"FrozenTotal","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

606060409081526003805460ff191660121790556080905190810160405280604381526020017f66726f7a656e496e666f732077696c6c207265666c7573682062792066756e6381526020017f74696f6e20517565727946726f7a656e436f696e7320616e64207472616e736681526020017f65722e000000000000000000000000000000000000000000000000000000000081525060069080516100a8929160200190610151565b5034156100b457600080fd5b604051610e69380380610e69833981016040528080519190602001805182019190602001805160008054600160a060020a033316600160a060020a03199091168117825560035460ff16600a0a87026004819055908252600560205260409091205590910190508282826001828051610131929160200190610151565b506002818051610145929160200190610151565b505050505050506101ec565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019257805160ff19168380011785556101bf565b828001600101855582156101bf579182015b828111156101bf5782518255916020019190600101906101a4565b506101cb9291506101cf565b5090565b6101e991905b808211156101cb57600081556001016101d5565b90565b610c6e806101fb6000396000f3006060604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df57806318160ddd14610169578063313ce5671461018e57806340394dcc146101b757806342966c68146101db57806350d78f7d1461020557806370a08231146102245780638da5cb5b146102435780639073576c1461027257806395d89b4114610291578063a9059cbb146102a4578063b1a6afd3146102c6578063c9736d80146102d9578063e724529c1461032b578063f2fde38b1461034f575b600080fd5b34156100ea57600080fd5b6100f261036e565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012e578082015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017457600080fd5b61017c61040c565b60405190815260200160405180910390f35b341561019957600080fd5b6101a1610412565b60405160ff909116815260200160405180910390f35b34156101c257600080fd5b6101d9600160a060020a036004351660243561041b565b005b34156101e657600080fd5b6101f1600435610583565b604051901515815260200160405180910390f35b341561021057600080fd5b61017c600160a060020a036004351661060e565b341561022f57600080fd5b61017c600160a060020a03600435166106c8565b341561024e57600080fd5b6102566106da565b604051600160a060020a03909116815260200160405180910390f35b341561027d57600080fd5b6101d9600160a060020a03600435166106e9565b341561029c57600080fd5b6100f261075f565b34156102af57600080fd5b6101f1600160a060020a03600435166024356107ca565b34156102d157600080fd5b6100f26107e0565b34156102e457600080fd5b6102f8600160a060020a036004351661084b565b604051941515855292151560208501526040808501929092526060840152608083019190915260a0909101905180910390f35b341561033657600080fd5b6101d9600160a060020a0360043516602435151561087d565b341561035a57600080fd5b6101d9600160a060020a0360043516610909565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b505050505081565b60045481565b60035460ff1681565b6000805433600160a060020a0390811691161461043757600080fd5b600160a060020a038316151561044c57600080fd5b600160a060020a038316600090815260056020526040902054600190101561047357600080fd5b600160a060020a038316600090815260076020526040902054610100900460ff161561049e57600080fd5b600082116104ab57600080fd5b50600160a060020a0382166000908152600760208181526040808420805461ff00191661010017815542868101600183015560028201819055600584529190942054929091526003909201819055829081151561050457fe5b600160a060020a03851660009081526008602052604081209290910491829055901161052f57600080fd5b600160a060020a03831660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a2505050565b600160a060020a033316600090815260056020526040812054829010156105a957600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b6000600160a060020a038216151561062557600080fd5b600160a060020a038216600090815260076020526040902054610100900460ff16151561065157600080fd5b61065a82610953565b600160a060020a03821660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a250600160a060020a031660009081526007602052604090206003015490565b60056020526000908152604090205481565b600054600160a060020a031681565b60005433600160a060020a0390811691161461070457600080fd5b61070d81610a2d565b600160a060020a03811660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a250565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b60006107d7338484610a75565b50600192915050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b600760205260009081526040902080546001820154600283015460039093015460ff8084169461010090940416929085565b60005433600160a060020a0390811691161461089857600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a0390811691161461092457600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03811660009081526007602052604081205481908190610100900460ff1615610a2757600160a060020a0384166000908152600760205260409020426002820181905560019091015490935083106109ba576109b584610a2d565b610a27565b5050600160a060020a0382166000908152600760208181526040808420600181015460088452919094205492909152600390920154918390039190820290819011610a08576109b584610a2d565b600160a060020a03841660009081526007602052604090206003018190555b50505050565b600160a060020a031660009081526007602081815260408084206003810185905560018101859055600883529084208490559190526002810191909155805461ff0019169055565b600160a060020a0382161515610a8a57600080fd5b600160a060020a03831660009081526005602052604090205481901015610ab057600080fd5b600160a060020a0382166000908152600560205260409020548181011015610ad757600080fd5b600160a060020a03831660009081526007602052604090205460ff1615610afd57600080fd5b600160a060020a03821660009081526007602052604090205460ff1615610b2357600080fd5b600160a060020a038216600090815260076020526040902054610100900460ff1615610b4e57600080fd5b600160a060020a038316600090815260076020526040902054610100900460ff1615610bd857610b7d83610953565b600160a060020a038316600090815260076020526040902054610100900460ff1615610bd857600160a060020a03831660009081526007602090815260408083206003015460059092529091205482900311610bd857600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a72305820312335fa84923d6c3d574e839b956408b7c0d016d9c5217f77cbdb43cabdb7400029000000000000000000000000000000000000000000000000000000002887fa00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000845494720434f494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034549470000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052600436106100da5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100df57806318160ddd14610169578063313ce5671461018e57806340394dcc146101b757806342966c68146101db57806350d78f7d1461020557806370a08231146102245780638da5cb5b146102435780639073576c1461027257806395d89b4114610291578063a9059cbb146102a4578063b1a6afd3146102c6578063c9736d80146102d9578063e724529c1461032b578063f2fde38b1461034f575b600080fd5b34156100ea57600080fd5b6100f261036e565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561012e578082015183820152602001610116565b50505050905090810190601f16801561015b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561017457600080fd5b61017c61040c565b60405190815260200160405180910390f35b341561019957600080fd5b6101a1610412565b60405160ff909116815260200160405180910390f35b34156101c257600080fd5b6101d9600160a060020a036004351660243561041b565b005b34156101e657600080fd5b6101f1600435610583565b604051901515815260200160405180910390f35b341561021057600080fd5b61017c600160a060020a036004351661060e565b341561022f57600080fd5b61017c600160a060020a03600435166106c8565b341561024e57600080fd5b6102566106da565b604051600160a060020a03909116815260200160405180910390f35b341561027d57600080fd5b6101d9600160a060020a03600435166106e9565b341561029c57600080fd5b6100f261075f565b34156102af57600080fd5b6101f1600160a060020a03600435166024356107ca565b34156102d157600080fd5b6100f26107e0565b34156102e457600080fd5b6102f8600160a060020a036004351661084b565b604051941515855292151560208501526040808501929092526060840152608083019190915260a0909101905180910390f35b341561033657600080fd5b6101d9600160a060020a0360043516602435151561087d565b341561035a57600080fd5b6101d9600160a060020a0360043516610909565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b505050505081565b60045481565b60035460ff1681565b6000805433600160a060020a0390811691161461043757600080fd5b600160a060020a038316151561044c57600080fd5b600160a060020a038316600090815260056020526040902054600190101561047357600080fd5b600160a060020a038316600090815260076020526040902054610100900460ff161561049e57600080fd5b600082116104ab57600080fd5b50600160a060020a0382166000908152600760208181526040808420805461ff00191661010017815542868101600183015560028201819055600584529190942054929091526003909201819055829081151561050457fe5b600160a060020a03851660009081526008602052604081209290910491829055901161052f57600080fd5b600160a060020a03831660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a2505050565b600160a060020a033316600090815260056020526040812054829010156105a957600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b6000600160a060020a038216151561062557600080fd5b600160a060020a038216600090815260076020526040902054610100900460ff16151561065157600080fd5b61065a82610953565b600160a060020a03821660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a250600160a060020a031660009081526007602052604090206003015490565b60056020526000908152604090205481565b600054600160a060020a031681565b60005433600160a060020a0390811691161461070457600080fd5b61070d81610a2d565b600160a060020a03811660008181526007602052604090819020600301547f43e4957c36a7928d87c46c096567928625314057ed11e3ed634710223f561e6f915190815260200160405180910390a250565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b60006107d7338484610a75565b50600192915050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104045780601f106103d957610100808354040283529160200191610404565b600760205260009081526040902080546001820154600283015460039093015460ff8084169461010090940416929085565b60005433600160a060020a0390811691161461089857600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a0390811691161461092457600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03811660009081526007602052604081205481908190610100900460ff1615610a2757600160a060020a0384166000908152600760205260409020426002820181905560019091015490935083106109ba576109b584610a2d565b610a27565b5050600160a060020a0382166000908152600760208181526040808420600181015460088452919094205492909152600390920154918390039190820290819011610a08576109b584610a2d565b600160a060020a03841660009081526007602052604090206003018190555b50505050565b600160a060020a031660009081526007602081815260408084206003810185905560018101859055600883529084208490559190526002810191909155805461ff0019169055565b600160a060020a0382161515610a8a57600080fd5b600160a060020a03831660009081526005602052604090205481901015610ab057600080fd5b600160a060020a0382166000908152600560205260409020548181011015610ad757600080fd5b600160a060020a03831660009081526007602052604090205460ff1615610afd57600080fd5b600160a060020a03821660009081526007602052604090205460ff1615610b2357600080fd5b600160a060020a038216600090815260076020526040902054610100900460ff1615610b4e57600080fd5b600160a060020a038316600090815260076020526040902054610100900460ff1615610bd857610b7d83610953565b600160a060020a038316600090815260076020526040902054610100900460ff1615610bd857600160a060020a03831660009081526007602090815260408083206003015460059092529091205482900311610bd857600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a72305820312335fa84923d6c3d574e839b956408b7c0d016d9c5217f77cbdb43cabdb7400029

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

000000000000000000000000000000000000000000000000000000002887fa00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000845494720434f494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034549470000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 680000000
Arg [1] : tokenName (string): EIG COIN
Arg [2] : tokenSymbol (string): EIG

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000002887fa00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 45494720434f494e000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4549470000000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://312335fa84923d6c3d574e839b956408b7c0d016d9c5217f77cbdb43cabdb740

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.