ETH Price: $1,958.17 (+0.53%)
Gas: 0.13 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve77015522019-05-05 14:49:042493 days ago1557067744IN
0xA51153D9...8D1e40388
0 ETH0.00018274
Transfer77015152019-05-05 14:41:232493 days ago1557067283IN
0xA51153D9...8D1e40388
0 ETH0.000148314
Transfer43921512017-10-19 23:00:183056 days ago1508454018IN
0xA51153D9...8D1e40388
0 ETH0.000296118
Approve43573072017-10-11 20:22:133064 days ago1507753333IN
0xA51153D9...8D1e40388
0 ETH0.0008654119
Approve43572982017-10-11 20:18:113064 days ago1507753091IN
0xA51153D9...8D1e40388
0 ETH0.0008187118
Approve43571972017-10-11 19:28:373064 days ago1507750117IN
0xA51153D9...8D1e40388
0 ETH0.0007287616
Approve43524242017-10-10 4:12:453066 days ago1507608765IN
0xA51153D9...8D1e40388
0 ETH0.000409359
Transfer43523712017-10-10 3:44:143066 days ago1507607054IN
0xA51153D9...8D1e40388
0 ETH0.0005532915
Approve43523312017-10-10 3:32:373066 days ago1507606357IN
0xA51153D9...8D1e40388
0 ETH0.000409359
Approve43523312017-10-10 3:32:373066 days ago1507606357IN
0xA51153D9...8D1e40388
0 ETH0.000409359
Approve43523312017-10-10 3:32:373066 days ago1507606357IN
0xA51153D9...8D1e40388
0 ETH0.000409359
Transfer43521242017-10-10 1:52:573066 days ago1507600377IN
0xA51153D9...8D1e40388
0 ETH0.000466979
Transfer43521222017-10-10 1:52:523066 days ago1507600372IN
0xA51153D9...8D1e40388
0 ETH0.000466979
Transfer43521172017-10-10 1:49:343066 days ago1507600174IN
0xA51153D9...8D1e40388
0 ETH0.000466979
Approve43508672017-10-09 15:04:313066 days ago1507561471IN
0xA51153D9...8D1e40388
0 ETH0.000364388
Approve43367662017-10-04 17:47:253071 days ago1507139245IN
0xA51153D9...8D1e40388
0 ETH0.000545812
Approve43343622017-10-03 21:47:313072 days ago1507067251IN
0xA51153D9...8D1e40388
0 ETH0.000181684
Approve43308532017-10-02 16:10:443073 days ago1506960644IN
0xA51153D9...8D1e40388
0 ETH0.000181684
Transfer43306992017-10-02 14:58:523073 days ago1506956332IN
0xA51153D9...8D1e40388
0 ETH0.0010882621
Transfer43306822017-10-02 14:50:523073 days ago1506955852IN
0xA51153D9...8D1e40388
0 ETH0.00052521
Transfer42952202017-09-20 15:53:263085 days ago1505922806IN
0xA51153D9...8D1e40388
0 ETH0.0012954935
Transfer42952102017-09-20 15:47:423085 days ago1505922462IN
0xA51153D9...8D1e40388
0 ETH0.0005076921
Transfer42952042017-09-20 15:46:063085 days ago1505922366IN
0xA51153D9...8D1e40388
0 ETH0.0010909521
Transfer42952012017-09-20 15:43:533085 days ago1505922233IN
0xA51153D9...8D1e40388
0 ETH0.0010909521
Transfer42951902017-09-20 15:39:323085 days ago1505921972IN
0xA51153D9...8D1e40388
0 ETH0.0010909521
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x4A60300e...A41099a78
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.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2017-06-19
*/

pragma solidity ^0.4.11;
 
