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

Token

Frog Coin (FRG)
 

Overview

Max Total Supply

300,000,000 FRG

Holders

3,638

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
culinarycrypto.eth
Balance
200 FRG

Value
$0.00
0xc38086bcacd96e8e6471844b186a62d2252d0105
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:
FrogCoin

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
File 1 of 7 : FrogCoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {ERC20Taxable} from "./extensions/ERC20Taxable.sol";

/**
 * MMMMMMMMMMMMMMMMMMWWWWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
 * MMMMMMMMMMMMMWXOxdlllloxOKNWNXXK000OOO000KXXX0OOkOO0XWMMMMMMMMMMMMMMMM
 * MMMMMMMMMMMW0o:,''''''''';cc:;;,,,'''''',,;;;,''''',;cd0WMMMMMMMMMMMMM
 * MMMMMMMMMMNx;'''''''''''''''''''''''''''''''''''''''''',dXMMMMMMMMMMMM
 * MMMMMMMMMM0:',lol;'.';cllc,',''',,,,,''''',''''''''''''''dNMMMMMMMMMMM
 * MMMMMMMMMM0c':kkc'';;;d00x;'',,'','''''',lxl,....,:cll;'';xXWMMMMMMMMM
 * MMMMMMMMMMXo';dx;.':;'lOkc,'',,,,,'''''';dOc'.;c;,o00Ol'''':xXMMMMMMMM
 * MMMMMMMMMWO:'';:,'..'';::,',''''','''''',cd;..,:,,d0Od;''''''lKWMMMMMM
 * MMMMMMMMMKl,''''''''','''',,',,',,'''''''','''''',clc,''''''''cKMMMMMM
 * MMMMMMMMNd,''''','''''''''''''''''',,,'''''''''''''''''''''''''dNMMMMM
 * MMMMMMMWk;'','''''''''''''''''''''''''''''''''''','','','''''''cKMMMMM
 * MMMMMMW0c,','',''''''''''''''',,,,'''''''''''''',,,,;;;,,''''''cKMMMMM
 * MMMMMNkl::;,,,,,,'''''''''''''''',''''''',,,,;;::ccccllc;''''''oNMMMMM
 * MMMMMXo:lllllc:;;;;,,,,,,,,,,,,,,,;;;;::::::ccccllllllc;,''''':OMMMMMM
 * MMMMMWx:cccccccccc::::::::::::::::::::ccccccccllllcc:;,'''''';kWMMMMMM
 * MMMMMW0occlllllcccccccccccccccccccccclllllllcc::;,,,'''''''':OWMMMMMMM
 * MMMMMMWN0xoc:::::ccccclllllllccccccc::::;;,,,,'''''''''''',oKWMMMMMMMM
 * MMMMMMMMMMWX0koc,'',,,,,,,,,,,,,,,''''''',,''''''''''''';o0WMMMMMMMMMM
 * MMMMMMMMMMMMMMWN0xo;'''''''''''''''''''''''''''''''.';lxKWMMMMMMMMMMMM
 * MMMMMMMMMMMMMMMMMMWKko:,''''''''''''''''''''''.',;cdkKWMMMMMMMMMMMMMMM
 * MMMMMMMMMMMMMMMMMMMMMWNKOxolc:;,,'''''',,,;:codk0XWMMMMMMMMMMMMMMMMMMM
 * MMMMMMMMMMMMMMMMMMMMMMMMMMMWNNXK000OOO00KKXNWMMMMMMMMMMMMMMMMMMMMMMMMM
 * MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
 *
 * @title FrogCoin
 * @custom:website www.plaguenft.com
 * @author @lozzereth (www.allthingsweb3.com)
 * @notice ERC20 implementation with variable, but optional, transfers taxing.
 */
contract FrogCoin is ERC20Taxable {
    constructor(
        string memory name,
        string memory symbol,
        uint256 totalSupply_
    ) ERC20Taxable(name, symbol) {
        _mint(msg.sender, totalSupply_);
    }
}

File 2 of 7 : ERC20Taxable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ERC20Metadata} from "./ERC20Metadata.sol";

/**
 * @title ERC20Taxable
 * @author @lozzereth (www.allthingsweb3.com)
 * @notice ERC20Burnable implementation that has an adjustable transfer tax.
 */
