ETH Price: $3,063.53 (-1.28%)
Gas: 7 Gwei

Token

Exchange Token (EX)
 

Overview

Max Total Supply

500,000,000 EX

Holders

353

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MyAdvancedToken

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-09-24
*/

/*
Exchange Token
*/
pragma solidity ^0.4.18;

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

contract TokenERC20 {
    // Public variables of the token
    string public name = 'Exchange Token';
    string public symbol = 'EX';
    uint8 public decimals = 8;
    // 8 decimals is the strongly suggested default, avoid changing it
    uint256 public totalSupply = 500000000;

    // 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
        balanceOf[msg.sender] = totalSupply;                // Give the creator all initial tokens
        name = tokenName;                                   // Set the name for display purposes
        symbol = tokenSymbol;                               // Set the symbol for display purposes
    }

    /**
     * Internal transfer, only can be called by this contract
     */
    function _transfer(address _from, address _to, uint256 _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;
        emit 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
        emit 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
        emit Burn(_from, _value);
        return true;
    }
}

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

contract MyAdvancedToken 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 MyAdvancedToken(
        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, uint256 _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
        emit Transfer(_from, _to, _value);
    }
	
	    /**
     * Destroy tokens
     *
     * Remove `_value` tokens from the system irreversibly
     *
     * @param _value the amount of money to burn
     */
    function burnThis(uint256 _value) internal returns (bool success) {
        require(balanceOf[this] >= _value);   // Check if the sender has enough
        balanceOf[this] -= _value;            // Subtract from the sender
        totalSupply -= _value;                      // Updates totalSupply
        emit Burn(this, _value);
        return true;
    }

    /// @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;
        emit FrozenFunds(target, freeze);
    }


	/// @notice withdrawal `amount` tokens from contract
    /// @param amount amount of tokens to be withdrawal
    function withdrawalToken(uint256 amount) onlyOwner public {
		require(balanceOf[this] >= amount);
        _transfer(this, msg.sender, amount);              // makes the transfers
    }
}

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":"_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":"amount","type":"uint256"}],"name":"withdrawalToken","outputs":[],"payable":false,"stateMutability":"nonpayable","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"}]

