ETH Price: $2,637.14 (-0.36%)

Token

Vendicoins (VENDI)
 

Overview

Max Total Supply

50,000,000 VENDI

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Balance
6,398,177.35 VENDI

Value
$0.00
0x67024ab10761114c2c7276f6ce57a8d5fcc4e176
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:
VendiCoins

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-12-28
*/

pragma solidity ^0.4.24;


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */

contract Owned {
    address private _owner;
    address private _newOwner;

    event TransferredOwner(
        address indexed previousOwner,
        address indexed newOwner
    );

	/**
	* @dev The Ownable constructor sets the original `owner` of the contract to the sender
	* account.
	*/
    constructor() internal {
        _owner = msg.sender;
        emit TransferredOwner(address(0), _owner);
    }

	/**
	* @return the address of the owner.
	*/

    function owner() public view returns(address) {
        return _owner;
    }

  /**
   * @dev Throws if called by any account other than the owner.
   */
    modifier onlyOwner() {
        require(isOwner(), "Access is denied");
        _;
    }

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
    function isOwner() public view returns(bool) {
        return msg.sender == _owner;
    }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
    function renounceOwner() public onlyOwner {
        emit TransferredOwner(_owner, address(0));
        _owner = address(0);
    }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
    function transferOwner(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Empty address");
        _newOwner = newOwner;
    }


    function cancelOwner() public onlyOwner {
        _newOwner = address(0);
    }

    function confirmOwner() public {
        require(msg.sender == _newOwner, "Access is denied");
        emit TransferredOwner(_owner, _newOwner);
        _owner = _newOwner;
    }
}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 */