contract ERC20Taxable is Ownable, IERC20, ERC20Metadata {
    /// @dev Track balances of tokens
    mapping(address => uint256) private _balances;

    /// @dev Track allowances of the token
    mapping(address => mapping(address => uint256)) private _allowances;

    /// @dev Token total supply
    uint256 private _totalSupply;

    /// @dev Percentage tax
    uint256 public tax;

    /// @dev Tax exempt sending addresses
    mapping(address => bool) private _taxExemptSender;

    /// @dev Tax exempt receiving addresses
    mapping(address => bool) private _taxExemptReceiver;

    /// @dev Tax revenue recipient
    address private _taxRevenueRecipient;

    /**
     * @dev Sets the values for {name}, {symbol} and {totalSupply}.
     *
     * 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_)
        ERC20Metadata(name_, symbol_)
    {
        address taxman = address(this);
        _taxRevenueRecipient = taxman;
        _taxExemptSender[taxman] = true;
        _taxExemptReceiver[taxman] = true;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply()
        public
        view
        virtual
        override(IERC20)
        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"
        );
        unchecked {
            _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"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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");

        _beforeTokenTransfer(sender, recipient, amount);

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

        unchecked {
            uint256 receivingAmount = amount;

            if (
                tax > 0 &&
                !_taxExemptReceiver[recipient] &&
                !_taxExemptSender[sender]
            ) {
                receivingAmount = (receivingAmount * (10000 - tax)) / 10000;
                uint256 taxedAmount = amount - receivingAmount;
                _balances[_taxRevenueRecipient] += taxedAmount;
                emit Transfer(sender, _taxRevenueRecipient, taxedAmount);
            }

            _balances[sender] = senderBalance - amount;
            _balances[recipient] += receivingAmount;

            emit Transfer(sender, recipient, receivingAmount);
            _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}

    /**
     * @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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(
            currentAllowance >= amount,
            "ERC20: burn amount exceeds allowance"
        );
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }

    /**
     * @dev Sets the transfer tax.
     *
     * - 10000 = 100.00%
     * - 125 = 1.25%
     */
    function setTransferTax(uint256 _percent) external onlyOwner {
        require(
            _percent >= 0 && _percent <= 10000,
            "ERC20Taxable: Invalid Percent"
        );
        tax = _percent;
    }

    /**
     * @dev Sets the recipient for all transfer tax revenue.
     * @param _address The recipient
     */
    function setTaxRevenueRecipient(address _address) external onlyOwner {
        _taxRevenueRecipient = _address;
    }

    /**
     * @dev Set addresses as tax exempt
     * @param flag  The flag that will determine which type of exemption is set
     *              - 0: Receiver
     *              - 1: Sender
     *              - 2: Receiver and Sender
     * @param addresses The addresses to action
     * @param _toggle The final state
     */
    function setTaxExemptions(
        uint256 flag,
        address[] memory addresses,
        bool _toggle
    ) external onlyOwner {
        for (uint256 a; a < addresses.length; ++a) {
            address _address = addresses[a];
            if (flag == 0) {
                _taxExemptReceiver[_address] = _toggle;
            } else if (flag == 1) {
                _taxExemptSender[_address] = _toggle;
            } else if (flag == 2) {
                _taxExemptReceiver[_address] = _toggle;
                _taxExemptSender[_address] = _toggle;
            }
        }
    }

    /**
     * @dev Withdraw tokens held within the contract
     */
    function withdraw() external onlyOwner {
        _transfer(address(this), _msgSender(), _balances[address(this)]);
    }

    /**
     * @dev Get tax exemption status of an address
     * @return exemption (sender exempt, receiving exempt)
     */
    function taxExemptionOf(address _address) public view returns (bool, bool) {
        return (_taxExemptSender[_address], _taxExemptReceiver[_address]);
    }
}

File 3 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 4 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 7 : ERC20Metadata.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

/**
 * @title ERC20Metadata
 * @author @lozzereth (www.allthingsweb3.com)
 * @notice ERC20Metadata implementation isolates metadata related code.
 */
abstract contract ERC20Metadata is IERC20Metadata {
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name}, {symbol} and {totalSupply}.
     *
     * 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;
    }
}

File 6 of 7 : Context.sol
// 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;
    }
}

