ETH Price: $2,647.13 (-2.72%)

Contract

0x5f7457437d38BCeF7A517bD2c2278a6559B90a4B
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim Bonus52311862018-03-10 16:13:172526 days ago1520698397IN
0x5f745743...559B90a4B
0 ETH0.0004527321
Approve52310582018-03-10 15:41:262526 days ago1520696486IN
0x5f745743...559B90a4B
0 ETH0.000094424
Approve52310122018-03-10 15:30:332526 days ago1520695833IN
0x5f745743...559B90a4B
0 ETH0.000094424
Approve52309432018-03-10 15:15:082526 days ago1520694908IN
0x5f745743...559B90a4B
0 ETH0.000094424

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

Contract Source Code Verified (Exact Match)

Contract Name:
CarPark

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
No with 200 runs

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

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

    /* 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 CarPark() {

         initialSupply = 5000000000000000000000000000;
         name ="CarPark";
        decimals = 18;
         symbol = "CPK";
        
        balanceOf[msg.sender] = initialSupply;              // Give the creator all initial tokens
        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":"totalSupply","outputs":[{"name":"","type":"uint256"}],"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"}]

6060604052604060405190810160405280600981526020017f546f6b656e20302e31000000000000000000000000000000000000000000000081525060009080519060200190610050929190610178565b50341561005957fe5b5b6b1027e72f1f12813088000000600481905550604060405190810160405280600781526020017f4361725061726b00000000000000000000000000000000000000000000000000815250600190805190602001906100b9929190610178565b506012600360006101000a81548160ff021916908360ff160217905550604060405190810160405280600381526020017f43504b000000000000000000000000000000000000000000000000000000000081525060029080519060200190610122929190610178565b50600454600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506004546005819055505b61021d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106101b957805160ff19168380011785556101e7565b828001600101855582156101e7579182015b828111156101e65782518255916020019190600101906101cb565b5b5090506101f491906101f8565b5090565b61021a91905b808211156102165760008160009055506001016101fe565b5090565b90565b6107be8061022c6000396000f30060606040523615610097576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100ad57806318160ddd14610146578063313ce5671461016c578063378dc3dc146101985780635a3b7e42146101be57806370a082311461025757806395d89b41146102a1578063a9059cbb1461033a578063dd62ed3e14610379575b341561009f57fe5b6100ab5b60006000fd5b565b005b34156100b557fe5b6100bd6103e2565b604051808060200182810382528381815181526020019150805190602001908083836000831461010c575b80518252602083111561010c576020820191506020810190506020830392506100e8565b505050905090810190601f1680156101385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561014e57fe5b610156610480565b6040518082815260200191505060405180910390f35b341561017457fe5b61017c610486565b604051808260ff1660ff16815260200191505060405180910390f35b34156101a057fe5b6101a8610499565b6040518082815260200191505060405180910390f35b34156101c657fe5b6101ce61049f565b604051808060200182810382528381815181526020019150805190602001908083836000831461021d575b80518252602083111561021d576020820191506020810190506020830392506101f9565b505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025f57fe5b61028b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061053d565b6040518082815260200191505060405180910390f35b34156102a957fe5b6102b1610555565b6040518080602001828103825283818151815260200191508051906020019080838360008314610300575b805182526020831115610300576020820191506020810190506020830392506102dc565b505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561034257fe5b610377600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506105f3565b005b341561038157fe5b6103cc600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061076d565b6040518082815260200191505060405180910390f35b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b505050505081565b60055481565b600360009054906101000a900460ff1681565b60045481565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105355780601f1061050a57610100808354040283529160200191610535565b820191906000526020600020905b81548152906001019060200180831161051857829003601f168201915b505050505081565b60066020528060005260406000206000915090505481565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b505050505081565b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156106405760006000fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540110156106ce5760006000fd5b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b5050565b60076020528160005260406000206020528060005260406000206000915091505054815600a165627a7a7230582005207e09242732b2d2711dcdde8a922bf7bfcb0c687c824951806046555a006a0029

Deployed Bytecode

0x60606040523615610097576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146100ad57806318160ddd14610146578063313ce5671461016c578063378dc3dc146101985780635a3b7e42146101be57806370a082311461025757806395d89b41146102a1578063a9059cbb1461033a578063dd62ed3e14610379575b341561009f57fe5b6100ab5b60006000fd5b565b005b34156100b557fe5b6100bd6103e2565b604051808060200182810382528381815181526020019150805190602001908083836000831461010c575b80518252602083111561010c576020820191506020810190506020830392506100e8565b505050905090810190601f1680156101385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561014e57fe5b610156610480565b6040518082815260200191505060405180910390f35b341561017457fe5b61017c610486565b604051808260ff1660ff16815260200191505060405180910390f35b34156101a057fe5b6101a8610499565b6040518082815260200191505060405180910390f35b34156101c657fe5b6101ce61049f565b604051808060200182810382528381815181526020019150805190602001908083836000831461021d575b80518252602083111561021d576020820191506020810190506020830392506101f9565b505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025f57fe5b61028b600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061053d565b6040518082815260200191505060405180910390f35b34156102a957fe5b6102b1610555565b6040518080602001828103825283818151815260200191508051906020019080838360008314610300575b805182526020831115610300576020820191506020810190506020830392506102dc565b505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561034257fe5b610377600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506105f3565b005b341561038157fe5b6103cc600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061076d565b6040518082815260200191505060405180910390f35b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b505050505081565b60055481565b600360009054906101000a900460ff1681565b60045481565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105355780601f1061050a57610100808354040283529160200191610535565b820191906000526020600020905b81548152906001019060200180831161051857829003601f168201915b505050505081565b60066020528060005260406000206000915090505481565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b505050505081565b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156106405760006000fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540110156106ce5760006000fd5b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b5050565b60076020528160005260406000206020528060005260406000206000915091505054815600a165627a7a7230582005207e09242732b2d2711dcdde8a922bf7bfcb0c687c824951806046555a006a0029

Swarm Source

bzzr://05207e09242732b2d2711dcdde8a922bf7bfcb0c687c824951806046555a006a

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.