ETH Price: $3,347.57 (+0.69%)

Contract

0xF831938CaF837cd505dE196BBb408D81A06376ab
 

More Info

Private Name Tags

TokenTracker

JEFF (JEFF) (@$0.0049)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve212496892024-11-23 9:57:231 hrs ago1732355843IN
Thejefftoken: JEFF Token
0 ETH0.0005558111.94626339
Approve212455332024-11-22 20:03:4714 hrs ago1732305827IN
Thejefftoken: JEFF Token
0 ETH0.0006538214.05281173
Approve212455142024-11-22 19:59:4714 hrs ago1732305587IN
Thejefftoken: JEFF Token
0 ETH0.000592812.81397556
Approve212422602024-11-22 9:05:1125 hrs ago1732266311IN
Thejefftoken: JEFF Token
0 ETH0.0005304811.40199663
Approve212350102024-11-21 8:48:112 days ago1732178891IN
Thejefftoken: JEFF Token
0 ETH0.0005381811.55253728
Approve212346982024-11-21 7:44:592 days ago1732175099IN
Thejefftoken: JEFF Token
0 ETH0.000436019.35942399
Approve212346112024-11-21 7:27:232 days ago1732174043IN
Thejefftoken: JEFF Token
0 ETH0.0004710710.11200092
Approve212342462024-11-21 6:14:112 days ago1732169651IN
Thejefftoken: JEFF Token
0 ETH0.000458239.83621895
Approve212325792024-11-21 0:38:472 days ago1732149527IN
Thejefftoken: JEFF Token
0 ETH0.000421229.04197051
Approve212306392024-11-20 18:08:592 days ago1732126139IN
Thejefftoken: JEFF Token
0 ETH0.000957320.54920722
Approve212287902024-11-20 11:55:592 days ago1732103759IN
Thejefftoken: JEFF Token
0 ETH0.0005326111.43295365
Approve212278672024-11-20 8:50:353 days ago1732092635IN
Thejefftoken: JEFF Token
0 ETH0.000467510.03538009
Approve212215832024-11-19 11:49:113 days ago1732016951IN
Thejefftoken: JEFF Token
0 ETH0.0005510411.89604564
Transfer212212942024-11-19 10:51:114 days ago1732013471IN
Thejefftoken: JEFF Token
0 ETH0.000544310.53463939
Approve212188632024-11-19 2:43:114 days ago1731984191IN
Thejefftoken: JEFF Token
0 ETH0.0002746911.30332985
Approve212184072024-11-19 1:11:594 days ago1731978719IN
Thejefftoken: JEFF Token
0 ETH0.000429589.28840507
Approve212146172024-11-18 12:30:594 days ago1731933059IN
Thejefftoken: JEFF Token
0 ETH0.0005496711.79919177
Approve212126482024-11-18 5:55:475 days ago1731909347IN
Thejefftoken: JEFF Token
0 ETH0.0004913910.54806695
Approve212124262024-11-18 5:11:235 days ago1731906683IN
Thejefftoken: JEFF Token
0 ETH0.000446719.59149468
Approve212123272024-11-18 4:51:355 days ago1731905495IN
Thejefftoken: JEFF Token
0 ETH0.0004860610.51223102
Approve212109142024-11-18 0:07:595 days ago1731888479IN
Thejefftoken: JEFF Token
0 ETH0.000401438.67970632
Approve212101552024-11-17 21:36:115 days ago1731879371IN
Thejefftoken: JEFF Token
0 ETH0.0005036310.88664039
Approve212084882024-11-17 16:01:235 days ago1731859283IN
Thejefftoken: JEFF Token
0 ETH0.0006599814.16697078
Approve212084092024-11-17 15:45:235 days ago1731858323IN
Thejefftoken: JEFF Token
0 ETH0.000667714.35119078
Approve212056002024-11-17 6:21:116 days ago1731824471IN
Thejefftoken: JEFF Token
0 ETH0.000200838.28452259
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
171999422023-05-06 7:03:11567 days ago1683356591
Thejefftoken: JEFF Token
0.007488 ETH
171990612023-05-06 4:04:23567 days ago1683345863  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x0CA7b4B7...78Feb6388
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
DxStandardToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-28
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