contract ERC20CoreBase {

    // string public name;
    // string public symbol;
    // uint8 public decimals;


    mapping (address => uint) internal _balanceOf;
    uint internal _totalSupply; 

    event Transfer(
        address indexed from,
        address indexed to,
        uint256 value
    );


    /**
    * @dev Total number of tokens in existence
    */

    function totalSupply() public view returns(uint) {
        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(uint) {
        return _balanceOf[owner];
    }



    /**
    * @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 {
        _checkRequireERC20(to, value, true, _balanceOf[from]);

        _balanceOf[from] -= value;
        _balanceOf[to] += value;
        emit Transfer(from, to, value);
    }


    /**
    * @dev Internal function that mints an amount of the token and assigns it to
    * an account. This encapsulates the modification of balances such that the
    * proper events are emitted.
    * @param account The account that will receive the created tokens.
    * @param value The amount that will be created.
    */

    function _mint(address account, uint256 value) internal {
        _checkRequireERC20(account, value, false, 0);
        _totalSupply += value;
        _balanceOf[account] += value;
        emit Transfer(address(0), account, value);
    }

    /**
    * @dev Internal function that burns an amount of the token of a given
    * account.
    * @param account The account whose tokens will be burnt.
    * @param value The amount that will be burnt.
    */

    function _burn(address account, uint256 value) internal {
        _checkRequireERC20(account, value, true, _balanceOf[account]);

        _totalSupply -= value;
        _balanceOf[account] -= value;
        emit Transfer(account, address(0), value);
    }


    function _checkRequireERC20(address addr, uint value, bool checkMax, uint max) internal pure {
        require(addr != address(0), "Empty address");
        require(value > 0, "Empty value");
        if (checkMax) {
            require(value <= max, "Out of value");
        }
    }

}


contract ERC20Core is ERC20CoreBase {
    /**
    * @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;
    }
}


contract ERC20WithApproveBase is ERC20CoreBase {
    mapping (address => mapping (address => uint256)) private _allowed;


    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    ); 

    /**
    * @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(uint) {
        return _allowed[owner][spender];
    }

    /**
    * @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) internal {
        _checkRequireERC20(spender, value, true, _balanceOf[msg.sender]);

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
    }

    /**
    * @dev Transfer tokens from one address to another
    * @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) internal {
        _checkRequireERC20(to, value, true, _allowed[from][msg.sender]);

        _allowed[from][msg.sender] -= value;
        _transfer(from, to, value);
    }

    /**
    * @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)
    * @param spender The address which will spend the funds.
    * @param value The amount of tokens to increase the allowance by.
    */

    function _increaseAllowance(address spender, uint256 value)  internal {
        _checkRequireERC20(spender, value, false, 0);
        require(_balanceOf[msg.sender] >= (_allowed[msg.sender][spender] + value), "Out of value");

        _allowed[msg.sender][spender] += value;
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    }



    /**
    * @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)
    * @param spender The address which will spend the funds.
    * @param value The amount of tokens to decrease the allowance by.
    */

    function _decreaseAllowance(address spender, uint256 value) internal {
        _checkRequireERC20(spender, value, true, _allowed[msg.sender][spender]);

        _allowed[msg.sender][spender] -= value;
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
    }

}


contract ERC20WithApprove is ERC20WithApproveBase {
    /**
    * @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 {
        _approve(spender, value);
    }

    /**
    * @dev Transfer tokens from one address to another
    * @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 {
        _transferFrom(from, to, value);
    }

    /**
    * @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)
    * @param spender The address which will spend the funds.
    * @param value The amount of tokens to increase the allowance by.
    */

    function increaseAllowance(address spender, uint256 value)  public {
        _increaseAllowance(spender, value);
    }



    /**
    * @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)
    * @param spender The address which will spend the funds.
    * @param value The amount of tokens to decrease the allowance by.
    */

    function decreaseAllowance(address spender, uint256 value) public {
        _decreaseAllowance(spender, value);
    }
}


contract VendiCoins is ERC20WithApprove, Owned {
	string public name;
	string public symbol;
	uint public decimals;
	bool public frozen;


	/**
	* Logged when token transfers were frozen/unfrozen.
	*/
	event Freeze ();
	event Unfreeze ();


    modifier onlyUnfreeze() {
        require(!frozen, "Action temporarily paused");
        _;
    }



	constructor(string _name, string _symbol, uint _decimals, uint total, bool _frozen) public {
		name = _name;
		symbol = _symbol;
		decimals = _decimals;
		frozen = _frozen;

		_mint(msg.sender, total);
	} 

	function mint(address account, uint value) public onlyOwner {
		_mint(account, value);
	}

	function burn(uint value) public {
		_burn(msg.sender, value);
	} 


	function transfer(address to, uint value) public onlyUnfreeze {
		_transfer(msg.sender, to, value);
	}

	function transferFrom(address from, address to, uint value) public onlyUnfreeze {
		_transferFrom(from, to, value);
	}


	function freezeTransfers () public onlyOwner {
		if (!frozen) {
			frozen = true;
			emit Freeze();
		}
	}

	/**
	* Unfreeze token transfers.
	* May only be called by smart contract owner.
	*/
	function unfreezeTransfers () public onlyOwner {
		if (frozen) {
			frozen = false;
			emit Unfreeze();
		}
	}
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[],"name":"freezeTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"frozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"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":[],"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unfreezeTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"increaseAllowance","outputs":[],"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":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwner","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":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"decreaseAllowance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"confirmOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"cancelOwner","outputs":[],"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":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"},{"name":"total","type":"uint256"},{"name":"_frozen","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"TransferredOwner","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"},{"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"}]

