ETH Price: $3,377.20 (-0.12%)
Gas: 4 Gwei

Contract

0x0223fc70574214F65813fE336D870Ac47E147fAe
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0xb364f4994deaea15e9aac94a3187c13211e55f0eeabe52363ff0e0b0d99581e8 Transfer(pending)2024-06-23 4:53:593 days ago1719118439IN
0x0223fc70...47E147fAe
0 ETH(Pending)(Pending)
0x8aa8308fe79a85a1fd94e478920ef665debc5f7b0feb7beb978d88d7cb7a9f92 Transfer(pending)2024-06-23 2:18:273 days ago1719109107IN
0x0223fc70...47E147fAe
0 ETH(Pending)(Pending)
Transfer201496272024-06-22 20:28:233 days ago1719088103IN
0x0223fc70...47E147fAe
0 ETH0.000088251.70714291
Transfer196785512024-04-17 23:45:1169 days ago1713397511IN
0x0223fc70...47E147fAe
0 ETH0.000484969.3791064
Transfer193731202024-03-06 2:22:47112 days ago1709691767IN
0x0223fc70...47E147fAe
0 ETH0.0027686349.00675611
Transfer193230012024-02-28 2:17:11119 days ago1709086631IN
0x0223fc70...47E147fAe
0 ETH0.0020526936.33408822
Transfer184304592023-10-25 23:15:59244 days ago1698275759IN
0x0223fc70...47E147fAe
0 ETH0.0013797326.69
Transfer180998132023-09-09 15:46:11290 days ago1694274371IN
0x0223fc70...47E147fAe
0 ETH0.0006718713
Transfer166814962023-02-22 4:04:23490 days ago1677038663IN
0x0223fc70...47E147fAe
0 ETH0.001495828.93525718
Transfer164270192023-01-17 14:08:11525 days ago1673964491IN
0x0223fc70...47E147fAe
0 ETH0.0013153525.45039554
Transfer159024642022-11-05 7:56:11599 days ago1667634971IN
0x0223fc70...47E147fAe
0 ETH0.0006987613.51707463
Approve152950262022-08-07 11:58:08688 days ago1659873488IN
0x0223fc70...47E147fAe
0 ETH0.000222845
Transfer150011292022-06-21 7:32:03736 days ago1655796723IN
0x0223fc70...47E147fAe
0 ETH0.0011270421.80189648
Transfer148169612022-05-21 11:20:28766 days ago1653132028IN
0x0223fc70...47E147fAe
0 ETH0.0005168310
Transfer146224742022-04-20 14:35:03797 days ago1650465303IN
0x0223fc70...47E147fAe
0 ETH0.0032716563.28766362
Transfer146134822022-04-19 4:32:52799 days ago1650342772IN
0x0223fc70...47E147fAe
0 ETH0.0012718624.60322162
Approve145881962022-04-15 5:53:01803 days ago1650001981IN
0x0223fc70...47E147fAe
0 ETH0.0011184825.2313486
Approve144898662022-03-30 21:10:19818 days ago1648674619IN
0x0223fc70...47E147fAe
0 ETH0.0033138974.79734171
Transfer144615402022-03-26 11:22:07822 days ago1648293727IN
0x0223fc70...47E147fAe
0 ETH0.0023262745
Transfer144615282022-03-26 11:19:27822 days ago1648293567IN
0x0223fc70...47E147fAe
0 ETH0.0022100556.1
Transfer144615282022-03-26 11:19:27822 days ago1648293567IN
0x0223fc70...47E147fAe
0 ETH0.0023016658.443
Transfer144615282022-03-26 11:19:27822 days ago1648293567IN
0x0223fc70...47E147fAe
0 ETH0.0007873719.99269743
Transfer144615222022-03-26 11:18:27822 days ago1648293507IN
0x0223fc70...47E147fAe
0 ETH0.0008270421
Transfer144614982022-03-26 11:12:56822 days ago1648293176IN
0x0223fc70...47E147fAe
0 ETH0.0008598921.83429364
Transfer144608402022-03-26 8:42:44823 days ago1648284164IN
0x0223fc70...47E147fAe
0 ETH0.0011240119.9
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 0x1eF5c9c0...DB6eb3eef
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CZRToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.16;

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;
    }
}

interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }

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;
    mapping (address => mapping (address => uint256)) public allowance;

    // 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

        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
    }

    /**
     * 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;
        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 {
        _transfer(msg.sender, _to, _value);
    }

    /**
     * Transfer tokens from other address
     *
     * Send `_value` tokens to `_to` in behalf of `_from`
     *
     * @param _from The address of the sender
     * @param _to The address of the recipient
     * @param _value the amount to send
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require(_value <= allowance[_from][msg.sender]);     // Check allowance
        allowance[_from][msg.sender] -= _value;
        _transfer(_from, _to, _value);
        return true;
    }

    /**
     * Set allowance for other address
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     */
    function approve(address _spender, uint256 _value) public
        returns (bool success) {
        allowance[msg.sender][_spender] = _value;
        return true;
    }

    /**
     * Set allowance for other address and notify
     *
     * Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
     *
     * @param _spender The address authorized to spend
     * @param _value the max amount they can spend
     * @param _extraData some extra information to send to the approved contract
     */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData)
        public
        returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);
        if (approve(_spender, _value)) {
            spender.receiveApproval(msg.sender, _value, this, _extraData);
            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
        Burn(msg.sender, _value);
        return true;
    }

    /**
     * Destroy tokens from other account
     *
     * Remove `_value` tokens from the system irreversibly on behalf of `_from`.
     *
     * @param _from the address of the sender
     * @param _value the amount of money to burn
     */
    function burnFrom(address _from, uint256 _value) public returns (bool success) {
        require(balanceOf[_from] >= _value);                // Check if the targeted balance is enough
        require(_value <= allowance[_from][msg.sender]);    // Check allowance
        balanceOf[_from] -= _value;                         // Subtract from the targeted balance
        allowance[_from][msg.sender] -= _value;             // Subtract from the sender's allowance
        totalSupply -= _value;                              // Update totalSupply
        Burn(_from, _value);
        return true;
    }
}

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

