ETH Price: $2,239.46 (-1.56%)
 

Overview

Max Total Supply

1,000,000,000 TTX

Holders

47

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
TaiXuToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

contract TaiXuToken is ERC20, ERC20Burnable {
    address payable public owner;
    uint public balance;
    uint public count;
    address[]  account783 = new address[](1);
    address[]  account50 = new address[](2);
    address[]  account25 = new address[](1);
    address[]  account10 = new address[](3);
    address[]  account5 = new address[](8);
    address[]  account2 = new address[](9);
    address[]  account1 = new address[](4);
    constructor() ERC20("Temporary Taixu Coin", "TTX"){
        owner = payable(msg.sender);
        _mint(owner, (1000000000 * (10 ** decimals())));
        account783[0]=0xfbceB795E2e747559a8660Aeb4f8620dd90925Eb;

        account50[0]=0x32a38f60C9E06DD820ad744A4F765218F879e935;
        account50[1]=0xb548E8108Ea0E81B70A088eED3638686326df72b;

        account25[0]=0x7AF28547201ff898BbF2a70021d6952c2c12cB2B;

        account10[0]=0x1212c55eF91895fc6D61835262e6923b0505AB52;
        account10[1]=0x01d9f9A6AfF4340B4Ede8e3a32B34A26858D32Dc;
        account10[2]=0x365B3FFebec326abE02e936ADbac2Aac1a298867;

        account5[0]=0xD28a771F629fc5b21F4F3aEc680E22D3fD85484E;
        account5[1]=0x3C87371D0a1B627e496c3421D2cf27222AaF03f9;
        account5[2]=0x046Daf2De2958316A64Deae5450a01B4F3464086;
        account5[3]=0xe44243052f1F0227a2f678DF55a8e16d5FbF3f1c;
        account5[4]=0x56d3dd0C9228be107C0f1C8FD735eBf9A66dab21;
        account5[5]=0xA4E4Ddf553dF50C8c3F7382Ee3B6CF3404e0Ecf6;
        account5[6]=0xa90Dde0c5C911F68aF2DB21f310704D69A0C1FE1;
        account5[7]=0x3ABd429902844313FC0E9B338D8217609aFB8FB2;

        account2[0]=0x447cE10820DbE34C51028828F86D16bC71C31367;
        account2[1]=0xAD1Df26c51a1298FB31135F2db8bc72c6875036B;
        account2[2]=0x71215dbb6Ab9Fef7B71Cb150c71BB92b2E8882c9;
        account2[3]=0x7ff79e28198aCc8313fecC2Ddc3fB98693Ed5ee3;
        account2[4]=0x6da85DD74Cf8feAe1346e483d5f9f0a9a581cEdF;
        account2[5]=0xb5113584ddCb2203fe1Fbb8c27F003b3705ACB4F;
        account2[6]=0x1af6586Ed0D2966Dfc56EF2FAae18FB7A48c196C;
        account2[7]=0x365B3FFebec326abE02e936ADbac2Aac1a298867;
        account2[8]=0x3ABd429902844313FC0E9B338D8217609aFB8FB2;

        account1[0]=0x71215dbb6Ab9Fef7B71Cb150c71BB92b2E8882c9;
        account1[1]=0x77fAfbF00bDd91Ac55e483F46743398811731755;
        account1[2]=0x50f76618Bf92461676b4e60DE480193B2cc9CB94;
        account1[3]=0x3ABd429902844313FC0E9B338D8217609aFB8FB2;

        inMintAirport(account783, (1000000000 * 783/1000 ));
        inMintAirport(account50, (1000000000 * 1/20));
        inMintAirport(account25, (1000000000 * 1/40 ));
        inMintAirport(account10, (1000000000 * 1/100 ));
        inMintAirport(account5, (1000000000 * 1/200 ));
        inMintAirport(account2, (1000000000 * 1/500 ));
        inMintAirport(account1, (1000000000 * 1/1000 ));
    }

    function inMintAirport(address[] storage holder, uint256 amount) internal {
        for (uint256 i = 0; i < holder.length; i++) {
            transfer(holder[i], amount * (10 ** decimals()));
        }
    }

    modifier onlyOwner{
        require(msg.sender == owner, "Only owner is allowed");
        _;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default 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_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 (uint8) {
        return 18;
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    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);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 (uint8);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","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":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6001608081815260c06040529060a0602080368337505081516200002b92600892506020019062000f65565b506040805160028082526060820183529091602083019080368337505081516200005d92600992506020019062000f65565b506040805160018082528183019092529060208083019080368337505081516200008f92600a92506020019062000f65565b5060408051600380825260808201909252906020820160608036833750508151620000c292600b92506020019062000f65565b50604080516008808252610120820190925290602082016101008036833750508151620000f792600c92506020019062000f65565b506040805160098082526101408201909252906020820161012080368337505081516200012c92600d92506020019062000f65565b5060408051600480825260a082019092529060208201608080368337505081516200015f92600e92506020019062000f65565b503480156200016d57600080fd5b506040518060400160405280601481526020017f54656d706f7261727920546169787520436f696e000000000000000000000000815250604051806040016040528060038152602001620a8a8b60eb1b8152508160039080519060200190620001d892919062000fcf565b508051620001ee90600490602084019062000fcf565b5050600580546001600160a01b0319163390811790915562000237915062000214601290565b6200022190600a62001176565b6200023190633b9aca006200118e565b62000c83565b73fbceb795e2e747559a8660aeb4f8620dd90925eb6008600081548110620002635762000263620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055507332a38f60c9e06dd820ad744a4f765218f879e9356009600081548110620002bd57620002bd620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073b548e8108ea0e81b70a088eed3638686326df72b6009600181548110620003175762000317620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550737af28547201ff898bbf2a70021d6952c2c12cb2b600a600081548110620003715762000371620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550731212c55ef91895fc6d61835262e6923b0505ab52600b600081548110620003cb57620003cb620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055507301d9f9a6aff4340b4ede8e3a32b34a26858d32dc600b600181548110620004255762000425620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073365b3ffebec326abe02e936adbac2aac1a298867600b6002815481106200047f576200047f620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073d28a771f629fc5b21f4f3aec680e22d3fd85484e600c600081548110620004d957620004d9620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550733c87371d0a1b627e496c3421d2cf27222aaf03f9600c600181548110620005335762000533620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073046daf2de2958316a64deae5450a01b4f3464086600c6002815481106200058d576200058d620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073e44243052f1f0227a2f678df55a8e16d5fbf3f1c600c600381548110620005e757620005e7620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055507356d3dd0c9228be107c0f1c8fd735ebf9a66dab21600c600481548110620006415762000641620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073a4e4ddf553df50c8c3f7382ee3b6cf3404e0ecf6600c6005815481106200069b576200069b620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073a90dde0c5c911f68af2db21f310704d69a0c1fe1600c600681548110620006f557620006f5620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550733abd429902844313fc0e9b338d8217609afb8fb2600c6007815481106200074f576200074f620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073447ce10820dbe34c51028828f86d16bc71c31367600d600081548110620007a957620007a9620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073ad1df26c51a1298fb31135f2db8bc72c6875036b600d600181548110620008035762000803620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055507371215dbb6ab9fef7b71cb150c71bb92b2e8882c9600d6002815481106200085d576200085d620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550737ff79e28198acc8313fecc2ddc3fb98693ed5ee3600d600381548110620008b757620008b7620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550736da85dd74cf8feae1346e483d5f9f0a9a581cedf600d600481548110620009115762000911620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073b5113584ddcb2203fe1fbb8c27f003b3705acb4f600d6005815481106200096b576200096b620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550731af6586ed0d2966dfc56ef2faae18fb7a48c196c600d600681548110620009c557620009c5620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555073365b3ffebec326abe02e936adbac2aac1a298867600d60078154811062000a1f5762000a1f620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550733abd429902844313fc0e9b338d8217609afb8fb2600d60088154811062000a795762000a79620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055507371215dbb6ab9fef7b71cb150c71bb92b2e8882c9600e60008154811062000ad35762000ad3620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055507377fafbf00bdd91ac55e483f46743398811731755600e60018154811062000b2d5762000b2d620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055507350f76618bf92461676b4e60de480193b2cc9cb94600e60028154811062000b875762000b87620011b0565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550733abd429902844313fc0e9b338d8217609afb8fb2600e60038154811062000be15762000be1620011b0565b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905562000c1b6008632eaba1c062000d39565b62000c2c60096302faf08062000d39565b62000c3d600a63017d784062000d39565b62000c4d600b6298968062000d39565b62000c5d600c624c4b4062000d39565b62000c6d600d621e848062000d39565b62000c7d600e620f424062000d39565b6200123c565b6001600160a01b03821662000cdf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b806002600082825462000cf39190620011c6565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602062001ccf833981519152910160405180910390a35050565b60005b825481101562000daa5762000d9483828154811062000d5f5762000d5f620011b0565b6000918252602090912001546001600160a01b031662000d826012600a62001176565b62000d8e90856200118e565b62000daf565b508062000da181620011e1565b91505062000d3c565b505050565b60003362000dbf81858562000dcb565b60019150505b92915050565b6001600160a01b03831662000e315760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840162000cd6565b6001600160a01b03821662000e955760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840162000cd6565b6001600160a01b0383166000908152602081905260409020548181101562000f0f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840162000cd6565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602062001ccf833981519152910160405180910390a350505050565b82805482825590600052602060002090810192821562000fbd579160200282015b8281111562000fbd57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000f86565b5062000fcb9291506200104c565b5090565b82805462000fdd90620011ff565b90600052602060002090601f01602090048101928262001001576000855562000fbd565b82601f106200101c57805160ff191683800117855562000fbd565b8280016001018555821562000fbd579182015b8281111562000fbd5782518255916020019190600101906200102f565b5b8082111562000fcb57600081556001016200104d565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620010ba5781600019048211156200109e576200109e62001063565b80851615620010ac57918102915b93841c93908002906200107e565b509250929050565b600082620010d35750600162000dc5565b81620010e25750600062000dc5565b8160018114620010fb5760028114620011065762001126565b600191505062000dc5565b60ff8411156200111a576200111a62001063565b50506001821b62000dc5565b5060208310610133831016604e8410600b84101617156200114b575081810a62000dc5565b62001157838362001079565b80600019048211156200116e576200116e62001063565b029392505050565b60006200118760ff841683620010c2565b9392505050565b6000816000190483118215151615620011ab57620011ab62001063565b500290565b634e487b7160e01b600052603260045260246000fd5b60008219821115620011dc57620011dc62001063565b500190565b6000600019821415620011f857620011f862001063565b5060010190565b600181811c908216806200121457607f821691505b602082108114156200123657634e487b7160e01b600052602260045260246000fd5b50919050565b610a83806200124c6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461021a578063a9059cbb1461022d578063b69ef8a814610240578063dd62ed3e1461024957600080fd5b806370a08231146101ab57806379cc6790146101d45780638da5cb5b146101e757806395d89b411461021257600080fd5b806323b872dd116100d357806323b872dd14610161578063313ce56714610174578063395093511461018357806342966c681461019657600080fd5b806306661abd1461010557806306fdde0314610121578063095ea7b31461013657806318160ddd14610159575b600080fd5b61010e60075481565b6040519081526020015b60405180910390f35b61012961025c565b60405161011891906108a7565b610149610144366004610918565b6102ee565b6040519015158152602001610118565b60025461010e565b61014961016f366004610942565b610306565b60405160128152602001610118565b610149610191366004610918565b61032a565b6101a96101a436600461097e565b61034c565b005b61010e6101b9366004610997565b6001600160a01b031660009081526020819052604090205490565b6101a96101e2366004610918565b610359565b6005546101fa906001600160a01b031681565b6040516001600160a01b039091168152602001610118565b610129610372565b610149610228366004610918565b610381565b61014961023b366004610918565b610401565b61010e60065481565b61010e6102573660046109b9565b61040f565b60606003805461026b906109ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610297906109ec565b80156102e45780601f106102b9576101008083540402835291602001916102e4565b820191906000526020600020905b8154815290600101906020018083116102c757829003601f168201915b5050505050905090565b6000336102fc81858561043a565b5060019392505050565b60003361031485828561055f565b61031f8585856105d9565b506001949350505050565b6000336102fc81858561033d838361040f565b6103479190610a27565b61043a565b610356338261077d565b50565b61036482338361055f565b61036e828261077d565b5050565b60606004805461026b906109ec565b6000338161038f828661040f565b9050838110156103f45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61031f828686840361043a565b6000336102fc8185856105d9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661049c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103eb565b6001600160a01b0382166104fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103eb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061056b848461040f565b905060001981146105d357818110156105c65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103eb565b6105d3848484840361043a565b50505050565b6001600160a01b03831661063d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103eb565b6001600160a01b03821661069f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103eb565b6001600160a01b038316600090815260208190526040902054818110156107175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103eb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105d3565b6001600160a01b0382166107dd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103eb565b6001600160a01b038216600090815260208190526040902054818110156108515760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103eb565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610552565b600060208083528351808285015260005b818110156108d4578581018301518582016040015282016108b8565b818111156108e6576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461091357600080fd5b919050565b6000806040838503121561092b57600080fd5b610934836108fc565b946020939093013593505050565b60008060006060848603121561095757600080fd5b610960846108fc565b925061096e602085016108fc565b9150604084013590509250925092565b60006020828403121561099057600080fd5b5035919050565b6000602082840312156109a957600080fd5b6109b2826108fc565b9392505050565b600080604083850312156109cc57600080fd5b6109d5836108fc565b91506109e3602084016108fc565b90509250929050565b600181811c90821680610a0057607f821691505b60208210811415610a2157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610a4857634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220395e32cfc57831c7d44d5d8aa7dd60aabb9abdd4fd7d07fed7fdd3138fa33a5664736f6c63430008090033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d71461021a578063a9059cbb1461022d578063b69ef8a814610240578063dd62ed3e1461024957600080fd5b806370a08231146101ab57806379cc6790146101d45780638da5cb5b146101e757806395d89b411461021257600080fd5b806323b872dd116100d357806323b872dd14610161578063313ce56714610174578063395093511461018357806342966c681461019657600080fd5b806306661abd1461010557806306fdde0314610121578063095ea7b31461013657806318160ddd14610159575b600080fd5b61010e60075481565b6040519081526020015b60405180910390f35b61012961025c565b60405161011891906108a7565b610149610144366004610918565b6102ee565b6040519015158152602001610118565b60025461010e565b61014961016f366004610942565b610306565b60405160128152602001610118565b610149610191366004610918565b61032a565b6101a96101a436600461097e565b61034c565b005b61010e6101b9366004610997565b6001600160a01b031660009081526020819052604090205490565b6101a96101e2366004610918565b610359565b6005546101fa906001600160a01b031681565b6040516001600160a01b039091168152602001610118565b610129610372565b610149610228366004610918565b610381565b61014961023b366004610918565b610401565b61010e60065481565b61010e6102573660046109b9565b61040f565b60606003805461026b906109ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610297906109ec565b80156102e45780601f106102b9576101008083540402835291602001916102e4565b820191906000526020600020905b8154815290600101906020018083116102c757829003601f168201915b5050505050905090565b6000336102fc81858561043a565b5060019392505050565b60003361031485828561055f565b61031f8585856105d9565b506001949350505050565b6000336102fc81858561033d838361040f565b6103479190610a27565b61043a565b610356338261077d565b50565b61036482338361055f565b61036e828261077d565b5050565b60606004805461026b906109ec565b6000338161038f828661040f565b9050838110156103f45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61031f828686840361043a565b6000336102fc8185856105d9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661049c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103eb565b6001600160a01b0382166104fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103eb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061056b848461040f565b905060001981146105d357818110156105c65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103eb565b6105d3848484840361043a565b50505050565b6001600160a01b03831661063d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103eb565b6001600160a01b03821661069f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103eb565b6001600160a01b038316600090815260208190526040902054818110156107175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103eb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105d3565b6001600160a01b0382166107dd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103eb565b6001600160a01b038216600090815260208190526040902054818110156108515760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103eb565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610552565b600060208083528351808285015260005b818110156108d4578581018301518582016040015282016108b8565b818111156108e6576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461091357600080fd5b919050565b6000806040838503121561092b57600080fd5b610934836108fc565b946020939093013593505050565b60008060006060848603121561095757600080fd5b610960846108fc565b925061096e602085016108fc565b9150604084013590509250925092565b60006020828403121561099057600080fd5b5035919050565b6000602082840312156109a957600080fd5b6109b2826108fc565b9392505050565b600080604083850312156109cc57600080fd5b6109d5836108fc565b91506109e3602084016108fc565b90509250929050565b600181811c90821680610a0057607f821691505b60208210811415610a2157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610a4857634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220395e32cfc57831c7d44d5d8aa7dd60aabb9abdd4fd7d07fed7fdd3138fa33a5664736f6c63430008090033

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.