ETH Price: $2,417.54 (-1.25%)

Token

onGCOIN (onGCoin)
 

Overview

Max Total Supply

0 onGCoin

Holders

34 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0 onGCoin

Value
$0.00
0xeE94f87415834df846Ae1EAA445d6a89B9F4a671
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xeE741Ea3...7cEe80938
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Token

Compiler Version
v0.4.6+commit.2dabbdf0

Optimization Enabled:
Yes with 200 runs

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

contract Token {
    /* Public variables of the token */
    string public standard = 'onGCOIN';
    string public name;
    string public symbol;
    uint8 public decimals;
    uint256 public initialSupply;

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

  
    /* Initializes contract with initial supply tokens to the creator of the contract */
    function Token() {

         initialSupply = 300000000;
         name ="onGCoin";
        decimals = 8;
         symbol = "onGC";
        
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
        uint256 totalSupply = initialSupply;                        // Update total supply
                                   
    }

    /* Send coins */
    function transfer(address _to, uint256 _value) {
        if (balanceOf[msg.sender] < _value) throw;           // Check if the sender has enough
        if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows
        balanceOf[msg.sender] -= _value;                     // Subtract from the sender
        balanceOf[_to] += _value;                            // Add the same to the recipient
      
    }

   

    

   

    /* This unnamed function is called whenever someone tries to send ether to it */
    function () {
        throw;     // Prevents accidental sending of ether
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"}]

60a0604052600760608190527f6f6e47434f494e000000000000000000000000000000000000000000000000006080908152600080548180527f6f6e47434f494e0000000000000000000000000000000000000000000000000e825590927f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563602060026001851615610100026000190190941693909304601f01929092048201929091906100d5565b828001600101855582156100d5579182015b828111156100d55782518255916020019190600101906100ba565b5b506100f69291505b808211156100f257600081556001016100de565b5090565b505034610000575b6311e1a3006004556040805180820190915260078082527f6f6e47436f696e0000000000000000000000000000000000000000000000000060209283019081526001805460008281528351600e60ff199091161783559491937fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6600283871615610100026000190190931692909204601f01929092048101926101c9565b828001600101855582156101c9579182015b828111156101c95782518255916020019190600101906101ae565b5b506101ea9291505b808211156100f257600081556001016100de565b5090565b50506003805460ff191660081790556040805180820190915260048082527f6f6e47430000000000000000000000000000000000000000000000000000000060209283019081526002805460008290529093601f6000196001841615610100020190921685900491909101047f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9081019291805160ff19168380011785556102ba565b828001600101855582156102ba579182015b828111156102ba57825182559160200191906001019061029f565b5b506102db9291505b808211156100f257600081556001016100de565b5090565b5050600454600160a060020a033316600090815260056020526040902081905590505b505b6104f08061030e6000396000f36060604052361561006c5760e060020a600035046306fdde03811461007e578063313ce567146100f9578063378dc3dc1461011c5780635a3b7e421461013b57806370a08231146101b657806395d89b41146101d8578063a9059cbb14610253578063dd62ed3e14610268575b346100005761007c5b610000565b565b005b346100005761008b61028d565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b346100005761010661031a565b6040805160ff9092168252519081900360200190f35b3461000057610129610323565b60408051918252519081900360200190f35b346100005761008b610329565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101296004356103b7565b60408051918252519081900360200190f35b346100005761008b6103c9565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b346100005761007c600435602435610454565b005b34610000576101296004356024356104d3565b60408051918252519081900360200190f35b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b60035460ff1681565b60045481565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b60056020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b600160a060020a0333166000908152600560205260409020548190101561047a57610000565b600160a060020a03821660009081526005602052604090205481810110156104a157610000565b600160a060020a03338116600090815260056020526040808220805485900390559184168152208054820190555b5050565b60066020908152600092835260408084209091529082529020548156

Deployed Bytecode

0x6060604052361561006c5760e060020a600035046306fdde03811461007e578063313ce567146100f9578063378dc3dc1461011c5780635a3b7e421461013b57806370a08231146101b657806395d89b41146101d8578063a9059cbb14610253578063dd62ed3e14610268575b346100005761007c5b610000565b565b005b346100005761008b61028d565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b346100005761010661031a565b6040805160ff9092168252519081900360200190f35b3461000057610129610323565b60408051918252519081900360200190f35b346100005761008b610329565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101296004356103b7565b60408051918252519081900360200190f35b346100005761008b6103c9565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b346100005761007c600435602435610454565b005b34610000576101296004356024356104d3565b60408051918252519081900360200190f35b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b60035460ff1681565b60045481565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b60056020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b600160a060020a0333166000908152600560205260409020548190101561047a57610000565b600160a060020a03821660009081526005602052604090205481810110156104a157610000565b600160a060020a03338116600090815260056020526040808220805485900390559184168152208054820190555b5050565b60066020908152600092835260408084209091529082529020548156

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.