ETH Price: $3,405.57 (-0.36%)
Gas: 18 Gwei

Contract

0x7742708c5Bbc8C4249ceCD684031650d62323535
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer105817302020-08-02 17:28:261446 days ago1596389306IN
SoMee: Old Token
0 ETH0.0017178863
Transfer88156522019-10-26 13:27:431727 days ago1572096463IN
SoMee: Old Token
0 ETH0.075167698
Transfer86395432019-09-28 20:53:301754 days ago1569704010IN
SoMee: Old Token
0.5 ETH0.00037818
Transfer86375282019-09-28 13:18:171755 days ago1569676697IN
SoMee: Old Token
0 ETH0.1322848814
Transfer86375192019-09-28 13:16:211755 days ago1569676581IN
SoMee: Old Token
0 ETH0.1325425314
Transfer69060152018-12-18 0:02:272039 days ago1545091347IN
SoMee: Old Token
0 ETH0.0061541
Transfer69060052018-12-18 0:00:362039 days ago1545091236IN
SoMee: Old Token
0 ETH0.0014256541
Transfer65756312018-10-24 15:58:242094 days ago1540396704IN
SoMee: Old Token
0 ETH0.000312949
Transfer54769132018-04-21 0:00:012280 days ago1524268801IN
SoMee: Old Token
0 ETH0.000104313
Transfer54436362018-04-15 7:00:392286 days ago1523775639IN
SoMee: Old Token
0 ETH0.0010438621
Transfer52685202018-03-17 0:41:552315 days ago1521247315IN
SoMee: Old Token
0 ETH0.0013908840
Transfer51957212018-03-04 15:48:382328 days ago1520178518IN
SoMee: Old Token
0 ETH0.0013213338
Transfer51789502018-03-01 19:39:112330 days ago1519933151IN
SoMee: Old Token
0 ETH0.0017442635
Transfer51602112018-02-26 15:19:482334 days ago1519658388IN
SoMee: Old Token
0 ETH0.0007302121
Transfer51319612018-02-21 19:39:382338 days ago1519241978IN
SoMee: Old Token
0 ETH0.0008106541
Transfer51318822018-02-21 19:18:292338 days ago1519240709IN
SoMee: Old Token
0 ETH0.0020380241
Transfer50502572018-02-08 1:31:502352 days ago1518053510IN
SoMee: Old Token
0 ETH0.0016690548
Transfer50215252018-02-03 5:50:272357 days ago1517637027IN
SoMee: Old Token
0 ETH0.0009954420
Transfer49833502018-01-27 18:16:102364 days ago1517076970IN
SoMee: Old Token
0 ETH0.0010438621
Transfer49759602018-01-26 12:34:442365 days ago1516970084IN
SoMee: Old Token
0 ETH0.0007302121
Transfer49576512018-01-23 10:41:492368 days ago1516704109IN
SoMee: Old Token
0.5 ETH0.00086141
Transfer49541522018-01-22 20:28:022368 days ago1516652882IN
SoMee: Old Token
0 ETH0.0010452121
Transfer49423452018-01-20 19:50:292370 days ago1516477829IN
SoMee: Old Token
0 ETH0.0033033495
Transfer49422912018-01-20 19:34:542370 days ago1516476894IN
SoMee: Old Token
0 ETH0.0015995146
Transfer49349792018-01-19 13:33:072372 days ago1516368787IN
SoMee: Old Token
0 ETH0.0014256541
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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"}]

Deployed Bytecode

0x6060604052361561006c5760e060020a600035046306fdde03811461007e578063313ce567146100f9578063378dc3dc1461011c5780635a3b7e421461013b57806370a08231146101b657806395d89b41146101d8578063a9059cbb14610253578063dd62ed3e14610268575b346100005761007c5b610000565b565b005b346100005761008b61028d565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b346100005761010661031a565b6040805160ff9092168252519081900360200190f35b3461000057610129610323565b60408051918252519081900360200190f35b346100005761008b610329565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101296004356103b7565b60408051918252519081900360200190f35b346100005761008b6103c9565b60405180806020018281038252838181518152602001915080519060200190808383829060006004602084601f0104600302600f01f150905090810190601f1680156100eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b346100005761007c600435602435610454565b005b34610000576101296004356024356104d3565b60408051918252519081900360200190f35b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b60035460ff1681565b60045481565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b60056020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103125780601f106102e757610100808354040283529160200191610312565b820191906000526020600020905b8154815290600101906020018083116102f557829003601f168201915b505050505081565b600160a060020a0333166000908152600560205260409020548190101561047a57610000565b600160a060020a03821660009081526005602052604090205481810110156104a157610000565b600160a060020a03338116600090815260056020526040808220805485900390559184168152208054820190555b5050565b60066020908152600092835260408084209091529082529020548156

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.