Logo:
Name: TMFINR
Ticker Symbol: TMFINR
Network: Pulsechain
Contract Address: 0xd7a41bE7637813F71Aaf23D5FfA5459c4972794d
Purpose: MEME Token.
Project URL: NIL.
Project social media: Twitter, Telegram
Contract Source Code: Link

REVIEWED BY: UncleKevinHex

The TMFINR token (0xd7a41bE7637813F71Aaf23D5FfA5459c4972794d) is a simple and straightforward ERC20 smart contract that inherits from the OpenZepplin suite of ERC20 related libraries, which is a trusted and reliable source widely used by the Solidity development community, reducing significant security risk.

 

The contract mints the entire allocation of 369,000,000,000,000 TMFINR tokens to the contract deployer (0xA21A8Ade8cB6F9e2492e147611C002CF817ec30b). Users of the token should be warned of a potential rug risk as the deployer has 100% allocation of the tokens. Besides that, there are no other visible vulnerabilities or malicious code in the contract.

 

// File: contracts/TMFINR.sol

 

pragma solidity ^0.8.20;

 

contract ThatMotherFuckerIsNotReal is ERC20 {

 

    constructor () ERC20(“ThatMotherFuckerIsNotReal”, “TMFINR”) {

        _mint(msg.sender, 369000000000000 * (10 ** uint256(decimals())));

    }

 

    function decimals() public view virtual override returns (uint8) {

        return 8;

    }

 

    // Her bush be on fire

    function burningBush(uint256 amount) public {

        _burn(msg.sender, amount);

    }

}

 

The contract only has three functions:

  • constructor that mints the tokens
  • decimals() that returns the number of decimal places of the token (8)
  • burningBush(uint256 amount) that anyone can call to burn any number of tokens

 

B9.xyz IS NOT OPTIMIZED TO BE VIEWED USING THE CURRENT RESOLUTION. IF YOU ARE USING A MOBILE PHONE, PLEASE ROTATE AND USE LANDSCAPE MODE.

Scroll to Top