/**
 * @dev Interface of the ERC20 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);
}



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



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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        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;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}




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

    mapping (address => mapping (address => uint256)) private _allowances;
    bool public generatedUsingDxMint = true;
    uint256 private _totalSupply;
    bool public mintingFinishedPermanent = false;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address public _creator;
    /**
     * @dev Sets the values for {name}, {symbol} and {decimals}.
     *
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (address creator_,string memory name_, string memory symbol_,uint8 decimals_, uint256 tokenSupply_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _creator = creator_;
        
        _mint(_creator,tokenSupply_);
        mintingFinishedPermanent = true;
    }

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"creator_","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"tokenSupply_","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":"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":[],"name":"_creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generatedUsingDxMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinishedPermanent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063bc8bde6411610071578063bc8bde6414610262578063dd4670641461027a578063dd62ed3e1461028d578063f2fde38b146102c6578063f5eae936146102d957600080fd5b806395d89b4114610224578063a457c2d71461022c578063a69df4b51461023f578063a9059cbb14610247578063b6c523241461025a57600080fd5b806339509351116100f457806339509351146101ac57806370a08231146101bf578063715018a6146101e8578063787b1191146101f25780638da5cb5b146101ff57600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102e6565b6040516101469190610be3565b60405180910390f35b61016261015d366004610ba0565b610378565b6040519015158152602001610146565b6006545b604051908152602001610146565b610162610192366004610b64565b61038e565b600a5460405160ff9091168152602001610146565b6101626101ba366004610ba0565b610444565b6101766101cd366004610b0f565b6001600160a01b031660009081526003602052604090205490565b6101f061047b565b005b6005546101629060ff1681565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6101396104dd565b61016261023a366004610ba0565b6104ec565b6101f0610587565b610162610255366004610ba0565b61068d565b600254610176565b600a5461020c9061010090046001600160a01b031681565b6101f0610288366004610bca565b61069a565b61017661029b366004610b31565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101f06102d4366004610b0f565b61071f565b6007546101629060ff1681565b6060600880546102f590610c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461032190610c9c565b801561036e5780601f106103435761010080835404028352916020019161036e565b820191906000526020600020905b81548152906001019060200180831161035157829003601f168201915b5050505050905090565b60006103853384846107f7565b50600192915050565b600061039b84848461091b565b6001600160a01b0384166000908152600460209081526040808320338452909152902054828110156104255760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61043985336104348685610c85565b6107f7565b506001949350505050565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610385918590610434908690610c6d565b6000546001600160a01b031633146104a55760405162461bcd60e51b815260040161041c90610c38565b600080546040516001600160a01b0390911690600080516020610cee833981519152908390a3600080546001600160a01b0319169055565b6060600980546102f590610c9c565b3360009081526004602090815260408083206001600160a01b03861684529091528120548281101561056e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161041c565b61057d33856104348685610c85565b5060019392505050565b6001546001600160a01b031633146105ed5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161041c565b600254421161063e5760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161041c565b600154600080546040516001600160a01b039384169390911691600080516020610cee83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061038533848461091b565b6000546001600160a01b031633146106c45760405162461bcd60e51b815260040161041c90610c38565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556106f38142610c6d565b600255600080546040516001600160a01b0390911690600080516020610cee833981519152908390a350565b6000546001600160a01b031633146107495760405162461bcd60e51b815260040161041c90610c38565b6001600160a01b0381166107ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041c565b600080546040516001600160a01b0380851693921691600080516020610cee83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161041c565b6001600160a01b0382166108ba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161041c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661097f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161041c565b6001600160a01b0382166109e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161041c565b6001600160a01b03831660009081526003602052604090205481811015610a595760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161041c565b610a638282610c85565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610a99908490610c6d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ae591815260200190565b60405180910390a350505050565b80356001600160a01b0381168114610b0a57600080fd5b919050565b600060208284031215610b2157600080fd5b610b2a82610af3565b9392505050565b60008060408385031215610b4457600080fd5b610b4d83610af3565b9150610b5b60208401610af3565b90509250929050565b600080600060608486031215610b7957600080fd5b610b8284610af3565b9250610b9060208501610af3565b9150604084013590509250925092565b60008060408385031215610bb357600080fd5b610bbc83610af3565b946020939093013593505050565b600060208284031215610bdc57600080fd5b5035919050565b600060208083528351808285015260005b81811015610c1057858101830151858201604001528201610bf4565b81811115610c22576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610c8057610c80610cd7565b500190565b600082821015610c9757610c97610cd7565b500390565b600181811c90821680610cb057607f821691505b60208210811415610cd157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a26469706673582212207919306ed78497906cedc932089bcb18ed766f07691d95a737d2ca7360a603af64736f6c63430008070033

Deployed Bytecode Sourcemap

12570:9902:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13621:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15795:169;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;15795:169:0;1633:187:1;14748:108:0;14836:12;;14748:108;;;6945:25:1;;;6933:2;6918:18;14748:108:0;6799:177:1;16446:422:0;;;;;;:::i;:::-;;:::i;14583:100::-;14666:9;;14583:100;;14666:9;;;;7123:36:1;;7111:2;7096:18;14583:100:0;6981:184:1;17277:215:0;;;;;;:::i;:::-;;:::i;14919:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15020:18:0;14993:7;15020:18;;;:9;:18;;;;;;;14919:127;11230:148;;;:::i;:::-;;12776:39;;;;;;;;;10587:79;10625:7;10652:6;-1:-1:-1;;;;;10652:6:0;10587:79;;;-1:-1:-1;;;;;1589:32:1;;;1571:51;;1559:2;1544:18;10587:79:0;1425:203:1;13840:104:0;;;:::i;17995:377::-;;;;;;:::i;:::-;;:::i;12252:305::-;;;:::i;15259:175::-;;;;;;:::i;:::-;;:::i;11785:89::-;11857:9;;11785:89;;12994:23;;;;;;;;-1:-1:-1;;;;;12994:23:0;;;11950:226;;;;;;:::i;:::-;;:::i;15497:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15613:18:0;;;15586:7;15613:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15497:151;11533:244;;;;;;:::i;:::-;;:::i;12857:44::-;;;;;;;;;13621:100;13675:13;13708:5;13701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13621:100;:::o;15795:169::-;15878:4;15895:39;3946:10;15918:7;15927:6;15895:8;:39::i;:::-;-1:-1:-1;15952:4:0;15795:169;;;;:::o;16446:422::-;16552:4;16569:36;16579:6;16587:9;16598:6;16569:9;:36::i;:::-;-1:-1:-1;;;;;16645:19:0;;16618:24;16645:19;;;:11;:19;;;;;;;;3946:10;16645:33;;;;;;;;16697:26;;;;16689:79;;;;-1:-1:-1;;;16689:79:0;;4250:2:1;16689:79:0;;;4232:21:1;4289:2;4269:18;;;4262:30;4328:34;4308:18;;;4301:62;-1:-1:-1;;;4379:18:1;;;4372:38;4427:19;;16689:79:0;;;;;;;;;16779:57;16788:6;3946:10;16810:25;16829:6;16810:16;:25;:::i;:::-;16779:8;:57::i;:::-;-1:-1:-1;16856:4:0;;16446:422;-1:-1:-1;;;;16446:422:0:o;17277:215::-;3946:10;17365:4;17414:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17414:34:0;;;;;;;;;;17365:4;;17382:80;;17405:7;;17414:47;;17451:10;;17414:47;:::i;11230:148::-;10799:6;;-1:-1:-1;;;;;10799:6:0;3946:10;10799:22;10791:67;;;;-1:-1:-1;;;10791:67:0;;;;;;;:::i;:::-;11337:1:::1;11321:6:::0;;11300:40:::1;::::0;-1:-1:-1;;;;;11321:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;11300:40:0;11337:1;;11300:40:::1;11368:1;11351:19:::0;;-1:-1:-1;;;;;;11351:19:0::1;::::0;;11230:148::o;13840:104::-;13896:13;13929:7;13922:14;;;;;:::i;17995:377::-;3946:10;18088:4;18132:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18132:34:0;;;;;;;;;;18185:35;;;;18177:85;;;;-1:-1:-1;;;18177:85:0;;6595:2:1;18177:85:0;;;6577:21:1;6634:2;6614:18;;;6607:30;6673:34;6653:18;;;6646:62;-1:-1:-1;;;6724:18:1;;;6717:35;6769:19;;18177:85:0;6393:401:1;18177:85:0;18273:67;3946:10;18296:7;18305:34;18324:15;18305:16;:34;:::i;18273:67::-;-1:-1:-1;18360:4:0;;17995:377;-1:-1:-1;;;17995:377:0:o;12252:305::-;12304:14;;-1:-1:-1;;;;;12304:14:0;12322:10;12304:28;12296:76;;;;-1:-1:-1;;;12296:76:0;;6191:2:1;12296:76:0;;;6173:21:1;6230:2;6210:18;;;6203:30;6269:34;6249:18;;;6242:62;-1:-1:-1;;;6320:18:1;;;6313:33;6363:19;;12296:76:0;5989:399:1;12296:76:0;12409:9;;12391:15;:27;12383:72;;;;-1:-1:-1;;;12383:72:0;;5831:2:1;12383:72:0;;;5813:21:1;5870:2;5850:18;;;5843:30;5909:33;5889:18;;;5882:61;5960:18;;12383:72:0;5629:355:1;12383:72:0;12500:14;;;12492:6;;12471:44;;-1:-1:-1;;;;;12500:14:0;;;;12492:6;;;;-1:-1:-1;;;;;;;;;;;12471:44:0;;12535:14;;;12526:23;;-1:-1:-1;;;;;;12526:23:0;-1:-1:-1;;;;;12535:14:0;;;12526:23;;;;;;12252:305::o;15259:175::-;15345:4;15362:42;3946:10;15386:9;15397:6;15362:9;:42::i;11950:226::-;10799:6;;-1:-1:-1;;;;;10799:6:0;3946:10;10799:22;10791:67;;;;-1:-1:-1;;;10791:67:0;;;;;;;:::i;:::-;12031:6:::1;::::0;;;12014:23;;-1:-1:-1;;;;;;12014:23:0;;::::1;-1:-1:-1::0;;;;;12031:6:0;::::1;12014:23;::::0;;;12048:19:::1;::::0;;12090:22:::1;12108:4:::0;12090:15:::1;:22;:::i;:::-;12078:9;:34:::0;12165:1:::1;12149:6:::0;;12128:40:::1;::::0;-1:-1:-1;;;;;12149:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;12128:40:0;12165:1;;12128:40:::1;11950:226:::0;:::o;11533:244::-;10799:6;;-1:-1:-1;;;;;10799:6:0;3946:10;10799:22;10791:67;;;;-1:-1:-1;;;10791:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11622:22:0;::::1;11614:73;;;::::0;-1:-1:-1;;;11614:73:0;;3033:2:1;11614:73:0::1;::::0;::::1;3015:21:1::0;3072:2;3052:18;;;3045:30;3111:34;3091:18;;;3084:62;-1:-1:-1;;;3162:18:1;;;3155:36;3208:19;;11614:73:0::1;2831:402:1::0;11614:73:0::1;11724:6;::::0;;11703:38:::1;::::0;-1:-1:-1;;;;;11703:38:0;;::::1;::::0;11724:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;11703:38:0;::::1;11752:6;:17:::0;;-1:-1:-1;;;;;;11752:17:0::1;-1:-1:-1::0;;;;;11752:17:0;;;::::1;::::0;;;::::1;::::0;;11533:244::o;21428:346::-;-1:-1:-1;;;;;21530:19:0;;21522:68;;;;-1:-1:-1;;;21522:68:0;;5426:2:1;21522:68:0;;;5408:21:1;5465:2;5445:18;;;5438:30;5504:34;5484:18;;;5477:62;-1:-1:-1;;;5555:18:1;;;5548:34;5599:19;;21522:68:0;5224:400:1;21522:68:0;-1:-1:-1;;;;;21609:21:0;;21601:68;;;;-1:-1:-1;;;21601:68:0;;3440:2:1;21601:68:0;;;3422:21:1;3479:2;3459:18;;;3452:30;3518:34;3498:18;;;3491:62;-1:-1:-1;;;3569:18:1;;;3562:32;3611:19;;21601:68:0;3238:398:1;21601:68:0;-1:-1:-1;;;;;21682:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21734:32;;6945:25:1;;;21734:32:0;;6918:18:1;21734:32:0;;;;;;;21428:346;;;:::o;18862:604::-;-1:-1:-1;;;;;18968:20:0;;18960:70;;;;-1:-1:-1;;;18960:70:0;;5020:2:1;18960:70:0;;;5002:21:1;5059:2;5039:18;;;5032:30;5098:34;5078:18;;;5071:62;-1:-1:-1;;;5149:18:1;;;5142:35;5194:19;;18960:70:0;4818:401:1;18960:70:0;-1:-1:-1;;;;;19049:23:0;;19041:71;;;;-1:-1:-1;;;19041:71:0;;2629:2:1;19041:71:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;19041:71:0;2427:399:1;19041:71:0;-1:-1:-1;;;;;19209:17:0;;19185:21;19209:17;;;:9;:17;;;;;;19245:23;;;;19237:74;;;;-1:-1:-1;;;19237:74:0;;3843:2:1;19237:74:0;;;3825:21:1;3882:2;3862:18;;;3855:30;3921:34;3901:18;;;3894:62;-1:-1:-1;;;3972:18:1;;;3965:36;4018:19;;19237:74:0;3641:402:1;19237:74:0;19342:22;19358:6;19342:13;:22;:::i;:::-;-1:-1:-1;;;;;19322:17:0;;;;;;;:9;:17;;;;;;:42;;;;19375:20;;;;;;;;:30;;19399:6;;19322:17;19375:30;;19399:6;;19375:30;:::i;:::-;;;;;;;;19440:9;-1:-1:-1;;;;;19423:35:0;19432:6;-1:-1:-1;;;;;19423:35:0;;19451:6;19423:35;;;;6945:25:1;;6933:2;6918:18;;6799:177;19423:35:0;;;;;;;;18949:517;18862:604;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;4457:356::-;4659:2;4641:21;;;4678:18;;;4671:30;4737:34;4732:2;4717:18;;4710:62;4804:2;4789:18;;4457:356::o;7170:128::-;7210:3;7241:1;7237:6;7234:1;7231:13;7228:39;;;7247:18;;:::i;:::-;-1:-1:-1;7283:9:1;;7170:128::o;7303:125::-;7343:4;7371:1;7368;7365:8;7362:34;;;7376:18;;:::i;:::-;-1:-1:-1;7413:9:1;;7303:125::o;7433:380::-;7512:1;7508:12;;;;7555;;;7576:61;;7630:4;7622:6;7618:17;7608:27;;7576:61;7683:2;7675:6;7672:14;7652:18;7649:38;7646:161;;;7729:10;7724:3;7720:20;7717:1;7710:31;7764:4;7761:1;7754:15;7792:4;7789:1;7782:15;7646:161;;7433:380;;;:::o;7818:127::-;7879:10;7874:3;7870:20;7867:1;7860:31;7910:4;7907:1;7900:15;7934:4;7931:1;7924:15

Swarm Source

ipfs://7919306ed78497906cedc932089bcb18ed766f07691d95a737d2ca7360a603af

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  ]
[ 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.