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 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: