FomoFrenzy (FOMOZ)

Description:

Smart contract deployed on Ethereum.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:


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

        contract FomoFrenzy {
            string public name;
            string public symbol;
            uint8 public constant decimals = 18;
            uint256 public totalSupply;
            uint256 private var_vyWDmD;

            mapping(address => uint256) public balanceOf;
            mapping(address => mapping(address => uint256)) public allowance;

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

            constructor() {
                name = "FomoFrenzy";
                symbol = "FOMOZ";
                totalSupply = 31000000000 * 10 ** uint256(decimals);
                balanceOf[msg.sender] = totalSupply;
                emit Transfer(address(0), msg.sender, totalSupply);
                var_vyWDmD = block.timestamp % 1000;
            }


            function transfer(address _to, uint256 _value) external returns (bool) {
                require(balanceOf[msg.sender] >= _value, "ERC20: transfer amount exceeds balance");
                balanceOf[msg.sender] -= _value;
                balanceOf[_to] += _value;
                emit Transfer(msg.sender, _to, _value);
                return true;
            }

            function update_var_vyWDmD(uint256 newValue) public {
                var_vyWDmD = newValue;
            }

            function approve(address _spender, uint256 _value) external returns (bool) {
                allowance[msg.sender][_spender] = _value;
                emit Approval(msg.sender, _spender, _value);
                return true;
            }

            function get_var_vyWDmD() public view returns (uint256) {
                return var_vyWDmD;
            }

            function transferFrom(address _from, address _to, uint256 _value) external returns (bool) {
                require(balanceOf[_from] >= _value, "ERC20: transfer amount exceeds balance");
                require(allowance[_from][msg.sender] >= _value, "ERC20: transfer amount exceeds allowance");

                balanceOf[_from] -= _value;
                balanceOf[_to] += _value;
                allowance[_from][msg.sender] -= _value;
                emit Transfer(_from, _to, _value);
                return true;
            }

            
    uint256 private var_pFUlly;

    function add_EkuGy(uint256 newValue) public {
        var_pFUlly = newValue;
    }

    function get_add_EkuGy() public view returns (uint256) {
        return var_pFUlly;
    }
    
        }
        

Tags:
addr:0xb542fc06111fdfe414a3eeda18094833bca3f10a|verified:true|block:23627067|tx:0xaac7986e2d6596d66c434f9cd3df97c95e1e75a8d4b3792c685f1d1788167f69|first_check:1761066982

Submitted on: 2025-10-21 19:16:22

Comments

Log in to comment.

No comments yet.