ETH Price: $3,412.75 (-3.17%)
Gas: 7 Gwei

Contract

0x29A5c1Db7321C5c9EaE57F9366eE8eef00cA11fb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00
Transaction Hash
Method
Block
From
To
Value
Transfer201023532024-06-16 5:46:592 days ago1718516819IN
Shkooby Inu: SHKOOBY Token
0 ETH0.00011293.79452201
Transfer201023482024-06-16 5:45:592 days ago1718516759IN
Shkooby Inu: SHKOOBY Token
0 ETH0.00011543.87856834
Transfer201023452024-06-16 5:45:232 days ago1718516723IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000112983.80178779
Transfer201023442024-06-16 5:45:112 days ago1718516711IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000115893.8948553
Transfer201023272024-06-16 5:41:472 days ago1718516507IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000115673.88774375
Transfer201023262024-06-16 5:41:352 days ago1718516495IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000108163.63519567
Transfer201014472024-06-16 2:44:592 days ago1718505899IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000114653.85328678
Transfer201014452024-06-16 2:44:352 days ago1718505875IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000176343.76364985
Transfer201008262024-06-16 0:39:592 days ago1718498399IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000120442.57048649
Approve200992472024-06-15 19:21:112 days ago1718479271IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000162783.51591121
Approve200583092024-06-10 2:00:478 days ago1717984847IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000212794.59975666
Approve200016912024-06-02 4:16:2316 days ago1717301783IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000296116.36775185
Approve199888052024-05-31 9:05:1118 days ago1717146311IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000371327.98491126
Approve199546652024-05-26 14:32:2322 days ago1716733943IN
Shkooby Inu: SHKOOBY Token
0 ETH0.0005231411.24975355
Approve199508892024-05-26 1:52:3523 days ago1716688355IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000134922.89766367
Approve199458462024-05-25 8:57:4724 days ago1716627467IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000187434.04635603
Approve199217572024-05-22 0:07:4727 days ago1716336467IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000346877.48820051
Approve199143882024-05-20 23:24:2328 days ago1716247463IN
Shkooby Inu: SHKOOBY Token
0 ETH0.0010025121.55813036
Approve198212372024-05-07 22:42:1141 days ago1715121731IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000093543.85271397
Approve197859512024-05-03 0:16:2346 days ago1714695383IN
Shkooby Inu: SHKOOBY Token
0 ETH0.0004994510.72646964
Approve197790402024-05-02 1:03:3547 days ago1714611815IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000255025.50539529
Transfer197581062024-04-29 2:52:2350 days ago1714359143IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000174925.87891888
Transfer197581022024-04-29 2:51:3550 days ago1714359095IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000262445.60114723
Transfer197369042024-04-26 3:38:1153 days ago1714102691IN
Shkooby Inu: SHKOOBY Token
0 ETH0.0007387415.77478917
Approve197084732024-04-22 4:11:4757 days ago1713759107IN
Shkooby Inu: SHKOOBY Token
0 ETH0.000267355.76999344
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
135397152021-11-02 20:44:40958 days ago1635885880
Shkooby Inu: SHKOOBY Token
0.125 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Metacrypt_B_NC_X

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : Metacrypt_B_NC_X.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "./helpers/ERC20.sol";

import "../service/MetacryptHelper.sol";

contract Metacrypt_B_NC_X is ERC20, MetacryptHelper {
    constructor(
        address __metacrypt_target,
        string memory __metacrypt_name,
        string memory __metacrypt_symbol,
        uint256 __metacrypt_initial
    ) payable ERC20(__metacrypt_name, __metacrypt_symbol) MetacryptHelper("Metacrypt_B_NC_X", __metacrypt_target) {
        require(__metacrypt_initial > 0, "ERC20: supply cannot be zero");

        _mint(_msgSender(), __metacrypt_initial);
    }
}

File 2 of 5 : MetacryptHelper.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

abstract contract MetacryptHelper {
    address private __target;
    string private __identifier;

    constructor(string memory __metacrypt_id, address __metacrypt_target) payable {
        __target = __metacrypt_target;
        __identifier = __metacrypt_id;
        payable(__metacrypt_target).transfer(msg.value);
    }

    function createdByMetacrypt() public pure returns (bool) {
        return true;
    }

    function getIdentifier() public view returns (string memory) {
        return __identifier;
    }
}

