S Price: $0.727236 (+8.06%)

Token

Test (Test)

Overview

Max Total Supply

0.0000000001 Test

Holders

1

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 Test

Value
$0.00
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
StandardToken

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 6 : StandardToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;

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

contract StandardToken is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxSupply_
    ) ERC20(name_, symbol_) {
        _mint(msg.sender, maxSupply_);
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
}

File 2 of 6 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 4 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080604052346100305761001a6100146101de565b91610201565b610022610035565b610d4861082c8239610d4890f35b61003b565b60405190565b600080fd5b601f801991011690565b634e487b7160e01b600052604160045260246000fd5b9061006a90610040565b810190811060018060401b0382111761008257604052565b61004a565b9061009a610093610035565b9283610060565b565b600080fd5b600080fd5b600080fd5b600080fd5b60018060401b0381116100cc576100c8602091610040565b0190565b61004a565b60005b8381106100e5575050906000910152565b8060209183015181850152016100d4565b9092919261010b610106826100b0565b610087565b9381855260208501908284011161012757610125926100d1565b565b6100ab565b9080601f8301121561014a57816020610147935191016100f6565b90565b6100a6565b90565b61015b8161014f565b0361016257565b600080fd5b9050519061017482610152565b565b90916060828403126101d957600082015160018060401b0381116101d457836101a091840161012c565b9260208301519060018060401b0382116101cf576101c3816101cc93860161012c565b93604001610167565b90565b6100a1565b6100a1565b61009c565b6101fc611574803803806101f181610087565b928339810190610176565b909192565b610215929161020f91610475565b336104f2565b565b5190565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610251575b602083101461024c57565b61021b565b91607f1691610241565b600052602060002090565b601f602091010490565b1b90565b9190600861029091029161028a60001984610270565b92610270565b9181191691161790565b90565b6102b16102ac6102b69261014f565b61029a565b61014f565b90565b90565b91906102d26102cd6102da9361029d565b6102b9565b908354610274565b9055565b600090565b6102f5916102ef6102de565b916102bc565b565b5b818110610303575050565b8061031160006001936102e3565b016102f8565b9190601f8111610327575b505050565b6103336103589361025b565b90602061033f84610266565b83019310610360575b61035190610266565b01906102f7565b388080610322565b915061035181929050610348565b1c90565b90610383906000199060080261036e565b191690565b8161039291610372565b906002021790565b906103a481610217565b9060018060401b038211610464576103c6826103c08554610231565b85610317565b602090601f83116001146103fb579180916103ea936000926103ef575b5050610388565b90555b565b909150015138806103e3565b601f1983169161040a8561025b565b9260005b81811061044c57509160029391856001969410610432575b505050020190556103ed565b610442910151601f841690610372565b9055388080610426565b9193602060018192878701518155019501920161040e565b61004a565b906104739161039a565b565b9061048461048b926003610469565b6004610469565b565b90565b60018060a01b031690565b6104af6104aa6104b49261048d565b61029a565b610490565b90565b6104c09061049b565b90565b6104cc90610490565b90565b6104d8906104c3565b9052565b91906104f0906000602085019401906104cf565b565b8061050e61050861050360006104b7565b6104c3565b916104c3565b1461052b576105299161052160006104b7565b9190916106b4565b565b61055061053860006104b7565b600091829163ec442f0560e01b8352600483016104dc565b0390fd5b61056861056361056d92610490565b61029a565b610490565b90565b61057990610554565b90565b61058590610570565b90565b906105929061057c565b600052602052604060002090565b60001c90565b90565b6105b56105ba916105a0565b6105a6565b90565b6105c790546105a9565b90565b6105d39061014f565b9052565b60409061060161060894969593966105f7606084019860008501906104cf565b60208301906105ca565b01906105ca565b565b90610615910361014f565b90565b60001b90565b9061062b60001991610618565b9181191691161790565b9061064a6106456106519261029d565b6102b9565b825461061e565b9055565b634e487b7160e01b600052601160045260246000fd5b61067a6106809193929361014f565b9261014f565b820180921161068b57565b610655565b9061069b910161014f565b90565b91906106b2906000602085019401906105ca565b565b919091806106d36106cd6106c860006104b7565b6104c3565b916104c3565b146000146107b8576106f86106f1836106ec60026105bd565b61066b565b6002610635565b5b8261071561070f61070a60006104b7565b6104c3565b916104c3565b1460001461078b5761073a6107338361072e60026105bd565b61060a565b6002610635565b5b91909161078661077461076e7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9361057c565b9361057c565b9361077d610035565b9182918261069e565b0390a3565b6107b3826107ad61079e60008790610588565b916107a8836105bd565b610690565b90610635565b61073b565b6107cc6107c760008390610588565b6105bd565b806107df6107d98561014f565b9161014f565b10610808576107f261080391849061060a565b6107fe60008490610588565b610635565b6106f9565b90610827909192600093849363391434e360e21b8552600485016105d7565b0390fdfe60806040526004361015610013575b6104c6565b61001e6000356100ad565b806306fdde03146100a8578063095ea7b3146100a357806318160ddd1461009e57806323b872dd14610099578063313ce5671461009457806370a082311461008f57806395d89b411461008a578063a9059cbb146100855763dd62ed3e0361000e57610490565b61042c565b6103f7565b6103c2565b61036e565b61030f565b61029f565b610246565b610159565b60e01c90565b60405190565b600080fd5b600080fd5b60009103126100ce57565b6100be565b5190565b60209181520190565b60005b8381106100f4575050906000910152565b8060209183015181850152016100e3565b601f801991011690565b61012e61013760209361013c93610125816100d3565b938480936100d7565b958691016100e0565b610105565b0190565b610156916020820191600081840391015261010f565b90565b34610189576101693660046100c3565b61018561017461062d565b61017c6100b3565b91829182610140565b0390f35b6100b9565b60018060a01b031690565b6101a29061018e565b90565b6101ae81610199565b036101b557565b600080fd5b905035906101c7826101a5565b565b90565b6101d5816101c9565b036101dc57565b600080fd5b905035906101ee826101cc565b565b9190604083820312610219578061020d61021692600086016101ba565b936020016101e1565b90565b6100be565b151590565b61022c9061021e565b9052565b919061024490600060208501940190610223565b565b346102775761027361026261025c3660046101f0565b90610648565b61026a6100b3565b91829182610230565b0390f35b6100b9565b610285906101c9565b9052565b919061029d9060006020850194019061027c565b565b346102cf576102af3660046100c3565b6102cb6102ba610699565b6102c26100b3565b91829182610289565b0390f35b6100b9565b909160608284031261030a576103076102f084600085016101ba565b936102fe81602086016101ba565b936040016101e1565b90565b6100be565b346103405761033c61032b6103253660046102d4565b916106af565b6103336100b3565b91829182610230565b0390f35b6100b9565b60ff1690565b61035490610345565b9052565b919061036c9060006020850194019061034b565b565b3461039e5761037e3660046100c3565b61039a610389610705565b6103916100b3565b91829182610358565b0390f35b6100b9565b906020828203126103bd576103ba916000016101ba565b90565b6100be565b346103f2576103ee6103dd6103d83660046103a3565b610767565b6103e56100b3565b91829182610289565b0390f35b6100b9565b34610427576104073660046100c3565b610423610412610786565b61041a6100b3565b91829182610140565b0390f35b6100b9565b3461045d576104596104486104423660046101f0565b9061079c565b6104506100b3565b91829182610230565b0390f35b6100b9565b919060408382031261048b578061047f61048892600086016101ba565b936020016101ba565b90565b6100be565b346104c1576104bd6104ac6104a6366004610462565b906107d6565b6104b46100b3565b91829182610289565b0390f35b6100b9565b600080fd5b606090565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610506575b602083101461050157565b6104d0565b91607f16916104f6565b60209181520190565b600052602060002090565b906000929180549061053f610538836104e6565b8094610510565b91600181169081600014610598575060011461055b575b505050565b6105689192939450610519565b916000925b8184106105805750500190388080610556565b6001816020929593955484860152019101929061056d565b92949550505060ff1916825215156020020190388080610556565b906105bd91610524565b90565b634e487b7160e01b600052604160045260246000fd5b906105e090610105565b810190811067ffffffffffffffff8211176105fa57604052565b6105c0565b9061061f6106189261060f6100b3565b938480926105b3565b03836105d6565b565b61062a906105ff565b90565b6106356104cb565b506106406003610621565b90565b600090565b61066591610654610643565b5061065d610803565b919091610810565b600190565b600090565b60001c90565b90565b6106846106899161066f565b610675565b90565b6106969054610678565b90565b6106a161066a565b506106ac600261068c565b90565b916106d9926106bc610643565b506106d16106c8610803565b8290849161086e565b91909161093e565b600190565b600090565b90565b90565b6106fd6106f8610702926106e3565b6106e6565b610345565b90565b61070d6106de565b5061071860126106e9565b90565b61072f61072a6107349261018e565b6106e6565b61018e565b90565b6107409061071b565b90565b61074c90610737565b90565b9061075990610743565b600052602052604060002090565b61077e6107839161077661066a565b50600061074f565b61068c565b90565b61078e6104cb565b506107996004610621565b90565b6107b9916107a8610643565b506107b1610803565b91909161093e565b600190565b906107c890610743565b600052602052604060002090565b6107fb916107f16107f6926107e961066a565b5060016107be565b61074f565b61068c565b90565b600090565b61080b6107fe565b503390565b9161081e9291600192610a3d565b565b61082990610199565b9052565b60409061085761085e949695939661084d60608401986000850190610820565b602083019061027c565b019061027c565b565b9061086b91036101c9565b90565b92919261087c8183906107d6565b908161089261088c6000196101c9565b916101c9565b0361089f575b5050509050565b816108b26108ac876101c9565b916101c9565b106108d9576108d093946108c7919392610860565b90600092610a3d565b80388080610898565b506108f9849291926000938493637dc7a0d960e11b85526004850161082d565b0390fd5b90565b61091461090f610919926108fd565b6106e6565b61018e565b90565b61092590610900565b90565b919061093c90600060208501940190610820565b565b918261095b610955610950600061091c565b610199565b91610199565b146109b8578161097c610976610971600061091c565b610199565b91610199565b1461098f5761098d92919091610b9b565b565b6109b461099c600061091c565b600091829163ec442f0560e01b835260048301610928565b0390fd5b6109dd6109c5600061091c565b6000918291634b637e8f60e11b835260048301610928565b0390fd5b60001b90565b906109f4600019916109e1565b9181191691161790565b610a12610a0d610a17926101c9565b6106e6565b6101c9565b90565b90565b90610a32610a2d610a39926109fe565b610a1a565b82546109e7565b9055565b909281610a5b610a55610a50600061091c565b610199565b91610199565b14610b295783610a7c610a76610a71600061091c565b610199565b91610199565b14610b0057610aa083610a9b610a94600186906107be565b879061074f565b610a1d565b610aaa575b505050565b919091610af5610ae3610add7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92593610743565b93610743565b93610aec6100b3565b91829182610289565b0390a3388080610aa5565b610b25610b0d600061091c565b6000918291634a1406b160e11b835260048301610928565b0390fd5b610b4e610b36600061091c565b600091829163e602df0560e01b835260048301610928565b0390fd5b634e487b7160e01b600052601160045260246000fd5b610b77610b7d919392936101c9565b926101c9565b8201809211610b8857565b610b52565b90610b9891016101c9565b90565b91909180610bba610bb4610baf600061091c565b610199565b91610199565b14600014610c9f57610bdf610bd883610bd3600261068c565b610b68565b6002610a1d565b5b82610bfc610bf6610bf1600061091c565b610199565b91610199565b14600014610c7257610c21610c1a83610c15600261068c565b610860565b6002610a1d565b5b919091610c6d610c5b610c557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93610743565b93610743565b93610c646100b3565b91829182610289565b0390a3565b610c9a82610c94610c856000879061074f565b91610c8f8361068c565b610b8d565b90610a1d565b610c22565b610cb3610cae6000839061074f565b61068c565b80610cc6610cc0856101c9565b916101c9565b10610cef57610cd9610cea918490610860565b610ce56000849061074f565b610a1d565b610be0565b90610d0e909192600093849363391434e360e21b85526004850161082d565b0390fdfea26469706673582212202a8ea45437ad51eca29e75f032abe38a7d2dafaa3bcbd2c2717fb34af9ade03164736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000004546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045465737400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361015610013575b6104c6565b61001e6000356100ad565b806306fdde03146100a8578063095ea7b3146100a357806318160ddd1461009e57806323b872dd14610099578063313ce5671461009457806370a082311461008f57806395d89b411461008a578063a9059cbb146100855763dd62ed3e0361000e57610490565b61042c565b6103f7565b6103c2565b61036e565b61030f565b61029f565b610246565b610159565b60e01c90565b60405190565b600080fd5b600080fd5b60009103126100ce57565b6100be565b5190565b60209181520190565b60005b8381106100f4575050906000910152565b8060209183015181850152016100e3565b601f801991011690565b61012e61013760209361013c93610125816100d3565b938480936100d7565b958691016100e0565b610105565b0190565b610156916020820191600081840391015261010f565b90565b34610189576101693660046100c3565b61018561017461062d565b61017c6100b3565b91829182610140565b0390f35b6100b9565b60018060a01b031690565b6101a29061018e565b90565b6101ae81610199565b036101b557565b600080fd5b905035906101c7826101a5565b565b90565b6101d5816101c9565b036101dc57565b600080fd5b905035906101ee826101cc565b565b9190604083820312610219578061020d61021692600086016101ba565b936020016101e1565b90565b6100be565b151590565b61022c9061021e565b9052565b919061024490600060208501940190610223565b565b346102775761027361026261025c3660046101f0565b90610648565b61026a6100b3565b91829182610230565b0390f35b6100b9565b610285906101c9565b9052565b919061029d9060006020850194019061027c565b565b346102cf576102af3660046100c3565b6102cb6102ba610699565b6102c26100b3565b91829182610289565b0390f35b6100b9565b909160608284031261030a576103076102f084600085016101ba565b936102fe81602086016101ba565b936040016101e1565b90565b6100be565b346103405761033c61032b6103253660046102d4565b916106af565b6103336100b3565b91829182610230565b0390f35b6100b9565b60ff1690565b61035490610345565b9052565b919061036c9060006020850194019061034b565b565b3461039e5761037e3660046100c3565b61039a610389610705565b6103916100b3565b91829182610358565b0390f35b6100b9565b906020828203126103bd576103ba916000016101ba565b90565b6100be565b346103f2576103ee6103dd6103d83660046103a3565b610767565b6103e56100b3565b91829182610289565b0390f35b6100b9565b34610427576104073660046100c3565b610423610412610786565b61041a6100b3565b91829182610140565b0390f35b6100b9565b3461045d576104596104486104423660046101f0565b9061079c565b6104506100b3565b91829182610230565b0390f35b6100b9565b919060408382031261048b578061047f61048892600086016101ba565b936020016101ba565b90565b6100be565b346104c1576104bd6104ac6104a6366004610462565b906107d6565b6104b46100b3565b91829182610289565b0390f35b6100b9565b600080fd5b606090565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610506575b602083101461050157565b6104d0565b91607f16916104f6565b60209181520190565b600052602060002090565b906000929180549061053f610538836104e6565b8094610510565b91600181169081600014610598575060011461055b575b505050565b6105689192939450610519565b916000925b8184106105805750500190388080610556565b6001816020929593955484860152019101929061056d565b92949550505060ff1916825215156020020190388080610556565b906105bd91610524565b90565b634e487b7160e01b600052604160045260246000fd5b906105e090610105565b810190811067ffffffffffffffff8211176105fa57604052565b6105c0565b9061061f6106189261060f6100b3565b938480926105b3565b03836105d6565b565b61062a906105ff565b90565b6106356104cb565b506106406003610621565b90565b600090565b61066591610654610643565b5061065d610803565b919091610810565b600190565b600090565b60001c90565b90565b6106846106899161066f565b610675565b90565b6106969054610678565b90565b6106a161066a565b506106ac600261068c565b90565b916106d9926106bc610643565b506106d16106c8610803565b8290849161086e565b91909161093e565b600190565b600090565b90565b90565b6106fd6106f8610702926106e3565b6106e6565b610345565b90565b61070d6106de565b5061071860126106e9565b90565b61072f61072a6107349261018e565b6106e6565b61018e565b90565b6107409061071b565b90565b61074c90610737565b90565b9061075990610743565b600052602052604060002090565b61077e6107839161077661066a565b50600061074f565b61068c565b90565b61078e6104cb565b506107996004610621565b90565b6107b9916107a8610643565b506107b1610803565b91909161093e565b600190565b906107c890610743565b600052602052604060002090565b6107fb916107f16107f6926107e961066a565b5060016107be565b61074f565b61068c565b90565b600090565b61080b6107fe565b503390565b9161081e9291600192610a3d565b565b61082990610199565b9052565b60409061085761085e949695939661084d60608401986000850190610820565b602083019061027c565b019061027c565b565b9061086b91036101c9565b90565b92919261087c8183906107d6565b908161089261088c6000196101c9565b916101c9565b0361089f575b5050509050565b816108b26108ac876101c9565b916101c9565b106108d9576108d093946108c7919392610860565b90600092610a3d565b80388080610898565b506108f9849291926000938493637dc7a0d960e11b85526004850161082d565b0390fd5b90565b61091461090f610919926108fd565b6106e6565b61018e565b90565b61092590610900565b90565b919061093c90600060208501940190610820565b565b918261095b610955610950600061091c565b610199565b91610199565b146109b8578161097c610976610971600061091c565b610199565b91610199565b1461098f5761098d92919091610b9b565b565b6109b461099c600061091c565b600091829163ec442f0560e01b835260048301610928565b0390fd5b6109dd6109c5600061091c565b6000918291634b637e8f60e11b835260048301610928565b0390fd5b60001b90565b906109f4600019916109e1565b9181191691161790565b610a12610a0d610a17926101c9565b6106e6565b6101c9565b90565b90565b90610a32610a2d610a39926109fe565b610a1a565b82546109e7565b9055565b909281610a5b610a55610a50600061091c565b610199565b91610199565b14610b295783610a7c610a76610a71600061091c565b610199565b91610199565b14610b0057610aa083610a9b610a94600186906107be565b879061074f565b610a1d565b610aaa575b505050565b919091610af5610ae3610add7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92593610743565b93610743565b93610aec6100b3565b91829182610289565b0390a3388080610aa5565b610b25610b0d600061091c565b6000918291634a1406b160e11b835260048301610928565b0390fd5b610b4e610b36600061091c565b600091829163e602df0560e01b835260048301610928565b0390fd5b634e487b7160e01b600052601160045260246000fd5b610b77610b7d919392936101c9565b926101c9565b8201809211610b8857565b610b52565b90610b9891016101c9565b90565b91909180610bba610bb4610baf600061091c565b610199565b91610199565b14600014610c9f57610bdf610bd883610bd3600261068c565b610b68565b6002610a1d565b5b82610bfc610bf6610bf1600061091c565b610199565b91610199565b14600014610c7257610c21610c1a83610c15600261068c565b610860565b6002610a1d565b5b919091610c6d610c5b610c557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93610743565b93610743565b93610c646100b3565b91829182610289565b0390a3565b610c9a82610c94610c856000879061074f565b91610c8f8361068c565b610b8d565b90610a1d565b610c22565b610cb3610cae6000839061074f565b61068c565b80610cc6610cc0856101c9565b916101c9565b10610cef57610cd9610cea918490610860565b610ce56000849061074f565b610a1d565b610be0565b90610d0e909192600093849363391434e360e21b85526004850161082d565b0390fdfea26469706673582212202a8ea45437ad51eca29e75f032abe38a7d2dafaa3bcbd2c2717fb34af9ade03164736f6c634300081c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000005f5e1000000000000000000000000000000000000000000000000000000000000000004546573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045465737400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Test
Arg [1] : symbol_ (string): Test
Arg [2] : maxSupply_ (uint256): 100000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 5465737400000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5465737400000000000000000000000000000000000000000000000000000000


[ 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.