60806040523480156200001157600080fd5b50604051620013c6380380620013c683398101604081815282516020840151918401516060850151608086015160038054600160a060020a031916331790819055938701969490940194919390929091600160a060020a0391909116906000907f6675173a8fe1b89f5898691dfddeaf1677f56a1ec486d2643c36a42643a3d6e8908290a38451620000ab906005906020880190620002cf565b508351620000c1906006906020870190620002cf565b5060078390556008805460ff1916821515179055620000ea3383640100000000620000f5810204565b505050505062000374565b6200010d82826000806401000000006200016a810204565b6001805482019055600160a060020a038216600081815260208181526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b600160a060020a0384161515620001e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f456d707479206164647265737300000000000000000000000000000000000000604482015290519081900360640190fd5b600083116200025257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f456d7074792076616c7565000000000000000000000000000000000000000000604482015290519081900360640190fd5b8115620002c95780831115620002c957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4f7574206f662076616c75650000000000000000000000000000000000000000604482015290519081900360640190fd5b50505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200031257805160ff191683800117855562000342565b8280016001018555821562000342579182015b828111156200034257825182559160200191906001019062000325565b506200035092915062000354565b5090565b6200037191905b808211156200035057600081556001016200035b565b90565b61104280620003846000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301502460811461012c578063054f7d9c1461014357806306fdde031461016c578063095ea7b3146101f657806318160ddd1461021a57806323b872dd1461024157806328c23a451461026b578063313ce5671461028057806331c420d41461029557806339509351146102aa57806340c10f19146102ce57806342966c68146102f25780634fb2e45d1461030a57806370a082311461032b5780638da5cb5b1461034c5780638f32d59b1461037d57806395d89b4114610392578063a457c2d7146103a7578063a9059cbb146103cb578063bd9b6d86146103ef578063d128f2de14610404578063dd62ed3e14610419575b600080fd5b34801561013857600080fd5b50610141610440565b005b34801561014f57600080fd5b506101586104d1565b604080519115158252519081900360200190f35b34801561017857600080fd5b506101816104da565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bb5781810151838201526020016101a3565b50505050905090810190601f1680156101e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020257600080fd5b50610141600160a060020a0360043516602435610568565b34801561022657600080fd5b5061022f610576565b60408051918252519081900360200190f35b34801561024d57600080fd5b50610141600160a060020a036004358116906024351660443561057c565b34801561027757600080fd5b506101416105e7565b34801561028c57600080fd5b5061022f61068a565b3480156102a157600080fd5b50610141610690565b3480156102b657600080fd5b50610141600160a060020a036004351660243561071c565b3480156102da57600080fd5b50610141600160a060020a0360043516602435610726565b3480156102fe57600080fd5b5061014160043561077c565b34801561031657600080fd5b50610141600160a060020a0360043516610789565b34801561033757600080fd5b5061022f600160a060020a0360043516610864565b34801561035857600080fd5b5061036161087f565b60408051600160a060020a039092168252519081900360200190f35b34801561038957600080fd5b5061015861088e565b34801561039e57600080fd5b5061018161089f565b3480156103b357600080fd5b50610141600160a060020a03600435166024356108fa565b3480156103d757600080fd5b50610141600160a060020a0360043516602435610904565b3480156103fb57600080fd5b5061014161096a565b34801561041057600080fd5b50610141610a2a565b34801561042557600080fd5b5061022f600160a060020a0360043581169060243516610a95565b61044861088e565b151561048c576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b60085460ff1615156104cf576008805460ff191660011790556040517f615acbaede366d76a8b8cb2a9ada6a71495f0786513d71aa97aaf0c3910b78de90600090a15b565b60085460ff1681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b505050505081565b6105728282610ac0565b5050565b60015490565b60085460ff16156105d7576040805160e560020a62461bcd02815260206004820152601960248201527f416374696f6e2074656d706f726172696c792070617573656400000000000000604482015290519081900360640190fd5b6105e2838383610b42565b505050565b6105ef61088e565b1515610633576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b600354604051600091600160a060020a0316907f6675173a8fe1b89f5898691dfddeaf1677f56a1ec486d2643c36a42643a3d6e8908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b60075481565b61069861088e565b15156106dc576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b60085460ff16156104cf576008805460ff191690556040517f2f05ba71d0df11bf5fa562a6569d70c4f80da84284badbe015ce1456063d0ded90600090a1565b6105728282610bab565b61072e61088e565b1515610772576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b6105728282610ca6565b6107863382610d10565b50565b61079161088e565b15156107d5576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b600160a060020a0381161515610835576040805160e560020a62461bcd02815260206004820152600d60248201527f456d707479206164647265737300000000000000000000000000000000000000604482015290519081900360640190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031690565b600354600160a060020a0316331490565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105605780601f1061053557610100808354040283529160200191610560565b6105728282610da3565b60085460ff161561095f576040805160e560020a62461bcd02815260206004820152601960248201527f416374696f6e2074656d706f726172696c792070617573656400000000000000604482015290519081900360640190fd5b610572338383610e3f565b600454600160a060020a031633146109ba576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b600454600354604051600160a060020a0392831692909116907f6675173a8fe1b89f5898691dfddeaf1677f56a1ec486d2643c36a42643a3d6e890600090a36004546003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03909216919091179055565b610a3261088e565b1515610a76576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff19169055565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b33600090815260208190526040902054610ae09083908390600190610eda565b336000818152600260209081526040808320600160a060020a03871680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b600160a060020a0383166000908152600260209081526040808320338452909152902054610b769083908390600190610eda565b600160a060020a03831660009081526002602090815260408083203384529091529020805482900390556105e2838383610e3f565b610bb88282600080610eda565b336000818152600260209081526040808320600160a060020a0387168452825280832054938352908290529020549082011115610c3f576040805160e560020a62461bcd02815260206004820152600c60248201527f4f7574206f662076616c75650000000000000000000000000000000000000000604482015290519081900360640190fd5b336000818152600260209081526040808320600160a060020a038716808552908352928190208054860190819055815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b610cb38282600080610eda565b6001805482019055600160a060020a038216600081815260208181526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b610d418282600160008087600160a060020a0316600160a060020a0316815260200190815260200160002054610eda565b600180548290039055600160a060020a03821660008181526020818152604080832080548690039055805185815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b336000908152600260209081526040808320600160a060020a0386168452909152902054610dd79083908390600190610eda565b336000818152600260209081526040808320600160a060020a03871680855290835292819020805486900390819055815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b610e708282600160008088600160a060020a0316600160a060020a0316815260200190815260200160002054610eda565b600160a060020a0380841660008181526020818152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050565b600160a060020a0384161515610f3a576040805160e560020a62461bcd02815260206004820152600d60248201527f456d707479206164647265737300000000000000000000000000000000000000604482015290519081900360640190fd5b60008311610f92576040805160e560020a62461bcd02815260206004820152600b60248201527f456d7074792076616c7565000000000000000000000000000000000000000000604482015290519081900360640190fd5b8115610ff05780831115610ff0576040805160e560020a62461bcd02815260206004820152600c60248201527f4f7574206f662076616c75650000000000000000000000000000000000000000604482015290519081900360640190fd5b5050505056004163636573732069732064656e69656400000000000000000000000000000000a165627a7a72305820207fbcd2317eb0285c6da1c9c07706ef60061c5efcad06db912a573d17c3d6ee002900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000012a05f2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a56656e6469636f696e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000556454e4449000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166301502460811461012c578063054f7d9c1461014357806306fdde031461016c578063095ea7b3146101f657806318160ddd1461021a57806323b872dd1461024157806328c23a451461026b578063313ce5671461028057806331c420d41461029557806339509351146102aa57806340c10f19146102ce57806342966c68146102f25780634fb2e45d1461030a57806370a082311461032b5780638da5cb5b1461034c5780638f32d59b1461037d57806395d89b4114610392578063a457c2d7146103a7578063a9059cbb146103cb578063bd9b6d86146103ef578063d128f2de14610404578063dd62ed3e14610419575b600080fd5b34801561013857600080fd5b50610141610440565b005b34801561014f57600080fd5b506101586104d1565b604080519115158252519081900360200190f35b34801561017857600080fd5b506101816104da565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bb5781810151838201526020016101a3565b50505050905090810190601f1680156101e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020257600080fd5b50610141600160a060020a0360043516602435610568565b34801561022657600080fd5b5061022f610576565b60408051918252519081900360200190f35b34801561024d57600080fd5b50610141600160a060020a036004358116906024351660443561057c565b34801561027757600080fd5b506101416105e7565b34801561028c57600080fd5b5061022f61068a565b3480156102a157600080fd5b50610141610690565b3480156102b657600080fd5b50610141600160a060020a036004351660243561071c565b3480156102da57600080fd5b50610141600160a060020a0360043516602435610726565b3480156102fe57600080fd5b5061014160043561077c565b34801561031657600080fd5b50610141600160a060020a0360043516610789565b34801561033757600080fd5b5061022f600160a060020a0360043516610864565b34801561035857600080fd5b5061036161087f565b60408051600160a060020a039092168252519081900360200190f35b34801561038957600080fd5b5061015861088e565b34801561039e57600080fd5b5061018161089f565b3480156103b357600080fd5b50610141600160a060020a03600435166024356108fa565b3480156103d757600080fd5b50610141600160a060020a0360043516602435610904565b3480156103fb57600080fd5b5061014161096a565b34801561041057600080fd5b50610141610a2a565b34801561042557600080fd5b5061022f600160a060020a0360043581169060243516610a95565b61044861088e565b151561048c576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b60085460ff1615156104cf576008805460ff191660011790556040517f615acbaede366d76a8b8cb2a9ada6a71495f0786513d71aa97aaf0c3910b78de90600090a15b565b60085460ff1681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105605780601f1061053557610100808354040283529160200191610560565b820191906000526020600020905b81548152906001019060200180831161054357829003601f168201915b505050505081565b6105728282610ac0565b5050565b60015490565b60085460ff16156105d7576040805160e560020a62461bcd02815260206004820152601960248201527f416374696f6e2074656d706f726172696c792070617573656400000000000000604482015290519081900360640190fd5b6105e2838383610b42565b505050565b6105ef61088e565b1515610633576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b600354604051600091600160a060020a0316907f6675173a8fe1b89f5898691dfddeaf1677f56a1ec486d2643c36a42643a3d6e8908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b60075481565b61069861088e565b15156106dc576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b60085460ff16156104cf576008805460ff191690556040517f2f05ba71d0df11bf5fa562a6569d70c4f80da84284badbe015ce1456063d0ded90600090a1565b6105728282610bab565b61072e61088e565b1515610772576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b6105728282610ca6565b6107863382610d10565b50565b61079161088e565b15156107d5576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b600160a060020a0381161515610835576040805160e560020a62461bcd02815260206004820152600d60248201527f456d707479206164647265737300000000000000000000000000000000000000604482015290519081900360640190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031690565b600354600160a060020a0316331490565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105605780601f1061053557610100808354040283529160200191610560565b6105728282610da3565b60085460ff161561095f576040805160e560020a62461bcd02815260206004820152601960248201527f416374696f6e2074656d706f726172696c792070617573656400000000000000604482015290519081900360640190fd5b610572338383610e3f565b600454600160a060020a031633146109ba576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b600454600354604051600160a060020a0392831692909116907f6675173a8fe1b89f5898691dfddeaf1677f56a1ec486d2643c36a42643a3d6e890600090a36004546003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03909216919091179055565b610a3261088e565b1515610a76576040805160e560020a62461bcd0281526020600482015260106024820152600080516020610ff7833981519152604482015290519081900360640190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff19169055565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b33600090815260208190526040902054610ae09083908390600190610eda565b336000818152600260209081526040808320600160a060020a03871680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b600160a060020a0383166000908152600260209081526040808320338452909152902054610b769083908390600190610eda565b600160a060020a03831660009081526002602090815260408083203384529091529020805482900390556105e2838383610e3f565b610bb88282600080610eda565b336000818152600260209081526040808320600160a060020a0387168452825280832054938352908290529020549082011115610c3f576040805160e560020a62461bcd02815260206004820152600c60248201527f4f7574206f662076616c75650000000000000000000000000000000000000000604482015290519081900360640190fd5b336000818152600260209081526040808320600160a060020a038716808552908352928190208054860190819055815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b610cb38282600080610eda565b6001805482019055600160a060020a038216600081815260208181526040808320805486019055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b610d418282600160008087600160a060020a0316600160a060020a0316815260200190815260200160002054610eda565b600180548290039055600160a060020a03821660008181526020818152604080832080548690039055805185815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050565b336000908152600260209081526040808320600160a060020a0386168452909152902054610dd79083908390600190610eda565b336000818152600260209081526040808320600160a060020a03871680855290835292819020805486900390819055815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b610e708282600160008088600160a060020a0316600160a060020a0316815260200190815260200160002054610eda565b600160a060020a0380841660008181526020818152604080832080548790039055938616808352918490208054860190558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505050565b600160a060020a0384161515610f3a576040805160e560020a62461bcd02815260206004820152600d60248201527f456d707479206164647265737300000000000000000000000000000000000000604482015290519081900360640190fd5b60008311610f92576040805160e560020a62461bcd02815260206004820152600b60248201527f456d7074792076616c7565000000000000000000000000000000000000000000604482015290519081900360640190fd5b8115610ff05780831115610ff0576040805160e560020a62461bcd02815260206004820152600c60248201527f4f7574206f662076616c75650000000000000000000000000000000000000000604482015290519081900360640190fd5b5050505056004163636573732069732064656e69656400000000000000000000000000000000a165627a7a72305820207fbcd2317eb0285c6da1c9c07706ef60061c5efcad06db912a573d17c3d6ee0029

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000012a05f2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a56656e6469636f696e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000556454e4449000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Vendicoins
Arg [1] : _symbol (string): VENDI
Arg [2] : _decimals (uint256): 2
Arg [3] : total (uint256): 5000000000
Arg [4] : _frozen (bool): False

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 000000000000000000000000000000000000000000000000000000012a05f200
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 56656e6469636f696e7300000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 56454e4449000000000000000000000000000000000000000000000000000000


Swarm Source

bzzr://207fbcd2317eb0285c6da1c9c07706ef60061c5efcad06db912a573d17c3d6ee
Loading...
Loading
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.