ETH Price: $3,834.01 (+5.08%)

Contract

0x0C3983165E9BcE0a9Bb43184CC4eEBb26dce48fA
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve200743212024-06-12 7:41:47182 days ago1718178107IN
0x0C398316...26dce48fA
0 ETH0.00019518.0565895
Approve193864952024-03-07 23:11:59278 days ago1709853119IN
0x0C398316...26dce48fA
0 ETH0.0026845158.13542418
Approve188350652023-12-21 15:14:35356 days ago1703171675IN
0x0C398316...26dce48fA
0 ETH0.0014392559.43144222
Approve188292642023-12-20 19:41:59357 days ago1703101319IN
0x0C398316...26dce48fA
0 ETH0.0012691752.40857341
Approve188292622023-12-20 19:41:35357 days ago1703101295IN
0x0C398316...26dce48fA
0 ETH0.0013040553.84893083
Approve184838442023-11-02 10:35:35405 days ago1698921335IN
0x0C398316...26dce48fA
0 ETH0.0003787815.64124931
Approve184273782023-10-25 12:54:23413 days ago1698238463IN
0x0C398316...26dce48fA
0 ETH0.0004426318.27804113
Approve183141782023-10-09 16:43:11429 days ago1696869791IN
0x0C398316...26dce48fA
0 ETH0.0005971924.66012646
Approve183141712023-10-09 16:41:47429 days ago1696869707IN
0x0C398316...26dce48fA
0 ETH0.0006037924.93250016
Approve178848682023-08-10 13:45:23489 days ago1691675123IN
0x0C398316...26dce48fA
0 ETH0.0006799828.07877888
Approve178629532023-08-07 12:07:11492 days ago1691410031IN
0x0C398316...26dce48fA
0 ETH0.0006358826.25782364
Approve178048172023-07-30 9:00:11500 days ago1690707611IN
0x0C398316...26dce48fA
0 ETH0.0003624714.96782387
Approve174338202023-06-08 6:29:47552 days ago1686205787IN
0x0C398316...26dce48fA
0 ETH0.0005604423.1425331
Approve174033012023-06-03 23:07:47556 days ago1685833667IN
0x0C398316...26dce48fA
0 ETH0.0004562118.83847632
Approve170879722023-04-20 13:22:11601 days ago1681996931IN
0x0C398316...26dce48fA
0 ETH0.0013156454.32733822
Approve170879722023-04-20 13:22:11601 days ago1681996931IN
0x0C398316...26dce48fA
0 ETH0.0013156454.32733822
Approve170724892023-04-18 8:48:23603 days ago1681807703IN
0x0C398316...26dce48fA
0 ETH0.0009052537.38085029
Approve170487432023-04-14 23:54:11606 days ago1681516451IN
0x0C398316...26dce48fA
0 ETH0.0011040423.90900359
Approve170121072023-04-09 17:08:59612 days ago1681060139IN
0x0C398316...26dce48fA
0 ETH0.0004885920.17551502
Approve170118852023-04-09 16:23:23612 days ago1681057403IN
0x0C398316...26dce48fA
0 ETH0.0005090821.02180703
Approve170115642023-04-09 15:17:11612 days ago1681053431IN
0x0C398316...26dce48fA
0 ETH0.0005046920.840557
Approve170113642023-04-09 14:35:11612 days ago1681050911IN
0x0C398316...26dce48fA
0 ETH0.0004757919.64705149
Approve170091772023-04-09 7:07:47612 days ago1681024067IN
0x0C398316...26dce48fA
0 ETH0.0005006520.67380138
Approve169172792023-03-27 7:37:11625 days ago1679902631IN
0x0C398316...26dce48fA
0 ETH0.0004478818.49467861
Approve165773632023-02-07 14:01:35673 days ago1675778495IN
0x0C398316...26dce48fA
0 ETH0.0009107737.60882893
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AlphaFLOOR

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
File 1 of 4 : aFloorERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.7.5;