contract Token {
    string public symbol = "";
    string public name = "";
    uint8 public constant decimals = 18;
    uint256 _totalSupply = 0;
    address owner = 0;
    bool setupDone = false;
   
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
 
    mapping(address => uint256) balances;
 
    mapping(address => mapping (address => uint256)) allowed;
 
    function Token(address adr) {
        owner = adr;        
    }
   
    function SetupToken(string tokenName, string tokenSymbol, uint256 tokenSupply)
    {
        if (msg.sender == owner && setupDone == false)
        {
            symbol = tokenSymbol;
            name = tokenName;
            _totalSupply = tokenSupply * 1000000000000000000;
            balances[owner] = _totalSupply;
            setupDone = true;
        }
    }
 
    function totalSupply() constant returns (uint256 totalSupply) {        
        return _totalSupply;
    }
 
    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }
 
    function transfer(address _to, uint256 _amount) returns (bool success) {
        if (balances[msg.sender] >= _amount
            && _amount > 0
            && balances[_to] + _amount > balances[_to]) {
            balances[msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(msg.sender, _to, _amount);
            return true;
        } else {
            return false;
        }
    }
 
    function transferFrom(
        address _from,
        address _to,
        uint256 _amount
    ) returns (bool success) {
        if (balances[_from] >= _amount
            && allowed[_from][msg.sender] >= _amount
            && _amount > 0
            && balances[_to] + _amount > balances[_to]) {
            balances[_from] -= _amount;
            allowed[_from][msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(_from, _to, _amount);
            return true;
        } else {
            return false;
        }
    }
 
    function approve(address _spender, uint256 _amount) returns (bool success) {
        allowed[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
        return true;
    }
 
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","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":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"tokenSupply","type":"uint256"}],"name":"SetupToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"adr","type":"address"}],"payable":false,"type":"constructor"},{"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"}]

0x60806040819052600060608190526100179181610088565b5060408051602081019182905260009081905261003691600191610088565b50600060025560038054600160a860020a0319169055341561005457fe5b604051602080610a3e83398101604052515b60038054600160a060020a031916600160a060020a0383161790555b50610128565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100c957805160ff19168380011785556100f6565b828001600101855582156100f6579182015b828111156100f65782518255916020019190600101906100db565b5b50610103929150610107565b5090565b61012591905b80821115610103576000815560010161010d565b5090565b90565b610907806101376000396000f300606060405236156100a15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a3578063095ea7b31461013357806318160ddd1461016657806323b872dd14610188578063313ce567146101c157806370a08231146101e757806395d89b4114610215578063a9059cbb146102a5578063b6d2a9b9146102d8578063dd62ed3e1461036f575bfe5b34156100ab57fe5b6100b36103a3565b6040805160208082528351818301528351919283929083019185019080838382156100f9575b8051825260208311156100f957601f1990920191602091820191016100d9565b505050905090810190601f1680156101255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013b57fe5b610152600160a060020a0360043516602435610430565b604080519115158252519081900360200190f35b341561016e57fe5b61017661049b565b60408051918252519081900360200190f35b341561019057fe5b610152600160a060020a03600435811690602435166044356104a2565b604080519115158252519081900360200190f35b34156101c957fe5b6101d16105bc565b6040805160ff9092168252519081900360200190f35b34156101ef57fe5b610176600160a060020a03600435166105c1565b60408051918252519081900360200190f35b341561021d57fe5b6100b36105e0565b6040805160208082528351818301528351919283929083019185019080838382156100f9575b8051825260208311156100f957601f1990920191602091820191016100d9565b505050905090810190601f1680156101255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102ad57fe5b610152600160a060020a036004351660243561066e565b604080519115158252519081900360200190f35b34156102e057fe5b61036d600480803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284375050604080516020601f89358b01803591820183900483028401830190945280835297999881019791965091820194509250829150840183828082843750949650509335935061073f92505050565b005b341561037757fe5b610176600160a060020a036004358116906024351661080e565b60408051918252519081900360200190f35b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b6002545b90565b600160a060020a0383166000908152600460205260408120548290108015906104f25750600160a060020a0380851660009081526005602090815260408083203390941683529290522054829010155b80156104fe5750600082115b80156105235750600160a060020a038316600090815260046020526040902054828101115b156105b057600160a060020a03808516600081815260046020818152604080842080548990039055600582528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060016105b4565b5060005b5b9392505050565b601281565b600160a060020a0381166000908152600460205260409020545b919050565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b505050505081565b600160a060020a0333166000908152600460205260408120548290108015906106975750600082115b80156106bc5750600160a060020a038316600090815260046020526040902054828101115b1561073057600160a060020a03338116600081815260046020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3506001610495565b506000610495565b5b92915050565b60035433600160a060020a039081169116148015610778575060035474010000000000000000000000000000000000000000900460ff16155b1561080857815161079090600090602085019061083b565b5082516107a490600190602086019061083b565b50670de0b6b3a76400008102600281905560038054600160a060020a0316600090815260046020526040902091909155805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790555b5b505050565b600160a060020a038083166000908152600560209081526040808320938516835292905220545b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061087c57805160ff19168380011785556108a9565b828001600101855582156108a9579182015b828111156108a957825182559160200191906001019061088e565b5b506108b69291506108ba565b5090565b61049f91905b808211156108b657600081556001016108c0565b5090565b905600a165627a7a723058209d6ef1f481ef42049dd53d6f31f15f92c1532312114fb69b98813275b2fcc8940029000000000000000000000000fa98e30440d735a25721fd0bb48e8ab97192acb8