606060405260408051908101604052600e81527f45786368616e676520546f6b656e0000000000000000000000000000000000006020820152600190805161004b929160200190610150565b506040805190810160405260028082527f45580000000000000000000000000000000000000000000000000000000000006020830152908051610092929160200190610150565b506003805460ff19166008179055631dcd650060045534156100b357600080fd5b604051610d02380380610d02833981016040528080519190602001805182019190602001805160008054600160a060020a033316600160a060020a03199091168117825560035460ff16600a0a87026004819055908252600560205260409091205590910190508282826001828051610130929160200190610150565b506002818051610144929160200190610150565b505050505050506101eb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019157805160ff19168380011785556101be565b828001600101855582156101be579182015b828111156101be5782518255916020019190600101906101a3565b506101ca9291506101ce565b5090565b6101e891905b808211156101ca57600081556001016101d4565b90565b610b08806101fa6000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce5671461020257806342966c681461022b57806370a082311461024157806379cc6790146102605780638da5cb5b1461028257806395d89b41146102b1578063a9059cbb146102c4578063b414d4b6146102e8578063cae9ca5114610307578063dd62ed3e1461036c578063deddab1214610391578063e724529c146103a7578063f2fde38b146103cb575b600080fd5b341561010057600080fd5b6101086103ea565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610488565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c86104b8565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a03600435811690602435166044356104be565b341561020d57600080fd5b610215610535565b60405160ff909116815260200160405180910390f35b341561023657600080fd5b6101a160043561053e565b341561024c57600080fd5b6101c8600160a060020a03600435166105c9565b341561026b57600080fd5b6101a1600160a060020a03600435166024356105db565b341561028d57600080fd5b6102956106b7565b604051600160a060020a03909116815260200160405180910390f35b34156102bc57600080fd5b6101086106c6565b34156102cf57600080fd5b6102e6600160a060020a0360043516602435610731565b005b34156102f357600080fd5b6101a1600160a060020a0360043516610740565b341561031257600080fd5b6101a160048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061075595505050505050565b341561037757600080fd5b6101c8600160a060020a0360043581169060243516610883565b341561039c57600080fd5b6102e66004356108a0565b34156103b257600080fd5b6102e6600160a060020a036004351660243515156108ef565b34156103d657600080fd5b6102e6600160a060020a036004351661097b565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104805780601f1061045557610100808354040283529160200191610480565b820191906000526020600020905b81548152906001019060200180831161046357829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120548211156104f357600080fd5b600160a060020a038085166000908152600660209081526040808320339094168352929052208054839003905561052b8484846109c5565b5060019392505050565b60035460ff1681565b600160a060020a0333166000908152600560205260408120548290101561056457600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b60056020526000908152604090205481565b600160a060020a0382166000908152600560205260408120548290101561060157600080fd5b600160a060020a038084166000908152600660209081526040808320339094168352929052205482111561063457600080fd5b600160a060020a038084166000818152600560209081526040808320805488900390556006825280832033909516835293905282902080548590039055600480548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104805780601f1061045557610100808354040283529160200191610480565b61073c3383836109c5565b5050565b60076020526000908152604090205460ff1681565b6000836107628185610488565b1561087b5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610818578082015183820152602001610800565b50505050905090810190601f1680156108455780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561086657600080fd5b5af1151561087357600080fd5b505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a039081169116146108bb57600080fd5b600160a060020a033016600090815260056020526040902054819010156108e157600080fd5b6108ec3033836109c5565b50565b60005433600160a060020a0390811691161461090a57600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a0390811691161461099657600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03821615156109da57600080fd5b600160a060020a03831660009081526005602052604090205481901015610a0057600080fd5b600160a060020a03821660009081526005602052604090205481810111610a2657600080fd5b600160a060020a03831660009081526007602052604090205460ff1615610a4c57600080fd5b600160a060020a03821660009081526007602052604090205460ff1615610a7257600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a723058202371a2d92e29e05152926e710169b13d8e27d26c752638b492e9435e29dec18b0029000000000000000000000000000000000000000000000000000000001dcd6500000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000e45786368616e676520546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024558000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101b557806323b872dd146101da578063313ce5671461020257806342966c681461022b57806370a082311461024157806379cc6790146102605780638da5cb5b1461028257806395d89b41146102b1578063a9059cbb146102c4578063b414d4b6146102e8578063cae9ca5114610307578063dd62ed3e1461036c578063deddab1214610391578063e724529c146103a7578063f2fde38b146103cb575b600080fd5b341561010057600080fd5b6101086103ea565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561014457808201518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018a57600080fd5b6101a1600160a060020a0360043516602435610488565b604051901515815260200160405180910390f35b34156101c057600080fd5b6101c86104b8565b60405190815260200160405180910390f35b34156101e557600080fd5b6101a1600160a060020a03600435811690602435166044356104be565b341561020d57600080fd5b610215610535565b60405160ff909116815260200160405180910390f35b341561023657600080fd5b6101a160043561053e565b341561024c57600080fd5b6101c8600160a060020a03600435166105c9565b341561026b57600080fd5b6101a1600160a060020a03600435166024356105db565b341561028d57600080fd5b6102956106b7565b604051600160a060020a03909116815260200160405180910390f35b34156102bc57600080fd5b6101086106c6565b34156102cf57600080fd5b6102e6600160a060020a0360043516602435610731565b005b34156102f357600080fd5b6101a1600160a060020a0360043516610740565b341561031257600080fd5b6101a160048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061075595505050505050565b341561037757600080fd5b6101c8600160a060020a0360043581169060243516610883565b341561039c57600080fd5b6102e66004356108a0565b34156103b257600080fd5b6102e6600160a060020a036004351660243515156108ef565b34156103d657600080fd5b6102e6600160a060020a036004351661097b565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104805780601f1061045557610100808354040283529160200191610480565b820191906000526020600020905b81548152906001019060200180831161046357829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120548211156104f357600080fd5b600160a060020a038085166000908152600660209081526040808320339094168352929052208054839003905561052b8484846109c5565b5060019392505050565b60035460ff1681565b600160a060020a0333166000908152600560205260408120548290101561056457600080fd5b600160a060020a03331660008181526005602052604090819020805485900390556004805485900390557fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a2506001919050565b60056020526000908152604090205481565b600160a060020a0382166000908152600560205260408120548290101561060157600080fd5b600160a060020a038084166000908152600660209081526040808320339094168352929052205482111561063457600080fd5b600160a060020a038084166000818152600560209081526040808320805488900390556006825280832033909516835293905282902080548590039055600480548590039055907fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59084905190815260200160405180910390a250600192915050565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104805780601f1061045557610100808354040283529160200191610480565b61073c3383836109c5565b5050565b60076020526000908152604090205460ff1681565b6000836107628185610488565b1561087b5780600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610818578082015183820152602001610800565b50505050905090810190601f1680156108455780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b151561086657600080fd5b5af1151561087357600080fd5b505050600191505b509392505050565b600660209081526000928352604080842090915290825290205481565b60005433600160a060020a039081169116146108bb57600080fd5b600160a060020a033016600090815260056020526040902054819010156108e157600080fd5b6108ec3033836109c5565b50565b60005433600160a060020a0390811691161461090a57600080fd5b600160a060020a03821660009081526007602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a0390811691161461099657600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03821615156109da57600080fd5b600160a060020a03831660009081526005602052604090205481901015610a0057600080fd5b600160a060020a03821660009081526005602052604090205481810111610a2657600080fd5b600160a060020a03831660009081526007602052604090205460ff1615610a4c57600080fd5b600160a060020a03821660009081526007602052604090205460ff1615610a7257600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a723058202371a2d92e29e05152926e710169b13d8e27d26c752638b492e9435e29dec18b0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000001dcd6500000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000e45786368616e676520546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024558000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 500000000
Arg [1] : tokenName (string): Exchange Token
Arg [2] : tokenSymbol (string): EX

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000001dcd6500
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 45786368616e676520546f6b656e000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4558000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6498:2575:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;559:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;559:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4011:171;;;;;;;;;;-1:-1:-1;;;;;4011:171:0;;;;;;;;;;;;;;;;;;;;;;;;741:38;;;;;;;;;;;;;;;;;;;;;;;;;;;3446:296;;;;;;;;;;-1:-1:-1;;;;;3446:296:0;;;;;;;;;;;;637:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5103:374;;;;;;;;;;;;;;836:45;;;;;;;;;;-1:-1:-1;;;;;836:45:0;;;;;5740:611;;;;;;;;;;-1:-1:-1;;;;;5740:611:0;;;;;;;74:20;;;;;;;;;;;;;;;-1:-1:-1;;;;;74:20:0;;;;;;;;;;;;;;603:27;;;;;;;;;;;;3059:107;;;;;;;;;;-1:-1:-1;;;;;3059:107:0;;;;;;;;;6553:46;;;;;;;;;;-1:-1:-1;;;;;6553:46:0;;;;;4581:347;;;;;;;;;;;;;-1:-1:-1;;;;;4581:347:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4581:347:0;;-1:-1:-1;4581:347:0;;-1:-1:-1;;;;;;4581:347:0;888:66;;;;;;;;;;-1:-1:-1;;;;;888:66:0;;;;;;;;;;8883:187;;;;;;;;;;;;;;8600:161;;;;;;;;;;-1:-1:-1;;;;;8600:161:0;;;;;;;;;258:97;;;;;;;;;;-1:-1:-1;;;;;258:97:0;;;;;559:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4011:171::-;-1:-1:-1;;;;;4122:10:0;4112:21;;4087:12;4112:21;;;:9;:21;;;;;;;;:31;;;;;;;;;:40;;;4170:4;4011:171;;;;:::o;741:38::-;;;;:::o;3446:296::-;-1:-1:-1;;;;;3571:16:0;;;3528:12;3571:16;;;:9;:16;;;;;;;;3588:10;3571:28;;;;;;;;;;;;3561:38;;;3553:47;;;;;;-1:-1:-1;;;;;3634:16:0;;;;;;;:9;:16;;;;;;;;3651:10;3634:28;;;;;;;;;:38;;;;;;;3683:29;3644:5;3700:3;3666:6;3683:9;:29::i;:::-;-1:-1:-1;3730:4:0;3446:296;;;;;:::o;637:25::-;;;;;;:::o;5103:374::-;-1:-1:-1;;;;;5192:10:0;5182:21;5149:12;5182:21;;;:9;:21;;;;;;:31;;;;5174:40;;;;;;-1:-1:-1;;;;;5271:10:0;5261:21;;;;;:9;:21;;;;;;;:31;;;;;;;5342:11;:21;;;;;;;5423:24;;5286:6;;5423:24;;;;;;;;;;;;;-1:-1:-1;5465:4:0;5103:374;;;:::o;836:45::-;;;;;;;;;;;;;:::o;5740:611::-;-1:-1:-1;;;;;5838:16:0;;5805:12;5838:16;;;:9;:16;;;;;;:26;;;;5830:35;;;;;;-1:-1:-1;;;;;5952:16:0;;;;;;;:9;:16;;;;;;;;5969:10;5952:28;;;;;;;;;;5942:38;;;5934:47;;;;;;-1:-1:-1;;;;;6014:16:0;;;;;;;:9;:16;;;;;;;;:26;;;;;;;6113:9;:16;;;;;6130:10;6113:28;;;;;;;;;;;:38;;;;;;;6214:11;:21;;;;;;;6014:16;6302:19;;6034:6;;6302:19;;;;;;;;;;;;;-1:-1:-1;6339:4:0;5740:611;;;;:::o;74:20::-;;;-1:-1:-1;;;;;74:20:0;;:::o;603:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3059:107;3124:34;3134:10;3146:3;3151:6;3124:9;:34::i;:::-;3059:107;;:::o;6553:46::-;;;;;;;;;;;;;;;:::o;4581:347::-;4691:12;4756:8;4780:25;4756:8;4798:6;4780:7;:25::i;:::-;4776:145;;;4822:7;-1:-1:-1;;;;;4822:23:0;;4846:10;4858:6;4866:4;4872:10;4822:61;;;;;;;;;;;;;-1:-1:-1;;;;;4822:61:0;-1:-1:-1;;;;;4822:61:0;;;;;;;;;;;-1:-1:-1;;;;;4822:61:0;-1:-1:-1;;;;;4822:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4822:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4905:4;4898:11;;4776:145;4581:347;;;;;;:::o;888:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;8883:187::-;224:5;;210:10;-1:-1:-1;;;;;210:19:0;;;224:5;;210:19;202:28;;;;;;-1:-1:-1;;;;;8964:4:0;8954:15;;;;;:9;:15;;;;;;:25;;;;8946:34;;;;;;8991:35;9001:4;9007:10;9019:6;8991:9;:35::i;:::-;8883:187;:::o;8600:161::-;224:5;;210:10;-1:-1:-1;;;;;210:19:0;;;224:5;;210:19;202:28;;;;;;-1:-1:-1;;;;;8680:21:0;;;;;;:13;:21;;;;;;;:30;;-1:-1:-1;;8680:30:0;;;;;;;8726:27;;8680:21;;:30;;8726:27;-1:-1:-1;;;;;8726:27:0;;;;;;;;;;;;;;;;;;;;;;8600:161;;:::o;258:97::-;224:5;;210:10;-1:-1:-1;;;;;210:19:0;;;224:5;;210:19;202:28;;;;;;331:5;:16;;-1:-1:-1;;331:16:0;-1:-1:-1;;;;;331:16:0;;;;;;;;;;258:97::o;7090:785::-;-1:-1:-1;;;;;7182:10:0;;;;7173:20;;;;;;-1:-1:-1;;;;;7298:16:0;;;;;;:9;:16;;;;;;:26;;;;7289:36;;;;;;-1:-1:-1;;;;;7419:14:0;;;;;;:9;:14;;;;;;7393:23;;;:40;7384:50;;;;;;-1:-1:-1;;;;;7477:20:0;;;;;;:13;:20;;;;;;;;7476:21;7468:30;;;;;;-1:-1:-1;;;;;7567:18:0;;;;;;:13;:18;;;;;;;;7566:19;7558:28;;;;;;-1:-1:-1;;;;;7651:16:0;;;;;;;:9;:16;;;;;;:26;;;;;;;7740:14;;;;;;;;;;:24;;;;;;:14;7839:28;;7671:6;;7839:28;;;;;;;;;;;;;7090:785;;;:::o

Swarm Source

bzzr://2371a2d92e29e05152926e710169b13d8e27d26c752638b492e9435e29dec18b
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.