import "./types/ERC20.sol";

contract AlphaFLOOR is ERC20 {
    using SafeMath for uint256;

    address public minter;
    bool public initialized;

    constructor(address _minter) ERC20("AlphaFloor", "aFLOOR", 9) {
      require(_minter != address(0), "Minter cannot be empty");
      minter = _minter;
    }

    function burn(uint256 _amount) external {
        _burn(msg.sender, _amount);
    }

    function initialize(address _to) external {
      require(msg.sender == minter, "Sender is not minter");
      require(!initialized, "aFLOOR already initialized");
      initialized = true;
      _mint(_to, 500_000_000_000_000);
    }
}

File 2 of 4 : ERC20.sol
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity >=0.7.5;

import "../libraries/SafeMath.sol";

import "../interfaces/IERC20.sol";


abstract contract ERC20 is IERC20 {

    using SafeMath for uint256;

    // TODO comment actual hash value.
    bytes32 constant private ERC20TOKEN_ERC1820_INTERFACE_ID = keccak256( "ERC20Token" );
    
    mapping (address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    string internal _name;
    
    string internal _symbol;
    
    uint8 internal immutable _decimals;

    constructor (string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

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

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

    function totalSupply() public view 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) {
        _transfer(msg.sender, 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(msg.sender, spender, amount);
        return true;
    }

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

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

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

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _beforeTokenTransfer(address(0), account, amount);
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

  function _beforeTokenTransfer( address from_, address to_, uint256 amount_ ) internal virtual { }
}

File 3 of 4 : SafeMath.sol
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.7.5;


// TODO(zx): Replace all instances of SafeMath with OZ implementation
library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    // Only used in the  BondingCalculator.sol
    function sqrrt(uint256 a) internal pure returns (uint c) {
        if (a > 3) {
            c = a;
            uint b = add( div( a, 2), 1 );
            while (b < c) {
                c = b;
                b = div( add( div( a, b ), b), 2 );
            }
        } else if (a != 0) {
            c = 1;
        }
    }

}

File 4 of 4 : IERC20.sol
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity >=0.7.5;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"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"},{"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"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":[{"internalType":"address","name":"_to","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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"}]

60a060405234801561001057600080fd5b5060405162000fe138038062000fe18339818101604052602081101561003557600080fd5b5051604080518082018252600a81526920b6383430a33637b7b960b11b60208281019182528351808501909452600684526530a32627a7a960d11b9084015281519192916009916100899160039190610148565b50815161009d906004906020850190610148565b5060f81b7fff000000000000000000000000000000000000000000000000000000000000001660805250506001600160a01b038116610123576040805162461bcd60e51b815260206004820152601660248201527f4d696e7465722063616e6e6f7420626520656d70747900000000000000000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03929092169190911790556101e9565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261017e57600085556101c4565b82601f1061019757805160ff19168380011785556101c4565b828001600101855582156101c4579182015b828111156101c45782518255916020019190600101906101a9565b506101d09291506101d4565b5090565b5b808211156101d057600081556001016101d5565b60805160f81c610dda62000207600039806104b25250610dda6000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80633950935111610097578063a457c2d711610066578063a457c2d7146102ca578063a9059cbb146102f6578063c4d66de814610322578063dd62ed3e14610348576100f5565b8063395093511461025157806342966c681461027d57806370a082311461029c57806395d89b41146102c2576100f5565b8063158ef93e116100d3578063158ef93e146101db57806318160ddd146101e357806323b872dd146101fd578063313ce56714610233576100f5565b806306fdde03146100fa5780630754617214610177578063095ea7b31461019b575b600080fd5b610102610376565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017f61040c565b604080516001600160a01b039092168252519081900360200190f35b6101c7600480360360408110156101b157600080fd5b506001600160a01b03813516906020013561041b565b604080519115158252519081900360200190f35b6101c7610431565b6101eb610441565b60408051918252519081900360200190f35b6101c76004803603606081101561021357600080fd5b506001600160a01b03813581169160208101359091169060400135610447565b61023b6104b0565b6040805160ff9092168252519081900360200190f35b6101c76004803603604081101561026757600080fd5b506001600160a01b0381351690602001356104d4565b61029a6004803603602081101561029357600080fd5b503561050a565b005b6101eb600480360360208110156102b257600080fd5b50356001600160a01b0316610517565b610102610532565b6101c7600480360360408110156102e057600080fd5b506001600160a01b038135169060200135610593565b6101c76004803603604081101561030c57600080fd5b506001600160a01b0381351690602001356105e2565b61029a6004803603602081101561033857600080fd5b50356001600160a01b03166105ef565b6101eb6004803603604081101561035e57600080fd5b506001600160a01b03813581169160200135166106ec565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104025780601f106103d757610100808354040283529160200191610402565b820191906000526020600020905b8154815290600101906020018083116103e557829003601f168201915b5050505050905090565b6005546001600160a01b031681565b6000610428338484610717565b50600192915050565b600554600160a01b900460ff1681565b60025490565b6000610454848484610803565b6104a684336104a185604051806060016040528060288152602001610d17602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061095e565b610717565b5060019392505050565b7f000000000000000000000000000000000000000000000000000000000000000090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104289185906104a190866109f5565b6105143382610a56565b50565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104025780601f106103d757610100808354040283529160200191610402565b600061042833846104a185604051806060016040528060258152602001610da9602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061095e565b6000610428338484610803565b6005546001600160a01b0316331461064e576040805162461bcd60e51b815260206004820152601460248201527f53656e646572206973206e6f74206d696e746572000000000000000000000000604482015290519081900360640190fd5b600554600160a01b900460ff16156106ad576040805162461bcd60e51b815260206004820152601a60248201527f61464c4f4f5220616c726561647920696e697469616c697a6564000000000000604482015290519081900360640190fd5b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055610514816601c6bf52634000610b52565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661075c5760405162461bcd60e51b8152600401808060200182810382526024815260200180610d856024913960400191505060405180910390fd5b6001600160a01b0382166107a15760405162461bcd60e51b8152600401808060200182810382526022815260200180610ccf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166108485760405162461bcd60e51b8152600401808060200182810382526025815260200180610d606025913960400191505060405180910390fd5b6001600160a01b03821661088d5760405162461bcd60e51b8152600401808060200182810382526023815260200180610c8a6023913960400191505060405180910390fd5b610898838383610c42565b6108d581604051806060016040528060268152602001610cf1602691396001600160a01b038616600090815260208190526040902054919061095e565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461090490826109f5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156109ed5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156109b257818101518382015260200161099a565b50505050905090810190601f1680156109df5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610a4f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610a9b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610d3f6021913960400191505060405180910390fd5b610aa782600083610c42565b610ae481604051806060016040528060228152602001610cad602291396001600160a01b038516600090815260208190526040902054919061095e565b6001600160a01b038316600090815260208190526040902055600254610b0a9082610c47565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610bad576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610bb960008383610c42565b600254610bc690826109f5565b6002556001600160a01b038216600090815260208190526040902054610bec90826109f5565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000610a4f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061095e56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa164736f6c6343000705000a00000000000000000000000040d73df4f99bae688ce3c23a01022224fe16c7b2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c80633950935111610097578063a457c2d711610066578063a457c2d7146102ca578063a9059cbb146102f6578063c4d66de814610322578063dd62ed3e14610348576100f5565b8063395093511461025157806342966c681461027d57806370a082311461029c57806395d89b41146102c2576100f5565b8063158ef93e116100d3578063158ef93e146101db57806318160ddd146101e357806323b872dd146101fd578063313ce56714610233576100f5565b806306fdde03146100fa5780630754617214610177578063095ea7b31461019b575b600080fd5b610102610376565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017f61040c565b604080516001600160a01b039092168252519081900360200190f35b6101c7600480360360408110156101b157600080fd5b506001600160a01b03813516906020013561041b565b604080519115158252519081900360200190f35b6101c7610431565b6101eb610441565b60408051918252519081900360200190f35b6101c76004803603606081101561021357600080fd5b506001600160a01b03813581169160208101359091169060400135610447565b61023b6104b0565b6040805160ff9092168252519081900360200190f35b6101c76004803603604081101561026757600080fd5b506001600160a01b0381351690602001356104d4565b61029a6004803603602081101561029357600080fd5b503561050a565b005b6101eb600480360360208110156102b257600080fd5b50356001600160a01b0316610517565b610102610532565b6101c7600480360360408110156102e057600080fd5b506001600160a01b038135169060200135610593565b6101c76004803603604081101561030c57600080fd5b506001600160a01b0381351690602001356105e2565b61029a6004803603602081101561033857600080fd5b50356001600160a01b03166105ef565b6101eb6004803603604081101561035e57600080fd5b506001600160a01b03813581169160200135166106ec565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104025780601f106103d757610100808354040283529160200191610402565b820191906000526020600020905b8154815290600101906020018083116103e557829003601f168201915b5050505050905090565b6005546001600160a01b031681565b6000610428338484610717565b50600192915050565b600554600160a01b900460ff1681565b60025490565b6000610454848484610803565b6104a684336104a185604051806060016040528060288152602001610d17602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061095e565b610717565b5060019392505050565b7f000000000000000000000000000000000000000000000000000000000000000990565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104289185906104a190866109f5565b6105143382610a56565b50565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104025780601f106103d757610100808354040283529160200191610402565b600061042833846104a185604051806060016040528060258152602001610da9602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061095e565b6000610428338484610803565b6005546001600160a01b0316331461064e576040805162461bcd60e51b815260206004820152601460248201527f53656e646572206973206e6f74206d696e746572000000000000000000000000604482015290519081900360640190fd5b600554600160a01b900460ff16156106ad576040805162461bcd60e51b815260206004820152601a60248201527f61464c4f4f5220616c726561647920696e697469616c697a6564000000000000604482015290519081900360640190fd5b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055610514816601c6bf52634000610b52565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661075c5760405162461bcd60e51b8152600401808060200182810382526024815260200180610d856024913960400191505060405180910390fd5b6001600160a01b0382166107a15760405162461bcd60e51b8152600401808060200182810382526022815260200180610ccf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166108485760405162461bcd60e51b8152600401808060200182810382526025815260200180610d606025913960400191505060405180910390fd5b6001600160a01b03821661088d5760405162461bcd60e51b8152600401808060200182810382526023815260200180610c8a6023913960400191505060405180910390fd5b610898838383610c42565b6108d581604051806060016040528060268152602001610cf1602691396001600160a01b038616600090815260208190526040902054919061095e565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461090490826109f5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156109ed5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156109b257818101518382015260200161099a565b50505050905090810190601f1680156109df5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610a4f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610a9b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610d3f6021913960400191505060405180910390fd5b610aa782600083610c42565b610ae481604051806060016040528060228152602001610cad602291396001600160a01b038516600090815260208190526040902054919061095e565b6001600160a01b038316600090815260208190526040902055600254610b0a9082610c47565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610bad576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610bb960008383610c42565b600254610bc690826109f5565b6002556001600160a01b038216600090815260208190526040902054610bec90826109f5565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000610a4f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061095e56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa164736f6c6343000705000a

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

00000000000000000000000040d73df4f99bae688ce3c23a01022224fe16c7b2

-----Decoded View---------------
Arg [0] : _minter (address): 0x40D73Df4F99bae688CE3C23a01022224FE16C7b2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000040d73df4f99bae688ce3c23a01022224fe16c7b2


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.