Deployed Bytecode

0x606060405236156100a15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a3578063095ea7b31461013357806318160ddd1461016657806323b872dd14610188578063313ce567146101c157806370a08231146101e757806395d89b4114610215578063a9059cbb146102a5578063b6d2a9b9146102d8578063dd62ed3e1461036f575bfe5b34156100ab57fe5b6100b36103a3565b6040805160208082528351818301528351919283929083019185019080838382156100f9575b8051825260208311156100f957601f1990920191602091820191016100d9565b505050905090810190601f1680156101255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013b57fe5b610152600160a060020a0360043516602435610430565b604080519115158252519081900360200190f35b341561016e57fe5b61017661049b565b60408051918252519081900360200190f35b341561019057fe5b610152600160a060020a03600435811690602435166044356104a2565b604080519115158252519081900360200190f35b34156101c957fe5b6101d16105bc565b6040805160ff9092168252519081900360200190f35b34156101ef57fe5b610176600160a060020a03600435166105c1565b60408051918252519081900360200190f35b341561021d57fe5b6100b36105e0565b6040805160208082528351818301528351919283929083019185019080838382156100f9575b8051825260208311156100f957601f1990920191602091820191016100d9565b505050905090810190601f1680156101255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102ad57fe5b610152600160a060020a036004351660243561066e565b604080519115158252519081900360200190f35b34156102e057fe5b61036d600480803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284375050604080516020601f89358b01803591820183900483028401830190945280835297999881019791965091820194509250829150840183828082843750949650509335935061073f92505050565b005b341561037757fe5b610176600160a060020a036004358116906024351661080e565b60408051918252519081900360200190f35b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b505050505081565b600160a060020a03338116600081815260056020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b6002545b90565b600160a060020a0383166000908152600460205260408120548290108015906104f25750600160a060020a0380851660009081526005602090815260408083203390941683529290522054829010155b80156104fe5750600082115b80156105235750600160a060020a038316600090815260046020526040902054828101115b156105b057600160a060020a03808516600081815260046020818152604080842080548990039055600582528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060016105b4565b5060005b5b9392505050565b601281565b600160a060020a0381166000908152600460205260409020545b919050565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b505050505081565b600160a060020a0333166000908152600460205260408120548290108015906106975750600082115b80156106bc5750600160a060020a038316600090815260046020526040902054828101115b1561073057600160a060020a03338116600081815260046020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3506001610495565b506000610495565b5b92915050565b60035433600160a060020a039081169116148015610778575060035474010000000000000000000000000000000000000000900460ff16155b1561080857815161079090600090602085019061083b565b5082516107a490600190602086019061083b565b50670de0b6b3a76400008102600281905560038054600160a060020a0316600090815260046020526040902091909155805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790555b5b505050565b600160a060020a038083166000908152600560209081526040808320938516835292905220545b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061087c57805160ff19168380011785556108a9565b828001600101855582156108a9579182015b828111156108a957825182559160200191906001019061088e565b5b506108b69291506108ba565b5090565b61049f91905b808211156108b657600081556001016108c0565b5090565b905600a165627a7a723058209d6ef1f481ef42049dd53d6f31f15f92c1532312114fb69b98813275b2fcc8940029

Swarm Source

bzzr://9d6ef1f481ef42049dd53d6f31f15f92c1532312114fb69b98813275b2fcc894

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.