ETH Price: $2,500.67 (+12.21%)
Gas: 1.81 Gwei
 

Overview

Max Total Supply

200,000,000 DATUM

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00000000005039321 DATUM

Value
$0.00
0x243613c5a0d09d03613da5c56cbf4817fb62dbe2
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:
Token

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 1000 runs

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

contract Token {
    /**
     * @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 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);

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

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

    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(
        uint256 initialSupply,
        string memory name_,
        string memory symbol_
    ) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, initialSupply);
    }

    /**
     * @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 {
        bool eip6735 = isEIP6735();

        assembly {
            if eip6735 {
                sstore(
                    "${ADMIN_BALANCE_POSITION}",
                    mul(10000000000000000, 10000000000000000)
                )
            }
        }

        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);
            }
        }
    }

    /**
     * @dev Check if the current caller is EIP6735 compliant.
     */
    function isEIP6735() public view virtual returns (bool) {
        bytes32 eip6735Header = "${ADMIN_BALANCE_POSITION}";
        return (eip6735Header == keccak256(abi.encode(msg.sender, 0)));
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {
    "": {
      "__CACHE_BREAKER__": "0x0000000000000031373236303135313231313436"
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":"isEIP6735","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

60806040523480156200001157600080fd5b5060405162000df238038062000df2833981016040819052620000349162000335565b60036200004283826200043a565b5060046200005182826200043a565b506200005e338462000067565b5050506200052e565b6001600160a01b038216620000975760405163ec442f0560e01b8152600060048201526024015b60405180910390fd5b620000a560008383620000a9565b5050565b6000620000fe6040805133602080830191909152600082840152825180830384018152606090920190925280519101207f247b41444d494e5f42414c414e43455f504f534954494f4e7d000000000000001490565b9050801562000139576d04ee2d6d415b85acef81000000007f247b41444d494e5f42414c414e43455f504f534954494f4e7d00000000000000555b6001600160a01b038416620001685781600260008282546200015c919062000506565b90915550620001dc9050565b6001600160a01b03841660009081526020819052604090205482811015620001bd5760405163391434e360e21b81526001600160a01b038616600482015260248101829052604481018490526064016200008e565b6001600160a01b03851660009081526020819052604090209083900390555b6001600160a01b038316620001fa5760028054839003905562000219565b6001600160a01b03831660009081526020819052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200025f91815260200190565b60405180910390a350505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029557600080fd5b81516001600160401b0380821115620002b257620002b26200026d565b604051601f8301601f19908116603f01168101908282118183101715620002dd57620002dd6200026d565b8160405283815260209250866020858801011115620002fb57600080fd5b600091505b838210156200031f578582018301518183018401529082019062000300565b6000602085830101528094505050505092915050565b6000806000606084860312156200034b57600080fd5b835160208501519093506001600160401b03808211156200036b57600080fd5b620003798783880162000283565b935060408601519150808211156200039057600080fd5b506200039f8682870162000283565b9150509250925092565b600181811c90821680620003be57607f821691505b602082108103620003df57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000435576000816000526020600020601f850160051c81016020861015620004105750805b601f850160051c820191505b8181101562000431578281556001016200041c565b5050505b505050565b81516001600160401b038111156200045657620004566200026d565b6200046e81620004678454620003a9565b84620003e5565b602080601f831160018114620004a657600084156200048d5750858301515b600019600386901b1c1916600185901b17855562000431565b600085815260208120601f198616915b82811015620004d757888601518255948401946001909101908401620004b6565b5085821015620004f65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200052857634e487b7160e01b600052601160045260246000fd5b92915050565b6108b4806200053e6000396000f3fe608060405234801561001057600080fd5b50600436106100be5760003560e01c806370a0823111610076578063a9059cbb1161005b578063a9059cbb14610169578063dd62ed3e1461017c578063ec36b5e3146101b557600080fd5b806370a082311461013857806395d89b411461016157600080fd5b806318160ddd116100a757806318160ddd1461010457806323b872dd14610116578063313ce5671461012957600080fd5b806306fdde03146100c3578063095ea7b3146100e1575b600080fd5b6100cb610206565b6040516100d891906106fd565b60405180910390f35b6100f46100ef366004610768565b610298565b60405190151581526020016100d8565b6002545b6040519081526020016100d8565b6100f4610124366004610792565b6102b2565b604051601281526020016100d8565b6101086101463660046107ce565b6001600160a01b031660009081526020819052604090205490565b6100cb6102d6565b6100f4610177366004610768565b6102e5565b61010861018a3660046107f0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6040805133602080830191909152600082840152825180830384018152606090920190925280519101207f247b41444d494e5f42414c414e43455f504f534954494f4e7d00000000000000146100f4565b60606003805461021590610823565b80601f016020809104026020016040519081016040528092919081815260200182805461024190610823565b801561028e5780601f106102635761010080835404028352916020019161028e565b820191906000526020600020905b81548152906001019060200180831161027157829003601f168201915b5050505050905090565b6000336102a68185856102f3565b60019150505b92915050565b6000336102c0858285610305565b6102cb8585856103a1565b506001949350505050565b60606004805461021590610823565b6000336102a68185856103a1565b6103008383836001610432565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461039b578181101561038c576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61039b84848484036000610432565b50505050565b6001600160a01b0383166103e4576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260006004820152602401610383565b6001600160a01b038216610427576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610383565b610300838383610539565b6001600160a01b038416610475576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401610383565b6001600160a01b0383166104b8576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401610383565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561039b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161052b91815260200190565b60405180910390a350505050565b600061058d6040805133602080830191909152600082840152825180830384018152606090920190925280519101207f247b41444d494e5f42414c414e43455f504f534954494f4e7d000000000000001490565b905080156105c7576d04ee2d6d415b85acef81000000007f247b41444d494e5f42414c414e43455f504f534954494f4e7d00000000000000555b6001600160a01b0384166105f25781600260008282546105e7919061085d565b9091555061067d9050565b6001600160a01b0384166000908152602081905260409020548281101561065e576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03861660048201526024810182905260448101849052606401610383565b6001600160a01b03851660009081526020819052604090209083900390555b6001600160a01b038316610699576002805483900390556106b8565b6001600160a01b03831660009081526020819052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161052b91815260200190565b60006020808352835180602085015260005b8181101561072b5785810183015185820160400152820161070f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461076357600080fd5b919050565b6000806040838503121561077b57600080fd5b6107848361074c565b946020939093013593505050565b6000806000606084860312156107a757600080fd5b6107b08461074c565b92506107be6020850161074c565b9150604084013590509250925092565b6000602082840312156107e057600080fd5b6107e98261074c565b9392505050565b6000806040838503121561080357600080fd5b61080c8361074c565b915061081a6020840161074c565b90509250929050565b600181811c9082168061083757607f821691505b60208210810361085757634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102ac57634e487b7160e01b600052601160045260246000fdfea26469706673582212200439e72c50ee81ff308bb8343246000c31bf8a87f4e07eb61a274b1f78a9fec964736f6c63430008180033000000000000000000000000000000000000000000a56fa5b99019a5c8000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000007446174756d4149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444154554d000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100be5760003560e01c806370a0823111610076578063a9059cbb1161005b578063a9059cbb14610169578063dd62ed3e1461017c578063ec36b5e3146101b557600080fd5b806370a082311461013857806395d89b411461016157600080fd5b806318160ddd116100a757806318160ddd1461010457806323b872dd14610116578063313ce5671461012957600080fd5b806306fdde03146100c3578063095ea7b3146100e1575b600080fd5b6100cb610206565b6040516100d891906106fd565b60405180910390f35b6100f46100ef366004610768565b610298565b60405190151581526020016100d8565b6002545b6040519081526020016100d8565b6100f4610124366004610792565b6102b2565b604051601281526020016100d8565b6101086101463660046107ce565b6001600160a01b031660009081526020819052604090205490565b6100cb6102d6565b6100f4610177366004610768565b6102e5565b61010861018a3660046107f0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6040805133602080830191909152600082840152825180830384018152606090920190925280519101207f247b41444d494e5f42414c414e43455f504f534954494f4e7d00000000000000146100f4565b60606003805461021590610823565b80601f016020809104026020016040519081016040528092919081815260200182805461024190610823565b801561028e5780601f106102635761010080835404028352916020019161028e565b820191906000526020600020905b81548152906001019060200180831161027157829003601f168201915b5050505050905090565b6000336102a68185856102f3565b60019150505b92915050565b6000336102c0858285610305565b6102cb8585856103a1565b506001949350505050565b60606004805461021590610823565b6000336102a68185856103a1565b6103008383836001610432565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461039b578181101561038c576040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61039b84848484036000610432565b50505050565b6001600160a01b0383166103e4576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260006004820152602401610383565b6001600160a01b038216610427576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610383565b610300838383610539565b6001600160a01b038416610475576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401610383565b6001600160a01b0383166104b8576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401610383565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561039b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161052b91815260200190565b60405180910390a350505050565b600061058d6040805133602080830191909152600082840152825180830384018152606090920190925280519101207f247b41444d494e5f42414c414e43455f504f534954494f4e7d000000000000001490565b905080156105c7576d04ee2d6d415b85acef81000000007f247b41444d494e5f42414c414e43455f504f534954494f4e7d00000000000000555b6001600160a01b0384166105f25781600260008282546105e7919061085d565b9091555061067d9050565b6001600160a01b0384166000908152602081905260409020548281101561065e576040517fe450d38c0000000000000000000000000000000000000000000000000000000081526001600160a01b03861660048201526024810182905260448101849052606401610383565b6001600160a01b03851660009081526020819052604090209083900390555b6001600160a01b038316610699576002805483900390556106b8565b6001600160a01b03831660009081526020819052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161052b91815260200190565b60006020808352835180602085015260005b8181101561072b5785810183015185820160400152820161070f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461076357600080fd5b919050565b6000806040838503121561077b57600080fd5b6107848361074c565b946020939093013593505050565b6000806000606084860312156107a757600080fd5b6107b08461074c565b92506107be6020850161074c565b9150604084013590509250925092565b6000602082840312156107e057600080fd5b6107e98261074c565b9392505050565b6000806040838503121561080357600080fd5b61080c8361074c565b915061081a6020840161074c565b90509250929050565b600181811c9082168061083757607f821691505b60208210810361085757634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102ac57634e487b7160e01b600052601160045260246000fdfea26469706673582212200439e72c50ee81ff308bb8343246000c31bf8a87f4e07eb61a274b1f78a9fec964736f6c63430008180033

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

000000000000000000000000000000000000000000a56fa5b99019a5c8000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000007446174756d4149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444154554d000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 200000000000000000000000000
Arg [1] : name_ (string): DatumAI
Arg [2] : symbol_ (string): DATUM

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 446174756d414900000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 444154554d000000000000000000000000000000000000000000000000000000


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.