File 7 of 7 : IERC20Metadata.sol
// 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[{"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":"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","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"flag","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"setTaxExemptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTaxRevenueRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setTransferTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"taxExemptionOf","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620018083803806200180883398101604081905262000034916200037c565b828281816200004333620000d1565b81516200005890600190602085019062000209565b5080516200006e90600290602084019062000209565b5050600980546001600160a01b031916309081179091556000908152600760209081526040808320805460ff199081166001908117909255600890935292208054909116909117905550620000c891503390508262000121565b50505062000452565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200017c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060056000828254620001909190620003ef565b90915550506001600160a01b03821660009081526003602052604081208054839290620001bf908490620003ef565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002179062000416565b90600052602060002090601f0160209004810192826200023b576000855562000286565b82601f106200025657805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028657825182559160200191906001019062000269565b506200029492915062000298565b5090565b5b8082111562000294576000815560010162000299565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002d757600080fd5b81516001600160401b0380821115620002f457620002f4620002af565b604051601f8301601f19908116603f011681019082821181831017156200031f576200031f620002af565b816040528381526020925086838588010111156200033c57600080fd5b600091505b8382101562000360578582018301518183018401529082019062000341565b83821115620003725760008385830101525b9695505050505050565b6000806000606084860312156200039257600080fd5b83516001600160401b0380821115620003aa57600080fd5b620003b887838801620002c5565b94506020860151915080821115620003cf57600080fd5b50620003de86828701620002c5565b925050604084015190509250925092565b600082198211156200041157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200042b57607f821691505b6020821081036200044c57634e487b7160e01b600052602260045260246000fd5b50919050565b6113a680620004626000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c80638b525903116100d8578063a9059cbb1161008c578063cbc788f311610066578063cbc788f31461033c578063dd62ed3e1461034f578063f2fde38b1461038857600080fd5b8063a9059cbb146102c2578063acfba4eb146102d5578063c9be2f8f1461032957600080fd5b806395d89b41116100bd57806395d89b411461029e57806399c8d556146102a6578063a457c2d7146102af57600080fd5b80638b525903146102705780638da5cb5b1461028357600080fd5b8063395093511161013a57806370a082311161011457806370a082311461022c578063715018a61461025557806379cc67901461025d57600080fd5b806339509351146101fc5780633ccfd60b1461020f57806342966c681461021957600080fd5b806318160ddd1161016b57806318160ddd146101c857806323b872dd146101da578063313ce567146101ed57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f61039b565b60405161019c9190611060565b60405180910390f35b6101b86101b33660046110d1565b61042d565b604051901515815260200161019c565b6005545b60405190815260200161019c565b6101b86101e83660046110fb565b610443565b6040516012815260200161019c565b6101b861020a3660046110d1565b610507565b610217610543565b005b610217610227366004611137565b6105b9565b6101cc61023a366004611150565b6001600160a01b031660009081526003602052604090205490565b6102176105c6565b61021761026b3660046110d1565b61062a565b61021761027e366004611137565b6106b0565b6000546040516001600160a01b03909116815260200161019c565b61018f610761565b6101cc60065481565b6101b86102bd3660046110d1565b610770565b6101b86102d03660046110d1565b610821565b6103126102e3366004611150565b6001600160a01b031660009081526007602090815260408083205460089092529091205460ff91821692911690565b60408051921515835290151560208301520161019c565b610217610337366004611150565b61082e565b61021761034a366004611198565b6108b7565b6101cc61035d366004611279565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610217610396366004611150565b6109f9565b6060600180546103aa906112ac565b80601f01602080910402602001604051908101604052809291908181526020018280546103d6906112ac565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600061043a338484610ad8565b50600192915050565b6000610450848484610bfc565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104fc8533858403610ad8565b506001949350505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161043a91859061053e9086906112fc565b610ad8565b6000546001600160a01b0316331461059d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b6105b7303330600090815260036020526040902054610bfc565b565b6105c33382610eb5565b50565b6000546001600160a01b031633146106205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b6105b76000611003565b6000610636833361035d565b9050818110156106945760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016104e6565b6106a18333848403610ad8565b6106ab8383610eb5565b505050565b6000546001600160a01b0316331461070a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b61271081111561075c5760405162461bcd60e51b815260206004820152601d60248201527f455243323054617861626c653a20496e76616c69642050657263656e7400000060448201526064016104e6565b600655565b6060600280546103aa906112ac565b3360009081526004602090815260408083206001600160a01b03861684529091528120548281101561080a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104e6565b6108173385858403610ad8565b5060019392505050565b600061043a338484610bfc565b6000546001600160a01b031633146108885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b031633146109115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b60005b82518110156109f357600083828151811061093157610931611314565b602002602001015190508460000361096c576001600160a01b0381166000908152600860205260409020805460ff19168415151790556109e2565b8460010361099d576001600160a01b0381166000908152600760205260409020805460ff19168415151790556109e2565b846002036109e2576001600160a01b0381166000908152600860209081526040808320805487151560ff19918216811790925560079093529220805490911690911790555b506109ec8161132a565b9050610914565b50505050565b6000546001600160a01b03163314610a535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b6001600160a01b038116610acf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104e6565b6105c381611003565b6001600160a01b038316610b3a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e6565b6001600160a01b038216610b9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e6565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104e6565b6001600160a01b038216610cda5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e6565b6001600160a01b03831660009081526003602052604090205481811015610d695760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104e6565b600654829015801590610d9557506001600160a01b03841660009081526008602052604090205460ff16155b8015610dba57506001600160a01b03851660009081526007602052604090205460ff16155b15610e465761271060065461271003820281610dd857610dd8611343565b600980546001600160a01b03908116600090815260036020908152604091829020805496909504808a0396870190955592549051858152939550811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505b6001600160a01b0380861660008181526003602052604080822087870390559287168082529083902080548501905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ea69085815260200190565b60405180910390a35050505050565b6001600160a01b038216610f155760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104e6565b6001600160a01b03821660009081526003602052604090205481811015610f895760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104e6565b6001600160a01b0383166000908152600360205260408120838303905560058054849290610fb8908490611359565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561108d57858101830151858201604001528201611071565b8181111561109f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110cc57600080fd5b919050565b600080604083850312156110e457600080fd5b6110ed836110b5565b946020939093013593505050565b60008060006060848603121561111057600080fd5b611119846110b5565b9250611127602085016110b5565b9150604084013590509250925092565b60006020828403121561114957600080fd5b5035919050565b60006020828403121561116257600080fd5b61116b826110b5565b9392505050565b634e487b7160e01b600052604160045260246000fd5b803580151581146110cc57600080fd5b6000806000606084860312156111ad57600080fd5b8335925060208085013567ffffffffffffffff808211156111cd57600080fd5b818701915087601f8301126111e157600080fd5b8135818111156111f3576111f3611172565b8060051b604051601f19603f8301168101818110858211171561121857611218611172565b60405291825284820192508381018501918a83111561123657600080fd5b938501935b8285101561125b5761124c856110b5565b8452938501939285019261123b565b80975050505050505061127060408501611188565b90509250925092565b6000806040838503121561128c57600080fd5b611295836110b5565b91506112a3602084016110b5565b90509250929050565b600181811c908216806112c057607f821691505b6020821081036112e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561130f5761130f6112e6565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161133c5761133c6112e6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008282101561136b5761136b6112e6565b50039056fea2646970667358221220774ed27c8ff274a620e75a87385a2c99f9d62ed81905e34db24fd5e25507e39064736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000f8277896582678ac000000000000000000000000000000000000000000000000000000000000000000000946726f6720436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034652470000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101825760003560e01c80638b525903116100d8578063a9059cbb1161008c578063cbc788f311610066578063cbc788f31461033c578063dd62ed3e1461034f578063f2fde38b1461038857600080fd5b8063a9059cbb146102c2578063acfba4eb146102d5578063c9be2f8f1461032957600080fd5b806395d89b41116100bd57806395d89b411461029e57806399c8d556146102a6578063a457c2d7146102af57600080fd5b80638b525903146102705780638da5cb5b1461028357600080fd5b8063395093511161013a57806370a082311161011457806370a082311461022c578063715018a61461025557806379cc67901461025d57600080fd5b806339509351146101fc5780633ccfd60b1461020f57806342966c681461021957600080fd5b806318160ddd1161016b57806318160ddd146101c857806323b872dd146101da578063313ce567146101ed57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f61039b565b60405161019c9190611060565b60405180910390f35b6101b86101b33660046110d1565b61042d565b604051901515815260200161019c565b6005545b60405190815260200161019c565b6101b86101e83660046110fb565b610443565b6040516012815260200161019c565b6101b861020a3660046110d1565b610507565b610217610543565b005b610217610227366004611137565b6105b9565b6101cc61023a366004611150565b6001600160a01b031660009081526003602052604090205490565b6102176105c6565b61021761026b3660046110d1565b61062a565b61021761027e366004611137565b6106b0565b6000546040516001600160a01b03909116815260200161019c565b61018f610761565b6101cc60065481565b6101b86102bd3660046110d1565b610770565b6101b86102d03660046110d1565b610821565b6103126102e3366004611150565b6001600160a01b031660009081526007602090815260408083205460089092529091205460ff91821692911690565b60408051921515835290151560208301520161019c565b610217610337366004611150565b61082e565b61021761034a366004611198565b6108b7565b6101cc61035d366004611279565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610217610396366004611150565b6109f9565b6060600180546103aa906112ac565b80601f01602080910402602001604051908101604052809291908181526020018280546103d6906112ac565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600061043a338484610ad8565b50600192915050565b6000610450848484610bfc565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104fc8533858403610ad8565b506001949350505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161043a91859061053e9086906112fc565b610ad8565b6000546001600160a01b0316331461059d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b6105b7303330600090815260036020526040902054610bfc565b565b6105c33382610eb5565b50565b6000546001600160a01b031633146106205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b6105b76000611003565b6000610636833361035d565b9050818110156106945760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016104e6565b6106a18333848403610ad8565b6106ab8383610eb5565b505050565b6000546001600160a01b0316331461070a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b61271081111561075c5760405162461bcd60e51b815260206004820152601d60248201527f455243323054617861626c653a20496e76616c69642050657263656e7400000060448201526064016104e6565b600655565b6060600280546103aa906112ac565b3360009081526004602090815260408083206001600160a01b03861684529091528120548281101561080a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104e6565b6108173385858403610ad8565b5060019392505050565b600061043a338484610bfc565b6000546001600160a01b031633146108885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b031633146109115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b60005b82518110156109f357600083828151811061093157610931611314565b602002602001015190508460000361096c576001600160a01b0381166000908152600860205260409020805460ff19168415151790556109e2565b8460010361099d576001600160a01b0381166000908152600760205260409020805460ff19168415151790556109e2565b846002036109e2576001600160a01b0381166000908152600860209081526040808320805487151560ff19918216811790925560079093529220805490911690911790555b506109ec8161132a565b9050610914565b50505050565b6000546001600160a01b03163314610a535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e6565b6001600160a01b038116610acf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104e6565b6105c381611003565b6001600160a01b038316610b3a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e6565b6001600160a01b038216610b9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e6565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c785760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104e6565b6001600160a01b038216610cda5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e6565b6001600160a01b03831660009081526003602052604090205481811015610d695760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104e6565b600654829015801590610d9557506001600160a01b03841660009081526008602052604090205460ff16155b8015610dba57506001600160a01b03851660009081526007602052604090205460ff16155b15610e465761271060065461271003820281610dd857610dd8611343565b600980546001600160a01b03908116600090815260036020908152604091829020805496909504808a0396870190955592549051858152939550811692908916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505b6001600160a01b0380861660008181526003602052604080822087870390559287168082529083902080548501905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ea69085815260200190565b60405180910390a35050505050565b6001600160a01b038216610f155760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104e6565b6001600160a01b03821660009081526003602052604090205481811015610f895760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104e6565b6001600160a01b0383166000908152600360205260408120838303905560058054849290610fb8908490611359565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561108d57858101830151858201604001528201611071565b8181111561109f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110cc57600080fd5b919050565b600080604083850312156110e457600080fd5b6110ed836110b5565b946020939093013593505050565b60008060006060848603121561111057600080fd5b611119846110b5565b9250611127602085016110b5565b9150604084013590509250925092565b60006020828403121561114957600080fd5b5035919050565b60006020828403121561116257600080fd5b61116b826110b5565b9392505050565b634e487b7160e01b600052604160045260246000fd5b803580151581146110cc57600080fd5b6000806000606084860312156111ad57600080fd5b8335925060208085013567ffffffffffffffff808211156111cd57600080fd5b818701915087601f8301126111e157600080fd5b8135818111156111f3576111f3611172565b8060051b604051601f19603f8301168101818110858211171561121857611218611172565b60405291825284820192508381018501918a83111561123657600080fd5b938501935b8285101561125b5761124c856110b5565b8452938501939285019261123b565b80975050505050505061127060408501611188565b90509250925092565b6000806040838503121561128c57600080fd5b611295836110b5565b91506112a3602084016110b5565b90509250929050565b600181811c908216806112c057607f821691505b6020821081036112e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561130f5761130f6112e6565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161133c5761133c6112e6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008282101561136b5761136b6112e6565b50039056fea2646970667358221220774ed27c8ff274a620e75a87385a2c99f9d62ed81905e34db24fd5e25507e39064736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000f8277896582678ac000000000000000000000000000000000000000000000000000000000000000000000946726f6720436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034652470000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Frog Coin
Arg [1] : symbol (string): FRG
Arg [2] : totalSupply_ (uint256): 300000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000f8277896582678ac000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 46726f6720436f696e0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4652470000000000000000000000000000000000000000000000000000000000


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.