contract CZRToken is owned, TokenERC20 {

    mapping (address => bool) public frozenAccount;

    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);

    /* Initializes contract with initial supply tokens to the creator of the contract */
    function CZRToken(
        uint256 initialSupply,
        string tokenName,
        string tokenSymbol
    ) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}

    /* 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
        balanceOf[_from] -= _value;                         // Subtract from the sender
        balanceOf[_to] += _value;                           // Add the same to the recipient
        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;
        FrozenFunds(target, freeze);
    }
    
    /// Init balances from old CNC chain
    /// @param addrs Address array
    /// @param balances balance array 
    function init(address[] addrs, uint256[] balances) onlyOwner public {
        require(addrs.length == balances.length);
        uint totalValue;
        for (uint i = 0; i < addrs.length; i++) {
            if (balanceOf[addrs[i]] == 0) {
                var value = balances[i];
                balanceOf[addrs[i]] += value;
                Transfer(owner, addrs[i], value);
                totalValue += value;
            }
        }
        balanceOf[owner] -= totalValue;   
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addrs","type":"address[]"},{"name":"balances","type":"uint256[]"}],"name":"init","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":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","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":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"}]

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce56714610202578063371aa1581461022b57806342966c68146102bc57806370a08231146102d257806379cc6790146102f15780638da5cb5b1461031357806395d89b4114610342578063a9059cbb14610355578063b414d4b614610377578063cae9ca5114610396578063dd62ed3e146103fb578063e724529c14610420578063f2fde38b14610444575b600080fd5b341561010057600080fd5b610108610463565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610501565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c8610531565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a0360043581169060243516604435610537565b341561020d57600080fd5b6102156105ae565b60405160ff909116815260200160405180910390f35b341561023657600080fd5b6102ba6004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506105b795505050505050565b005b34156102c757600080fd5b6101a160043561070f565b34156102dd57600080fd5b6101c8600160a060020a036004351661079a565b34156102fc57600080fd5b6101a1600160a060020a03600435166024356107ac565b341561031e57600080fd5b610326610888565b604051600160a060020a03909116815260200160405180910390f35b341561034d57600080fd5b610108610897565b341561036057600080fd5b6102ba600160a060020a0360043516602435610902565b341561038257600080fd5b6101a1600160a060020a0360043516610911565b34156103a157600080fd5b6101a160048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061092695505050505050565b341561040657600080fd5b6101c8600160a060020a0360043581169060243516610a58565b341561042b57600080fd5b6102ba600160a060020a03600435166024351515610a75565b341561044f57600080fd5b6102ba600160a060020a0360043516610b01565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f95780601f106104ce576101008083540402835291602001916104f9565b820191906000526020600020905b8154815290600101906020018083116104dc57829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a0380841660009081526006602090815260408083203390941683529290529081205482111561056c57600080fd5b600160a060020a03808516600090815260066020908152604080832033909416835292905220805483900390556105a4848484610b4b565b5060019392505050565b60035460ff1681565b600080548190819033600160a060020a039081169116146105d757600080fd5b83518551146105e557600080fd5b600091505b84518210156106e9576005600086848151811061060357fe5b90602001906020020151600160a060020a0316815260208101919091526040016000205415156106de5783828151811061063957fe5b906020019060200201519050806005600087858151811061065657fe5b90602001906020020151600160a060020a0316815260208101919091526040016000208054909101905584828151811061068c57fe5b90602001906020020151600054600160a060020a0391821691167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a3918201915b6001909101906105ea565b505060008054600160a060020a0316815260056020526040902080549190910390555050565b600160a060020a0333166000908152600560205260408120548290101561073557600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b60056020526000908152604090205481565b600160a060020a038216600090815260056020526040812054829010156107d257600080fd5b600160a060020a038084166000908152600660209081526040808320339094168352929052205482111561080557600080fd5b600160a060020a038084166000818152600560209081526040808320805488900390556006825280832033909516835293905282902080548590039055600480548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104f95780601f106104ce576101008083540402835291602001916104f9565b61090d338383610b4b565b5050565b60076020526000908152604090205460ff1681565b6000836109338185610501565b15610a505780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156109e95780820151838201526020016109d1565b50505050905090810190601f168015610a165780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610a3757600080fd5b6102c65a03f11515610a4857600080fd5b505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a03908116911614610a9057600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610b1c57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610b6057600080fd5b600160a060020a03831660009081526005602052604090205481901015610b8657600080fd5b600160a060020a03821660009081526005602052604090205481810111610bac57600080fd5b600160a060020a03831660009081526007602052604090205460ff1615610bd257600080fd5b600160a060020a03821660009081526007602052604090205460ff1615610bf857600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a723058200361db4bcb745b27b3b20937accdbbe976d809756045483bcd87b0ba784403f20029

Swarm Source

bzzr://0361db4bcb745b27b3b20937accdbbe976d809756045483bcd87b0ba784403f2

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.