ETH Price: $2,894.91 (-10.68%)
Gas: 20 Gwei

Token

DRAGON (DRAGON)
 

Overview

Max Total Supply

100,000,000,000 DRAGON

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
540,496,759.114368216002272081 DRAGON

Value
$0.00
0x2978903810bfb20f8528a2239e2bad3aad2a5f45
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:
DRAGON

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-07-15
*/

/** 
https://t.me/DragonERC20
 *Submitted for verification at Etherscan.io on 2022-07-14
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint256) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");


        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }



    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

}





pragma solidity ^0.8.0;




contract DRAGON is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260405162000dcb38038062000dcb833981016040819052620000269162000272565b858584868584600490805190602001906200004392919062000115565b5083516200005990600590602087019062000115565b506200006782600a62000363565b6200007390846200042e565b60028190556001600160a01b038216600081815260208181526040808320859055600387905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f1935050505015801562000108573d6000803e3d6000fd5b50505050505050620004d2565b828054620001239062000450565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600082601f830112620001cd57600080fd5b81516001600160401b0380821115620001ea57620001ea620004a3565b604051601f8301601f19908116603f01168101908282118183101715620002155762000215620004a3565b816040528381526020925086838588010111156200023257600080fd5b600091505b8382101562000256578582018301518183018401529082019062000237565b83821115620002685760008385830101525b9695505050505050565b60008060008060008060c087890312156200028c57600080fd5b86516001600160401b0380821115620002a457600080fd5b620002b28a838b01620001bb565b97506020890151915080821115620002c957600080fd5b50620002d889828a01620001bb565b95505060408701519350606087015192506080870151620002f981620004b9565b60a08801519092506200030c81620004b9565b809150509295509295509295565b600181815b808511156200035b5781600019048211156200033f576200033f6200048d565b808516156200034d57918102915b93841c93908002906200031f565b509250929050565b600062000371838362000378565b9392505050565b600082620003895750600162000428565b81620003985750600062000428565b8160018114620003b15760028114620003bc57620003dc565b600191505062000428565b60ff841115620003d057620003d06200048d565b50506001821b62000428565b5060208310610133831016604e8410600b841016171562000401575081810a62000428565b6200040d83836200031a565b80600019048211156200042457620004246200048d565b0290505b92915050565b60008160001904831182151516156200044b576200044b6200048d565b500290565b600181811c908216806200046557607f821691505b602082108114156200048757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620004cf57600080fd5b50565b6108e980620004e26000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c391906107de565b60405180910390f35b6100df6100da3660046107b4565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610778565b610267565b6003546100f3565b6100df61012a3660046107b4565b61031d565b6100f361013d366004610723565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e3660046107b4565b610363565b6100df6101813660046107b4565b6103fe565b6100f3610194366004610745565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610862565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610862565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d868561084b565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d908690610833565b6060600580546101ce90610862565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d868561084b565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b610677828261084b565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad908490610833565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b80356001600160a01b038116811461071e57600080fd5b919050565b60006020828403121561073557600080fd5b61073e82610707565b9392505050565b6000806040838503121561075857600080fd5b61076183610707565b915061076f60208401610707565b90509250929050565b60008060006060848603121561078d57600080fd5b61079684610707565b92506107a460208501610707565b9150604084013590509250925092565b600080604083850312156107c757600080fd5b6107d083610707565b946020939093013593505050565b600060208083528351808285015260005b8181101561080b578581018301518582016040015282016107ef565b8181111561081d576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156108465761084661089d565b500190565b60008282101561085d5761085d61089d565b500390565b600181811c9082168061087657607f821691505b6020821081141561089757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201cda901d421387fab6702548d8b880fca3aa738caf11c89305a63ee66730ee5a64736f6c6343000805003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000f281e33cdad089b693eb0a75150aced10b9db3c6000000000000000000000000f281e33cdad089b693eb0a75150aced10b9db3c60000000000000000000000000000000000000000000000000000000000000006445241474f4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006445241474f4e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c391906107de565b60405180910390f35b6100df6100da3660046107b4565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610778565b610267565b6003546100f3565b6100df61012a3660046107b4565b61031d565b6100f361013d366004610723565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e3660046107b4565b610363565b6100df6101813660046107b4565b6103fe565b6100f3610194366004610745565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610862565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610862565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d868561084b565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d908690610833565b6060600580546101ce90610862565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d868561084b565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b610677828261084b565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad908490610833565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b80356001600160a01b038116811461071e57600080fd5b919050565b60006020828403121561073557600080fd5b61073e82610707565b9392505050565b6000806040838503121561075857600080fd5b61076183610707565b915061076f60208401610707565b90509250929050565b60008060006060848603121561078d57600080fd5b61079684610707565b92506107a460208501610707565b9150604084013590509250925092565b600080604083850312156107c757600080fd5b6107d083610707565b946020939093013593505050565b600060208083528351808285015260005b8181101561080b578581018301518582016040015282016107ef565b8181111561081d576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156108465761084661089d565b500190565b60008282101561085d5761085d61089d565b500390565b600181811c9082168061087657607f821691505b6020821081141561089757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201cda901d421387fab6702548d8b880fca3aa738caf11c89305a63ee66730ee5a64736f6c63430008050033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000174876e800000000000000000000000000f281e33cdad089b693eb0a75150aced10b9db3c6000000000000000000000000f281e33cdad089b693eb0a75150aced10b9db3c60000000000000000000000000000000000000000000000000000000000000006445241474f4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006445241474f4e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): DRAGON
Arg [1] : symbol_ (string): DRAGON
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 100000000000
Arg [4] : tokenOwner_ (address): 0xF281E33CDAD089b693EB0A75150aCED10B9DB3c6
Arg [5] : feeReceiver_ (address): 0xF281E33CDAD089b693EB0A75150aCED10B9DB3c6

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000174876e800
Arg [4] : 000000000000000000000000f281e33cdad089b693eb0a75150aced10b9db3c6
Arg [5] : 000000000000000000000000f281e33cdad089b693eb0a75150aced10b9db3c6
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 445241474f4e0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 445241474f4e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10944:375:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5227:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7403:169;;;;;;:::i;:::-;;:::i;:::-;;;1405:14:1;;1398:22;1380:41;;1368:2;1353:18;7403:169:0;1335:92:1;6356:108:0;6444:12;;6356:108;;;5020:25:1;;;5008:2;4993:18;6356:108:0;4975:76:1;8054:422:0;;;;;;:::i;:::-;;:::i;6189:102::-;6274:9;;6189:102;;8885:215;;;;;;:::i;:::-;;:::i;6527:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6628:18:0;6601:7;6628:18;;;;;;;;;;;;6527:127;5446:104;;;:::i;9603:377::-;;;;;;:::i;:::-;;:::i;6867:175::-;;;;;;:::i;:::-;;:::i;7105:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7221:18:0;;;7194:7;7221:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7105:151;5227:100;5281:13;5314:5;5307:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5227:100;:::o;7403:169::-;7486:4;7503:39;3795:10;7526:7;7535:6;7503:8;:39::i;:::-;-1:-1:-1;7560:4:0;7403:169;;;;:::o;8054:422::-;8160:4;8177:36;8187:6;8195:9;8206:6;8177:9;:36::i;:::-;-1:-1:-1;;;;;8253:19:0;;8226:24;8253:19;;;:11;:19;;;;;;;;3795:10;8253:33;;;;;;;;8305:26;;;;8297:79;;;;-1:-1:-1;;;8297:79:0;;3450:2:1;8297:79:0;;;3432:21:1;3489:2;3469:18;;;3462:30;3528:34;3508:18;;;3501:62;-1:-1:-1;;;3579:18:1;;;3572:38;3627:19;;8297:79:0;;;;;;;;;8387:57;8396:6;3795:10;8418:25;8437:6;8418:16;:25;:::i;:::-;8387:8;:57::i;:::-;-1:-1:-1;8464:4:0;;8054:422;-1:-1:-1;;;;8054:422:0:o;8885:215::-;3795:10;8973:4;9022:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9022:34:0;;;;;;;;;;8973:4;;8990:80;;9013:7;;9022:47;;9059:10;;9022:47;:::i;5446:104::-;5502:13;5535:7;5528:14;;;;;:::i;9603:377::-;3795:10;9696:4;9740:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9740:34:0;;;;;;;;;;9793:35;;;;9785:85;;;;-1:-1:-1;;;9785:85:0;;4670:2:1;9785:85:0;;;4652:21:1;4709:2;4689:18;;;4682:30;4748:34;4728:18;;;4721:62;-1:-1:-1;;;4799:18:1;;;4792:35;4844:19;;9785:85:0;4642:227:1;9785:85:0;9881:67;3795:10;9904:7;9913:34;9932:15;9913:16;:34;:::i;9881:67::-;-1:-1:-1;9968:4:0;;9603:377;-1:-1:-1;;;9603:377:0:o;6867:175::-;6953:4;6970:42;3795:10;6994:9;7005:6;6970:9;:42::i;10548:346::-;-1:-1:-1;;;;;10650:19:0;;10642:68;;;;-1:-1:-1;;;10642:68:0;;4265:2:1;10642:68:0;;;4247:21:1;4304:2;4284:18;;;4277:30;4343:34;4323:18;;;4316:62;-1:-1:-1;;;4394:18:1;;;4387:34;4438:19;;10642:68:0;4237:226:1;10642:68:0;-1:-1:-1;;;;;10729:21:0;;10721:68;;;;-1:-1:-1;;;10721:68:0;;2640:2:1;10721:68:0;;;2622:21:1;2679:2;2659:18;;;2652:30;2718:34;2698:18;;;2691:62;-1:-1:-1;;;2769:18:1;;;2762:32;2811:19;;10721:68:0;2612:224:1;10721:68:0;-1:-1:-1;;;;;10802:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10854:32;;5020:25:1;;;10854:32:0;;4993:18:1;10854:32:0;;;;;;;10548:346;;;:::o;9990:546::-;-1:-1:-1;;;;;10096:20:0;;10088:70;;;;-1:-1:-1;;;10088:70:0;;3859:2:1;10088:70:0;;;3841:21:1;3898:2;3878:18;;;3871:30;3937:34;3917:18;;;3910:62;-1:-1:-1;;;3988:18:1;;;3981:35;4033:19;;10088:70:0;3831:227:1;10088:70:0;-1:-1:-1;;;;;10177:23:0;;10169:71;;;;-1:-1:-1;;;10169:71:0;;2236:2:1;10169:71:0;;;2218:21:1;2275:2;2255:18;;;2248:30;2314:34;2294:18;;;2287:62;-1:-1:-1;;;2365:18:1;;;2358:33;2408:19;;10169:71:0;2208:225:1;10169:71:0;-1:-1:-1;;;;;10279:17:0;;10255:21;10279:17;;;;;;;;;;;10315:23;;;;10307:74;;;;-1:-1:-1;;;10307:74:0;;3043:2:1;10307:74:0;;;3025:21:1;3082:2;3062:18;;;3055:30;3121:34;3101:18;;;3094:62;-1:-1:-1;;;3172:18:1;;;3165:36;3218:19;;10307:74:0;3015:228:1;10307:74:0;10412:22;10428:6;10412:13;:22;:::i;:::-;-1:-1:-1;;;;;10392:17:0;;;:9;:17;;;;;;;;;;;:42;;;;10445:20;;;;;;;;:30;;10469:6;;10392:9;10445:30;;10469:6;;10445:30;:::i;:::-;;;;;;;;10510:9;-1:-1:-1;;;;;10493:35:0;10502:6;-1:-1:-1;;;;;10493:35:0;;10521:6;10493:35;;;;5020:25:1;;5008:2;4993:18;;4975:76;10493:35:0;;;;;;;;10077:459;9990:546;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1432:597::-;1544:4;1573:2;1602;1591:9;1584:21;1634:6;1628:13;1677:6;1672:2;1661:9;1657:18;1650:34;1702:1;1712:140;1726:6;1723:1;1720:13;1712:140;;;1821:14;;;1817:23;;1811:30;1787:17;;;1806:2;1783:26;1776:66;1741:10;;1712:140;;;1870:6;1867:1;1864:13;1861:2;;;1940:1;1935:2;1926:6;1915:9;1911:22;1907:31;1900:42;1861:2;-1:-1:-1;2013:2:1;1992:15;-1:-1:-1;;1988:29:1;1973:45;;;;2020:2;1969:54;;1553:476;-1:-1:-1;;;1553:476:1:o;5056:128::-;5096:3;5127:1;5123:6;5120:1;5117:13;5114:2;;;5133:18;;:::i;:::-;-1:-1:-1;5169:9:1;;5104:80::o;5189:125::-;5229:4;5257:1;5254;5251:8;5248:2;;;5262:18;;:::i;:::-;-1:-1:-1;5299:9:1;;5238:76::o;5319:380::-;5398:1;5394:12;;;;5441;;;5462:2;;5516:4;5508:6;5504:17;5494:27;;5462:2;5569;5561:6;5558:14;5538:18;5535:38;5532:2;;;5615:10;5610:3;5606:20;5603:1;5596:31;5650:4;5647:1;5640:15;5678:4;5675:1;5668:15;5532:2;;5374:325;;;:::o;5704:127::-;5765:10;5760:3;5756:20;5753:1;5746:31;5796:4;5793:1;5786:15;5820:4;5817:1;5810:15

Swarm Source

ipfs://1cda901d421387fab6702548d8b880fca3aa738caf11c89305a63ee66730ee5a
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.