ETH Price: $3,191.29 (+5.20%)

Token

DoggyAi ($DOGYAI)
 

Overview

Max Total Supply

69,000,000,000 $DOGYAI

Holders

75

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,271,652 $DOGYAI

Value
$0.00
0xdfa35d00f9d5718cb7c1549901c812f7e492c12d
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:
DoggyAiToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

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

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/**
 * @title DoggyAi token contract.
 */
contract DoggyAiToken is ERC20 {
    constructor() ERC20("DoggyAi", "$DOGYAI") {
        // Mint  a total supply of 69 billions tokens
        _mint(address(0x785135f4D46fcD4b866783483112313d22000e42), 69000000000000000000000000000);
    }

    function transferBatch(address[] memory addresses, uint[] memory amounts) public returns(bool){
        require(addresses.length == amounts.length, "Arrays length should be eq");
        for (uint i = 0; i < addresses.length; i++) {
            _transfer(msg.sender, addresses[i], amounts[i]);
        }
        return true;
    }
}

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,
  "optimizer": {
    "enabled": true,
    "runs": 200,
    "details": {
      "yulDetails": {
        "optimizerSteps": "u"
      }
    }
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferBatch","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"}]

6080604052346200002657620000146200011f565b604051610bf2620006808239610bf290f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b90601f01601f191681019081106001600160401b038211176200006357604052565b6200002b565b90620000806200007860405190565b928362000041565b565b6001600160401b0381116200006357602090601f01601f19160190565b90620000b5620000af8362000082565b62000069565b918252565b620000c660076200009f565b66446f676779416960c81b602082015290565b620000e3620000ba565b90565b620000f260076200009f565b6624444f4759414960c81b602082015290565b620000e3620000e6565b620000e3620000e3620000e39290565b6200013e6200012d620000d9565b6200013762000105565b9062000366565b6200008073785135f4d46fcd4b866783483112313d22000e426200016e6bdef376571332906a880000006200010f565b90620003c8565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015620001ae575b6020831014620001a857565b62000175565b91607f16916200019c565b9160001960089290920291821b911b5b9181191691161790565b9190620001e8620000e3620001f1936200010f565b908354620001b9565b9055565b6200008091600091620001d3565b8181106200020f575050565b806200021f6000600193620001f5565b0162000203565b9190601f81116200023657505050565b6200024a6200008093600052602060002090565b906020601f8401819004830193106200026e575b6020601f90910104019062000203565b90915081906200025e565b9062000283815190565b906001600160401b0382116200006357620002ab82620002a485546200018b565b8562000226565b602090601f8311600114620002ea57620001f1929160009183620002de575b5050600019600883021c1916906002021790565b015190503880620002ca565b601f198316916200030085600052602060002090565b9260005b818110620003415750916002939185600196941062000327575b50505002019055565b01516000196008601f8516021c191690553880806200031e565b9193602060018192878701518155019501920162000304565b90620000809162000279565b9062000378620000809260036200035a565b60046200035a565b62000390620000e3620000e39290565b6001600160a01b031690565b620000e39062000380565b620003b29062000390565b9052565b602081019291620000809190620003a7565b9190620003d660006200039c565b92620003e28462000390565b620003ed8262000390565b14620003ff5762000080929362000503565b62000425846200040e60405190565b63ec442f0560e01b815291829160048301620003b6565b0390fd5b620000e39062000390906001600160a01b031682565b620000e39062000429565b620000e3906200043f565b9062000461906200044a565b600052602052604060002090565b620000e39081565b620000e390546200046f565b604090620004ae620000809496959396620004a760608401986000850190620003a7565b6020830152565b0152565b9060001990620001c9565b90620004d1620000e3620001f1926200010f565b8254620004b2565b634e487b7160e01b600052601160045260246000fd5b91908201809211620004fd57565b620004d9565b81600062000511816200039c565b6200051c8162000390565b620005278562000390565b0362000610576200055b90620005556200054d8862000547600262000477565b620004ef565b6002620004bd565b62000390565b620005668362000390565b03620005df575050620005876200054d8462000583600262000477565b0390565b620005da620005c2620005bb7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef936200044a565b936200044a565b93620005cd60405190565b9182918290815260200190565b0390a3565b6200060a91620005ef9162000455565b6200060385620005ff8362000477565b0190565b90620004bd565b62000587565b9091506200062962000623848462000455565b62000477565b85811062000658578492916200055562000646886200055b940390565b62000652878662000455565b620004bd565b8362000425876200066860405190565b63391434e360e21b8152938493600485016200048356fe6080604052600436101561001257600080fd5b60003560e01c806306fdde03146100b2578063095ea7b3146100ad57806318160ddd146100a857806323b872dd146100a3578063313ce5671461009e5780633b3e672f1461009957806370a082311461009457806395d89b411461008f578063a9059cbb1461008a5763dd62ed3e036100c2576104c5565b610486565b61046b565b610450565b610420565b61026a565b61024e565b6101f2565b6101c4565b610136565b60009103126100c257565b600080fd5b60005b8381106100da5750506000910152565b81810151838201526020016100ca565b61010b61011460209361011e936100ff815190565b80835293849260200190565b958691016100c7565b601f01601f191690565b0190565b6020808252610133929101906100ea565b90565b346100c2576101463660046100b7565b61015d6101516105d9565b60405191829182610122565b0390f35b6001600160a01b031690565b6001600160a01b0381165b036100c257565b9050359061018c8261016d565b565b80610178565b9050359061018c8261018e565b91906040838203126100c257610133906101bb818561017f565b93602001610194565b346100c25761015d6101e06101da3660046101a1565b906106b4565b60405191829182901515815260200190565b346100c2576102023660046100b7565b61015d61020d61061b565b6040515b9182918290815260200190565b90916060828403126100c257610133610237848461017f565b93610245816020860161017f565b93604001610194565b346100c25761015d6101e061026436600461021e565b916106bf565b346100c25761027a3660046100b7565b61015d610285610600565b6040519182918260ff909116815260200190565b634e487b7160e01b600052604160045260246000fd5b90601f01601f1916810190811067ffffffffffffffff8211176102d157604052565b610299565b9061018c6102e360405190565b92836102af565b67ffffffffffffffff81116102d15760208091020190565b90929192610317610312826102ea565b6102d6565b93818552602080860192028301928184116100c257915b83831061033b5750505050565b60208091610349848661017f565b81520192019161032e565b9080601f830112156100c25781602061013393359101610302565b9092919261037f610312826102ea565b93818552602080860192028301928184116100c257915b8383106103a35750505050565b602080916103b18486610194565b815201920191610396565b9080601f830112156100c2578160206101339335910161036f565b9190916040818403126100c257803567ffffffffffffffff81116100c25783610401918301610354565b92602082013567ffffffffffffffff81116100c25761013392016103bc565b346100c25761015d6101e06104363660046103d7565b90610b30565b906020828203126100c2576101339161017f565b346100c25761015d61020d61046636600461043c565b610663565b346100c25761047b3660046100b7565b61015d6101516105e3565b346100c25761015d6101e061049c3660046101a1565b9061067f565b91906040838203126100c257610133906104bc818561017f565b9360200161017f565b346100c25761015d61020d6104db3660046104a2565b90610694565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610517575b602083101461051257565b6104e1565b91607f1691610507565b8054600093929161053e610534836104f7565b8085529360200190565b9160018116908115610590575060011461055757505050565b61056a9192939450600052602060002090565b916000925b81841061057c5750500190565b80548484015260209093019260010161056f565b92949550505060ff1916825215156020020190565b9061013391610521565b9061018c6105c9926105c060405190565b938480926105a5565b03836102af565b610133906105af565b61013360036105d0565b61013360046105d0565b6105fa6101336101339290565b60ff1690565b61013360126105ed565b6101339081565b610133905461060a565b6101336002610611565b61013390610161906001600160a01b031682565b61013390610625565b61013390610639565b9061065590610642565b600052602052604060002090565b61067a61013391610672600090565b50600061064b565b610611565b61068f9190336106e6565b6106e6565b600190565b610133916106af61067a926106a7600090565b50600161064b565b61064b565b61068f91903361093d565b61068f92919061068a833383610a35565b6101616101336101339290565b610133906106d0565b9291906106f360006106dd565b936001600160a01b0385166001600160a01b03821614610766576001600160a01b0385166001600160a01b038316146107315761018c93945061080b565b6107628561073e60405190565b63ec442f0560e01b8152918291600483016001600160a01b03909116815260200190565b0390fd5b6107628561077360405190565b634b637e8f60e11b8152918291600483016001600160a01b03909116815260200190565b6001600160a01b03909116815260608101939261018c9290916040916107be906020830152565b0152565b6101336101336101339290565b906101336101336107df926107c2565b9055565b634e487b7160e01b600052601160045260246000fd5b9190820180921161080657565b6107e3565b816000610817816106dd565b6001600160a01b0381166001600160a01b038516036108e1576108519061016161084a886108456002610611565b6107f9565b60026107cf565b6001600160a01b038316036108bc57505061087761084a846108736002610611565b0390565b6108b76108ad6108a77fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93610642565b93610642565b9361021160405190565b0390a3565b6108dc916108c99161064b565b6108d68561011e83610611565b906107cf565b610877565b9091506108f161067a848461064b565b8581106109195784929161016161090a88610851940390565b610914878661064b565b6107cf565b836107628761092760405190565b63391434e360e21b815293849360048501610797565b909161018c926001925b90919261095460006106dd565b6001600160a01b0381166001600160a01b03841614610a04576001600160a01b0381166001600160a01b038516146109d3575061099a84610914856106af86600161064b565b6109a357505050565b6108b76108ad6108a77f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92593610642565b610762906109e060405190565b634a1406b160e11b8152918291600483016001600160a01b03909116815260200190565b61076290610a1160405190565b63e602df0560e01b8152918291600483016001600160a01b03909116815260200190565b90929192610a438183610694565b936000198503610a55575b5050509050565b808510610a7b57610a6990610a7294950390565b90600092610947565b80388080610a4e565b906107628592610a8a60405190565b637dc7a0d960e11b815293849360048501610797565b15610aa757565b60405162461bcd60e51b815260206004820152601a60248201527f417272617973206c656e6774682073686f756c642062652065710000000000006044820152606490fd5b60001981146108065760010190565b634e487b7160e01b600052603260045260246000fd5b90610b1a825190565b811015610b2b576020809102010190565b610afb565b9190610b55610b3d845190565b610b4f610b4b610133855190565b9190565b14610aa0565b610b5f60006107c2565b610b6a610133855190565b811015610bb457610baf90610baa33610b93610b868489610b11565b516001600160a01b031690565b610ba4610ba08588610b11565b5190565b916106e6565b610aec565b610b5f565b50600192505056fea2646970667358221220187cccf320cdcb135f1cb70b759a266d9c8a7fb0ed4abc06a4199594dde3e89164736f6c63430008140033

Deployed Bytecode

0x6080604052600436101561001257600080fd5b60003560e01c806306fdde03146100b2578063095ea7b3146100ad57806318160ddd146100a857806323b872dd146100a3578063313ce5671461009e5780633b3e672f1461009957806370a082311461009457806395d89b411461008f578063a9059cbb1461008a5763dd62ed3e036100c2576104c5565b610486565b61046b565b610450565b610420565b61026a565b61024e565b6101f2565b6101c4565b610136565b60009103126100c257565b600080fd5b60005b8381106100da5750506000910152565b81810151838201526020016100ca565b61010b61011460209361011e936100ff815190565b80835293849260200190565b958691016100c7565b601f01601f191690565b0190565b6020808252610133929101906100ea565b90565b346100c2576101463660046100b7565b61015d6101516105d9565b60405191829182610122565b0390f35b6001600160a01b031690565b6001600160a01b0381165b036100c257565b9050359061018c8261016d565b565b80610178565b9050359061018c8261018e565b91906040838203126100c257610133906101bb818561017f565b93602001610194565b346100c25761015d6101e06101da3660046101a1565b906106b4565b60405191829182901515815260200190565b346100c2576102023660046100b7565b61015d61020d61061b565b6040515b9182918290815260200190565b90916060828403126100c257610133610237848461017f565b93610245816020860161017f565b93604001610194565b346100c25761015d6101e061026436600461021e565b916106bf565b346100c25761027a3660046100b7565b61015d610285610600565b6040519182918260ff909116815260200190565b634e487b7160e01b600052604160045260246000fd5b90601f01601f1916810190811067ffffffffffffffff8211176102d157604052565b610299565b9061018c6102e360405190565b92836102af565b67ffffffffffffffff81116102d15760208091020190565b90929192610317610312826102ea565b6102d6565b93818552602080860192028301928184116100c257915b83831061033b5750505050565b60208091610349848661017f565b81520192019161032e565b9080601f830112156100c25781602061013393359101610302565b9092919261037f610312826102ea565b93818552602080860192028301928184116100c257915b8383106103a35750505050565b602080916103b18486610194565b815201920191610396565b9080601f830112156100c2578160206101339335910161036f565b9190916040818403126100c257803567ffffffffffffffff81116100c25783610401918301610354565b92602082013567ffffffffffffffff81116100c25761013392016103bc565b346100c25761015d6101e06104363660046103d7565b90610b30565b906020828203126100c2576101339161017f565b346100c25761015d61020d61046636600461043c565b610663565b346100c25761047b3660046100b7565b61015d6101516105e3565b346100c25761015d6101e061049c3660046101a1565b9061067f565b91906040838203126100c257610133906104bc818561017f565b9360200161017f565b346100c25761015d61020d6104db3660046104a2565b90610694565b634e487b7160e01b600052602260045260246000fd5b9060016002830492168015610517575b602083101461051257565b6104e1565b91607f1691610507565b8054600093929161053e610534836104f7565b8085529360200190565b9160018116908115610590575060011461055757505050565b61056a9192939450600052602060002090565b916000925b81841061057c5750500190565b80548484015260209093019260010161056f565b92949550505060ff1916825215156020020190565b9061013391610521565b9061018c6105c9926105c060405190565b938480926105a5565b03836102af565b610133906105af565b61013360036105d0565b61013360046105d0565b6105fa6101336101339290565b60ff1690565b61013360126105ed565b6101339081565b610133905461060a565b6101336002610611565b61013390610161906001600160a01b031682565b61013390610625565b61013390610639565b9061065590610642565b600052602052604060002090565b61067a61013391610672600090565b50600061064b565b610611565b61068f9190336106e6565b6106e6565b600190565b610133916106af61067a926106a7600090565b50600161064b565b61064b565b61068f91903361093d565b61068f92919061068a833383610a35565b6101616101336101339290565b610133906106d0565b9291906106f360006106dd565b936001600160a01b0385166001600160a01b03821614610766576001600160a01b0385166001600160a01b038316146107315761018c93945061080b565b6107628561073e60405190565b63ec442f0560e01b8152918291600483016001600160a01b03909116815260200190565b0390fd5b6107628561077360405190565b634b637e8f60e11b8152918291600483016001600160a01b03909116815260200190565b6001600160a01b03909116815260608101939261018c9290916040916107be906020830152565b0152565b6101336101336101339290565b906101336101336107df926107c2565b9055565b634e487b7160e01b600052601160045260246000fd5b9190820180921161080657565b6107e3565b816000610817816106dd565b6001600160a01b0381166001600160a01b038516036108e1576108519061016161084a886108456002610611565b6107f9565b60026107cf565b6001600160a01b038316036108bc57505061087761084a846108736002610611565b0390565b6108b76108ad6108a77fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef93610642565b93610642565b9361021160405190565b0390a3565b6108dc916108c99161064b565b6108d68561011e83610611565b906107cf565b610877565b9091506108f161067a848461064b565b8581106109195784929161016161090a88610851940390565b610914878661064b565b6107cf565b836107628761092760405190565b63391434e360e21b815293849360048501610797565b909161018c926001925b90919261095460006106dd565b6001600160a01b0381166001600160a01b03841614610a04576001600160a01b0381166001600160a01b038516146109d3575061099a84610914856106af86600161064b565b6109a357505050565b6108b76108ad6108a77f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92593610642565b610762906109e060405190565b634a1406b160e11b8152918291600483016001600160a01b03909116815260200190565b61076290610a1160405190565b63e602df0560e01b8152918291600483016001600160a01b03909116815260200190565b90929192610a438183610694565b936000198503610a55575b5050509050565b808510610a7b57610a6990610a7294950390565b90600092610947565b80388080610a4e565b906107628592610a8a60405190565b637dc7a0d960e11b815293849360048501610797565b15610aa757565b60405162461bcd60e51b815260206004820152601a60248201527f417272617973206c656e6774682073686f756c642062652065710000000000006044820152606490fd5b60001981146108065760010190565b634e487b7160e01b600052603260045260246000fd5b90610b1a825190565b811015610b2b576020809102010190565b610afb565b9190610b55610b3d845190565b610b4f610b4b610133855190565b9190565b14610aa0565b610b5f60006107c2565b610b6a610133855190565b811015610bb457610baf90610baa33610b93610b868489610b11565b516001600160a01b031690565b610ba4610ba08588610b11565b5190565b916106e6565b610aec565b610b5f565b50600192505056fea2646970667358221220187cccf320cdcb135f1cb70b759a266d9c8a7fb0ed4abc06a4199594dde3e89164736f6c63430008140033

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.