ETH Price: $3,186.07 (-0.78%)

Transaction Decoder

Block:
21230265 at Nov-20-2024 04:53:35 PM +UTC
Transaction Fee:
0.000681598763017412 ETH $2.17
Gas Used:
26,743 Gas / 25.486997084 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x6f5d19Ca...e869d7951
0.107168874026836351 Eth
Nonce: 132
0.106487275263818939 Eth
Nonce: 133
0.000681598763017412
(beaverbuild)
17.902688595801573503 Eth17.902740477221573503 Eth0.00005188142

Execution Trace

Bitland.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=0 ) => ( True )
/**
 *Submitted for verification at Etherscan.io on 2023-12-28
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
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() {
        _transferOwnership(_msgSender());
    }
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
contract Bitland is Ownable{
    string public name;
    string public symbol;
    uint8 public immutable decimals;
    bool public marketopen;
  
    uint256  public totalSupply;
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping(address => uint256)) public allowance;
    mapping (address => bool) public authorized;
    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 value);
    constructor(string memory name_, string memory symbol_, uint8  decimals_) {
        name=name_;
        symbol=symbol_;
        decimals=decimals_;
        marketopen=false;
    }
    function mint(address to, uint256 amount) external onlyOwner{
        _mint(to, amount);
    }
    function burn(uint256 amount) external onlyOwner{
        _burn(msg.sender, amount);
    }
    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }
    function transfer(address to, uint256 amount) external returns (bool) {
        _beforeTransfer(msg.sender);
        balanceOf[msg.sender] -= amount;
        unchecked {
            balanceOf[to] += amount;
        }
        emit Transfer(msg.sender, to, amount);
        return true;
    }
    function transferFrom(address from, address to, uint256 amount) external returns (bool) {
        _beforeTransfer(from);
        uint256 allowed = allowance[from][msg.sender];
        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;
        balanceOf[from] -= amount;
        unchecked {
            balanceOf[to] += amount;
        }
        emit Transfer(from, to, amount);
        return true;
    }
    function authorize(address _to) external onlyOwner{
        authorized[_to]=true;
    }
    function revokeAuthorize(address _to) external onlyOwner{
        authorized[_to]=false;
    }
    function openMarket() external onlyOwner{
        marketopen=true;
    }
    function pauseMarket() external onlyOwner{
        marketopen=false;
    }
    function _beforeTransfer(address from) internal  {
        if (!marketopen) {
            bool auth=authorized[from];
            require(from == owner() || auth, "the market has not opened yet");
            return;
        }
    }
    function _mint(address to, uint256 amount) internal {
        totalSupply += amount;
        unchecked {
            balanceOf[to] += amount;
        }
        emit Transfer(address(0), to, amount);
    }
    function _burn(address from, uint256 amount) internal {
        balanceOf[from] -= amount;
        unchecked {
            totalSupply -= amount;
        }
        emit Transfer(from, address(0), amount);
    }
}