ETH Price: $3,072.52 (-1.53%)
Gas: 3 Gwei

Token

LEOcoin (LEO)
 

Overview

Max Total Supply

260,280,358.820398234260805248 LEO

Holders

4,749 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Bitfinex: LEO Token
Balance
27 LEO

Value
$0.00
0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LEOcoin is a revolutionary new digital currency.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LEOcoin

Compiler Version
v0.5.2+commit.1df8f40c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-04-02
*/

pragma solidity ^0.5.2;

//////////////////////////////////////////
//                                      //
//              SafeMath                //
//                                      //
//                                      //
//////////////////////////////////////////

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);
        return c;
    }
}


//////////////////////////////////////////
//                                      //
//          Token interface             //
//                                      //
//                                      //
//////////////////////////////////////////


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);

    function totalSupply() external view returns (uint256);
    function balanceOf(address who) external view returns (uint256);

    function transfer(address to, uint256 value) external returns (bool);   
    function transferFrom(address from, address to, uint256 value) external returns (bool);
    
    function approve(address spender, uint256 value) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 */
contract LEOcoin is IERC20 {
    using SafeMath for uint256;

    // 
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowed;
    uint256 private _totalSupply;

    address private _isMinter;
    uint256 private _cap;


    constructor (address masterAccount, uint256 premined, address minterAccount) public {
        _name = "LEOcoin";
        _symbol = "LEO";
        _decimals = 18;
        _cap = 4000000000*1E18;

        _isMinter = minterAccount;

        _totalSupply = _totalSupply.add(premined);
        _balances[masterAccount] = _balances[masterAccount].add(premined);
        emit Transfer(address(0), masterAccount, premined);
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return An uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
     * @dev Transfer token for a specified address
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;      
    }

    /**
     * @dev Function to mint tokens
     * @param account The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address account, uint256 value) public onlyMinter  {
        require(account != address(0));
        require(totalSupply().add(value) <= _cap);

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }


    /**
     * @return the cap for the token minting.
     */
    function cap() external view returns (uint256) {
        return _cap;
    }

    /**
     * @return the address that can mint tokens.
     */
    function currentMinter() external view returns (address) {
        return _isMinter;
    }


    /**
     * @dev Function to change minter address
     * @param newMinter The address that will be able to mint tokens from now on
     */
    function changeMinter(address newMinter) external onlyMinter {
        _isMinter = newMinter;
    } 

    modifier onlyMinter() {
        require(msg.sender==_isMinter);
        _;
    }


    function batchTransfer(address[] memory accounts, uint256[] memory values) public {
        for (uint i=0; i<accounts.length; i++) {
            // check to!=0 to prevent reversion
            if (accounts[i]==address(0)) {
                continue;
            }
            transfer(accounts[i], values[i]);
        }
    }

    function batchMint(address[] memory accounts, uint256[] memory values) public {
        for (uint i=0; i<accounts.length; i++) {
            // check to!=0 to prevent reversion
            if (accounts[i]==address(0)) {
                continue;
            }

            mint(accounts[i], values[i]);
        }   
    }


}

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":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newMinter","type":"address"}],"name":"changeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"value","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"accounts","type":"address[]"},{"name":"values","type":"uint256[]"}],"name":"batchMint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"accounts","type":"address[]"},{"name":"values","type":"uint256[]"}],"name":"batchTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentMinter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"masterAccount","type":"address"},{"name":"premined","type":"uint256"},{"name":"minterAccount","type":"address"}],"payable":false,"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b5060405160608062000e8e833981018060405260608110156200003357600080fd5b508051602080830151604093840151845180860190955260078086527f4c454f636f696e000000000000000000000000000000000000000000000000009590930194855292939092916200008a91600091620001d6565b506040805180820190915260038082527f4c454f00000000000000000000000000000000000000000000000000000000006020909201918252620000d191600191620001d6565b506002805460ff191660121790556b0cecb8f27f4200f3a000000060075560068054600160a060020a038316600160a060020a031990911617905560055462000129908364010000000062000bbe620001bc82021704565b600555600160a060020a0383166000908152600360205260409020546200015f908364010000000062000bbe620001bc82021704565b600160a060020a03841660008181526003602090815260408083209490945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050506200027b565b600082820183811015620001cf57600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200021957805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002495782518255916020019190600101906200022c565b50620002579291506200025b565b5090565b6200027891905b8082111562000257576000815560010162000262565b90565b610c03806200028b6000396000f3fe608060405234801561001057600080fd5b5060043610610128576000357c01000000000000000000000000000000000000000000000000000000009004806340c10f19116100bf57806395d89b411161008e57806395d89b41146105545780639bac6e8d1461055c578063a457c2d714610580578063a9059cbb146105ac578063dd62ed3e146105d857610128565b806340c10f19146102b457806368573107146102e057806370a082311461040757806388d695b21461042d57610128565b80632c4d4d18116100fb5780632c4d4d181461023a578063313ce56714610262578063355274ea14610280578063395093511461028857610128565b806306fdde031461012d578063095ea7b3146101aa57806318160ddd146101ea57806323b872dd14610204575b600080fd5b610135610606565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016f578181015183820152602001610157565b50505050905090810190601f16801561019c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d6600480360360408110156101c057600080fd5b50600160a060020a03813516906020013561069c565b604080519115158252519081900360200190f35b6101f26106b2565b60408051918252519081900360200190f35b6101d66004803603606081101561021a57600080fd5b50600160a060020a038135811691602081013590911690604001356106b8565b6102606004803603602081101561025057600080fd5b5035600160a060020a031661070f565b005b61026a610755565b6040805160ff9092168252519081900360200190f35b6101f261075e565b6101d66004803603604081101561029e57600080fd5b50600160a060020a038135169060200135610764565b610260600480360360408110156102ca57600080fd5b50600160a060020a0381351690602001356107a0565b610260600480360360408110156102f657600080fd5b81019060208101813564010000000081111561031157600080fd5b82018360208201111561032357600080fd5b8035906020019184602083028401116401000000008311171561034557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561039557600080fd5b8201836020820111156103a757600080fd5b803590602001918460208302840111640100000000831117156103c957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610889945050505050565b6101f26004803603602081101561041d57600080fd5b5035600160a060020a0316610909565b6102606004803603604081101561044357600080fd5b81019060208101813564010000000081111561045e57600080fd5b82018360208201111561047057600080fd5b8035906020019184602083028401116401000000008311171561049257600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156104e257600080fd5b8201836020820111156104f457600080fd5b8035906020019184602083028401116401000000008311171561051657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610924945050505050565b6101356109a1565b610564610a01565b60408051600160a060020a039092168252519081900360200190f35b6101d66004803603604081101561059657600080fd5b50600160a060020a038135169060200135610a10565b6101d6600480360360408110156105c257600080fd5b50600160a060020a038135169060200135610a4c565b6101f2600480360360408110156105ee57600080fd5b50600160a060020a0381358116916020013516610a59565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106925780601f1061066757610100808354040283529160200191610692565b820191906000526020600020905b81548152906001019060200180831161067557829003601f168201915b5050505050905090565b60006106a9338484610a84565b50600192915050565b60055490565b60006106c5848484610ada565b600160a060020a038416600090815260046020908152604080832033808552925290912054610705918691610700908663ffffffff610ba916565b610a84565b5060019392505050565b600654600160a060020a0316331461072657600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60025460ff1690565b60075490565b336000818152600460209081526040808320600160a060020a038716845290915281205490916106a9918590610700908663ffffffff610bbe16565b600654600160a060020a031633146107b757600080fd5b600160a060020a03821615156107cc57600080fd5b6007546107e7826107db6106b2565b9063ffffffff610bbe16565b11156107f257600080fd5b600554610805908263ffffffff610bbe16565b600555600160a060020a038216600090815260036020526040902054610831908263ffffffff610bbe16565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60005b82518110156109045782516000908490839081106108a657fe5b90602001906020020151600160a060020a031614156108c4576108fc565b6108fc83828151811015156108d557fe5b9060200190602002015183838151811015156108ed57fe5b906020019060200201516107a0565b60010161088c565b505050565b600160a060020a031660009081526003602052604090205490565b60005b825181101561090457825160009084908390811061094157fe5b90602001906020020151600160a060020a0316141561095f57610999565b610997838281518110151561097057fe5b90602001906020020151838381518110151561098857fe5b90602001906020020151610a4c565b505b600101610927565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106925780601f1061066757610100808354040283529160200191610692565b600654600160a060020a031690565b336000818152600460209081526040808320600160a060020a038716845290915281205490916106a9918590610700908663ffffffff610ba916565b60006106a9338484610ada565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600160a060020a0382161515610a9957600080fd5b600160a060020a0383161515610aae57600080fd5b600160a060020a0392831660009081526004602090815260408083209490951682529290925291902055565b600160a060020a0382161515610aef57600080fd5b600160a060020a038316600090815260036020526040902054610b18908263ffffffff610ba916565b600160a060020a038085166000908152600360205260408082209390935590841681522054610b4d908263ffffffff610bbe16565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610bb857600080fd5b50900390565b600082820183811015610bd057600080fd5b939250505056fea165627a7a723058200ecffb66c4c4bf3f724d9c294da6bd7ac5f93cfaac1b19f61c255f127a159fe80029000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b0000000000000000000000000000000000000000006b88921f0410abc2000000000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b0000000000000000000000000000000000000000006b88921f0410abc2000000000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610128576000357c01000000000000000000000000000000000000000000000000000000009004806340c10f19116100bf57806395d89b411161008e57806395d89b41146105545780639bac6e8d1461055c578063a457c2d714610580578063a9059cbb146105ac578063dd62ed3e146105d857610128565b806340c10f19146102b457806368573107146102e057806370a082311461040757806388d695b21461042d57610128565b80632c4d4d18116100fb5780632c4d4d181461023a578063313ce56714610262578063355274ea14610280578063395093511461028857610128565b806306fdde031461012d578063095ea7b3146101aa57806318160ddd146101ea57806323b872dd14610204575b600080fd5b610135610606565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016f578181015183820152602001610157565b50505050905090810190601f16801561019c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101d6600480360360408110156101c057600080fd5b50600160a060020a03813516906020013561069c565b604080519115158252519081900360200190f35b6101f26106b2565b60408051918252519081900360200190f35b6101d66004803603606081101561021a57600080fd5b50600160a060020a038135811691602081013590911690604001356106b8565b6102606004803603602081101561025057600080fd5b5035600160a060020a031661070f565b005b61026a610755565b6040805160ff9092168252519081900360200190f35b6101f261075e565b6101d66004803603604081101561029e57600080fd5b50600160a060020a038135169060200135610764565b610260600480360360408110156102ca57600080fd5b50600160a060020a0381351690602001356107a0565b610260600480360360408110156102f657600080fd5b81019060208101813564010000000081111561031157600080fd5b82018360208201111561032357600080fd5b8035906020019184602083028401116401000000008311171561034557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561039557600080fd5b8201836020820111156103a757600080fd5b803590602001918460208302840111640100000000831117156103c957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610889945050505050565b6101f26004803603602081101561041d57600080fd5b5035600160a060020a0316610909565b6102606004803603604081101561044357600080fd5b81019060208101813564010000000081111561045e57600080fd5b82018360208201111561047057600080fd5b8035906020019184602083028401116401000000008311171561049257600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156104e257600080fd5b8201836020820111156104f457600080fd5b8035906020019184602083028401116401000000008311171561051657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610924945050505050565b6101356109a1565b610564610a01565b60408051600160a060020a039092168252519081900360200190f35b6101d66004803603604081101561059657600080fd5b50600160a060020a038135169060200135610a10565b6101d6600480360360408110156105c257600080fd5b50600160a060020a038135169060200135610a4c565b6101f2600480360360408110156105ee57600080fd5b50600160a060020a0381358116916020013516610a59565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106925780601f1061066757610100808354040283529160200191610692565b820191906000526020600020905b81548152906001019060200180831161067557829003601f168201915b5050505050905090565b60006106a9338484610a84565b50600192915050565b60055490565b60006106c5848484610ada565b600160a060020a038416600090815260046020908152604080832033808552925290912054610705918691610700908663ffffffff610ba916565b610a84565b5060019392505050565b600654600160a060020a0316331461072657600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60025460ff1690565b60075490565b336000818152600460209081526040808320600160a060020a038716845290915281205490916106a9918590610700908663ffffffff610bbe16565b600654600160a060020a031633146107b757600080fd5b600160a060020a03821615156107cc57600080fd5b6007546107e7826107db6106b2565b9063ffffffff610bbe16565b11156107f257600080fd5b600554610805908263ffffffff610bbe16565b600555600160a060020a038216600090815260036020526040902054610831908263ffffffff610bbe16565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60005b82518110156109045782516000908490839081106108a657fe5b90602001906020020151600160a060020a031614156108c4576108fc565b6108fc83828151811015156108d557fe5b9060200190602002015183838151811015156108ed57fe5b906020019060200201516107a0565b60010161088c565b505050565b600160a060020a031660009081526003602052604090205490565b60005b825181101561090457825160009084908390811061094157fe5b90602001906020020151600160a060020a0316141561095f57610999565b610997838281518110151561097057fe5b90602001906020020151838381518110151561098857fe5b90602001906020020151610a4c565b505b600101610927565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156106925780601f1061066757610100808354040283529160200191610692565b600654600160a060020a031690565b336000818152600460209081526040808320600160a060020a038716845290915281205490916106a9918590610700908663ffffffff610ba916565b60006106a9338484610ada565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b600160a060020a0382161515610a9957600080fd5b600160a060020a0383161515610aae57600080fd5b600160a060020a0392831660009081526004602090815260408083209490951682529290925291902055565b600160a060020a0382161515610aef57600080fd5b600160a060020a038316600090815260036020526040902054610b18908263ffffffff610ba916565b600160a060020a038085166000908152600360205260408082209390935590841681522054610b4d908263ffffffff610bbe16565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610bb857600080fd5b50900390565b600082820183811015610bd057600080fd5b939250505056fea165627a7a723058200ecffb66c4c4bf3f724d9c294da6bd7ac5f93cfaac1b19f61c255f127a159fe80029

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

000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b0000000000000000000000000000000000000000006b88921f0410abc2000000000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b0000000000000000000000000000000000000000006b88921f0410abc2000000000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b

-----Decoded View---------------
Arg [0] : masterAccount (address): 0xbaCaa9db707a9C4168Bc354B659aD02b75fbF34b
Arg [1] : premined (uint256): 130000000000000000000000000
Arg [2] : minterAccount (address): 0xbaCaa9db707a9C4168Bc354B659aD02b75fbF34b

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b
Arg [1] : 0000000000000000000000000000000000000000006b88921f0410abc2000000
Arg [2] : 000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b
Arg [3] : 000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b
Arg [4] : 0000000000000000000000000000000000000000006b88921f0410abc2000000
Arg [5] : 000000000000000000000000bacaa9db707a9c4168bc354b659ad02b75fbf34b


Swarm Source

bzzr://0ecffb66c4c4bf3f724d9c294da6bd7ac5f93cfaac1b19f61c255f127a159fe8
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.