File 3 of 5 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@uniswap/v2-periphery/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/utils/Context.sol";

contract ERC20 is Context, IERC20 {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

File 4 of 5 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 5 of 5 : IERC20.sol
pragma solidity >=0.5.0;

interface IERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"__metacrypt_target","type":"address"},{"internalType":"string","name":"__metacrypt_name","type":"string"},{"internalType":"string","name":"__metacrypt_symbol","type":"string"},{"internalType":"uint256","name":"__metacrypt_initial","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createdByMetacrypt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getIdentifier","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260405162000deb38038062000deb8339810160408190526200002691620003b1565b6040518060400160405280601081526020016f09acae8c2c6e4f2e0e8be84be9c86beb60831b81525084848481600390805190602001906200006a9291906200023e565b508051620000809060049060208401906200023e565b5050600580546001600160a01b0319166001600160a01b038416179055508151620000b39060069060208501906200023e565b506040516001600160a01b038216903480156108fc02916000818181858888f19350505050158015620000ea573d6000803e3d6000fd5b50505060008111620001435760405162461bcd60e51b815260206004820152601c60248201527f45524332303a20737570706c792063616e6e6f74206265207a65726f0000000060448201526064015b60405180910390fd5b6200014f338262000159565b50505050620004a7565b6001600160a01b038216620001b15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200013a565b8060026000828254620001c5919062000443565b90915550506001600160a01b03821660009081526020819052604081208054839290620001f490849062000443565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200024c906200046a565b90600052602060002090601f016020900481019282620002705760008555620002bb565b82601f106200028b57805160ff1916838001178555620002bb565b82800160010185558215620002bb579182015b82811115620002bb5782518255916020019190600101906200029e565b50620002c9929150620002cd565b5090565b5b80821115620002c95760008155600101620002ce565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200030c57600080fd5b81516001600160401b0380821115620003295762000329620002e4565b604051601f8301601f19908116603f01168101908282118183101715620003545762000354620002e4565b816040528381526020925086838588010111156200037157600080fd5b600091505b8382101562000395578582018301518183018401529082019062000376565b83821115620003a75760008385830101525b9695505050505050565b60008060008060808587031215620003c857600080fd5b84516001600160a01b0381168114620003e057600080fd5b60208601519094506001600160401b0380821115620003fe57600080fd5b6200040c88838901620002fa565b945060408701519150808211156200042357600080fd5b506200043287828801620002fa565b606096909601519497939650505050565b600082198211156200046557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200047f57607f821691505b60208210811415620004a157634e487b7160e01b600052602260045260246000fd5b50919050565b61093480620004b76000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb146101a0578063aa23e03d146101b3578063c2e7d95c146101bb578063dd62ed3e146101c257600080fd5b806370a082311461015c57806395d89b4114610185578063a457c2d71461018d57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc6101fb565b6040516100e99190610752565b60405180910390f35b6101056101003660046107c3565b61028d565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b6101056101353660046107ed565b6102a3565b604051601281526020016100e9565b6101056101573660046107c3565b610359565b61011961016a366004610829565b6001600160a01b031660009081526020819052604090205490565b6100dc610390565b61010561019b3660046107c3565b61039f565b6101056101ae3660046107c3565b61043a565b6100dc610447565b6001610105565b6101196101d036600461084b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461020a9061087e565b80601f01602080910402602001604051908101604052809291908181526020018280546102369061087e565b80156102835780601f1061025857610100808354040283529160200191610283565b820191906000526020600020905b81548152906001019060200180831161026657829003601f168201915b5050505050905090565b600061029a338484610456565b50600192915050565b60006102b084848461057a565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561033a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61034e853361034986856108cf565b610456565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161029a9185906103499086906108e6565b60606004805461020a9061087e565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610331565b610430338561034986856108cf565b5060019392505050565b600061029a33848461057a565b60606006805461020a9061087e565b6001600160a01b0383166104b85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610331565b6001600160a01b0382166105195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610331565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105de5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610331565b6001600160a01b0382166106405760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610331565b6001600160a01b038316600090815260208190526040902054818110156106b85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610331565b6106c282826108cf565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106f89084906108e6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161074491815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561077f57858101830151858201604001528201610763565b81811115610791576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146107be57600080fd5b919050565b600080604083850312156107d657600080fd5b6107df836107a7565b946020939093013593505050565b60008060006060848603121561080257600080fd5b61080b846107a7565b9250610819602085016107a7565b9150604084013590509250925092565b60006020828403121561083b57600080fd5b610844826107a7565b9392505050565b6000806040838503121561085e57600080fd5b610867836107a7565b9150610875602084016107a7565b90509250929050565b600181811c9082168061089257607f821691505b602082108114156108b357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108e1576108e16108b9565b500390565b600082198211156108f9576108f96108b9565b50019056fea2646970667358221220c3e3f1254e6b9ce04cbfe8f15d2a87db47611cea4f9672ce5004ffadcadc4cc764736f6c634300080900330000000000000000000000003980a73f4159f867e6eec7555d26622e53d356b9000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000314dc6448d9338c15b0a00000000000000000000000000000000000000000000000000000000000000000000000b53484b4f4f425920494e55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753484b4f4f425900000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb146101a0578063aa23e03d146101b3578063c2e7d95c146101bb578063dd62ed3e146101c257600080fd5b806370a082311461015c57806395d89b4114610185578063a457c2d71461018d57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc6101fb565b6040516100e99190610752565b60405180910390f35b6101056101003660046107c3565b61028d565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b6101056101353660046107ed565b6102a3565b604051601281526020016100e9565b6101056101573660046107c3565b610359565b61011961016a366004610829565b6001600160a01b031660009081526020819052604090205490565b6100dc610390565b61010561019b3660046107c3565b61039f565b6101056101ae3660046107c3565b61043a565b6100dc610447565b6001610105565b6101196101d036600461084b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461020a9061087e565b80601f01602080910402602001604051908101604052809291908181526020018280546102369061087e565b80156102835780601f1061025857610100808354040283529160200191610283565b820191906000526020600020905b81548152906001019060200180831161026657829003601f168201915b5050505050905090565b600061029a338484610456565b50600192915050565b60006102b084848461057a565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561033a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61034e853361034986856108cf565b610456565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161029a9185906103499086906108e6565b60606004805461020a9061087e565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610331565b610430338561034986856108cf565b5060019392505050565b600061029a33848461057a565b60606006805461020a9061087e565b6001600160a01b0383166104b85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610331565b6001600160a01b0382166105195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610331565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105de5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610331565b6001600160a01b0382166106405760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610331565b6001600160a01b038316600090815260208190526040902054818110156106b85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610331565b6106c282826108cf565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106f89084906108e6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161074491815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561077f57858101830151858201604001528201610763565b81811115610791576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146107be57600080fd5b919050565b600080604083850312156107d657600080fd5b6107df836107a7565b946020939093013593505050565b60008060006060848603121561080257600080fd5b61080b846107a7565b9250610819602085016107a7565b9150604084013590509250925092565b60006020828403121561083b57600080fd5b610844826107a7565b9392505050565b6000806040838503121561085e57600080fd5b610867836107a7565b9150610875602084016107a7565b90509250929050565b600181811c9082168061089257607f821691505b602082108114156108b357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108e1576108e16108b9565b500390565b600082198211156108f9576108f96108b9565b50019056fea2646970667358221220c3e3f1254e6b9ce04cbfe8f15d2a87db47611cea4f9672ce5004ffadcadc4cc764736f6c63430008090033

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

0000000000000000000000003980a73f4159f867e6eec7555d26622e53d356b9000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000314dc6448d9338c15b0a00000000000000000000000000000000000000000000000000000000000000000000000b53484b4f4f425920494e55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753484b4f4f425900000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : __metacrypt_target (address): 0x3980A73f4159f867E6EEC7555D26622e53d356B9
Arg [1] : __metacrypt_name (string): SHKOOBY INU
Arg [2] : __metacrypt_symbol (string): SHKOOBY
Arg [3] : __metacrypt_initial (uint256): 1000000000000000000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000003980a73f4159f867e6eec7555d26622e53d356b9
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 000000000000000000000000000000000000314dc6448d9338c15b0a00000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 53484b4f4f425920494e55000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 53484b4f4f425900000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

SHKOOBY INU ($SHKOOBY) is a decentralized & community-driven meme token on the Ethereum Blockchain. The Shkooby Metaverse (Shkooby-verse) will feature a Swap, Games, NFTs, and an NFT Marketplace.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.