MANUFACTORY Token Logo

MNFT [MANUFACTORY] Token

About MNFT

Listings

Token 21 months
CoinMarketCap 21 months

ManuFactory is a construction and management simulation game focused on resource gathering and strategy combined with survival elements; all developed in a truly Play-and-Earn mentality inspired by the hit indie game Factorio.

At ManuFactory, players will dive deep into the role of an Engineer, who must fight monsters, build up defenses, collect minerals and automate entire processes.

Social

Laser Scorebeta Last Audit: 19 January 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

MANUFACTORY.allowance(address,address).owner (contracts/MANUFACTORY.sol#127) shadows:
- Ownable.owner() (contracts/access/Ownable.sol#35-37) (function)
MANUFACTORY._approve(address,address,uint256).owner (contracts/MANUFACTORY.sol#316) shadows:
- Ownable.owner() (contracts/access/Ownable.sol#35-37) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in MANUFACTORY._transfer(address,address,uint256) (contracts/MANUFACTORY.sol#227-251):
External calls:
- BP.protect(sender,recipient,amount) (contracts/MANUFACTORY.sol#236)
State variables written after the call(s):
- _balances[sender] = senderBalance - amount (contracts/MANUFACTORY.sol#244)
- _balances[recipient] += amount (contracts/MANUFACTORY.sol#246)
Reentrancy in MANUFACTORY.transferFrom(address,address,uint256) (contracts/MANUFACTORY.sol#156-170):
External calls:
- _transfer(sender,recipient,amount) (contracts/MANUFACTORY.sol#161)
- BP.protect(sender,recipient,amount) (contracts/MANUFACTORY.sol#236)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (contracts/MANUFACTORY.sol#166)
- _allowances[owner][spender] = amount (contracts/MANUFACTORY.sol#323)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MANUFACTORY._transfer(address,address,uint256) (contracts/MANUFACTORY.sol#227-251):
External calls:
- BP.protect(sender,recipient,amount) (contracts/MANUFACTORY.sol#236)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (contracts/MANUFACTORY.sol#248)
Reentrancy in MANUFACTORY.transferFrom(address,address,uint256) (contracts/MANUFACTORY.sol#156-170):
External calls:
- _transfer(sender,recipient,amount) (contracts/MANUFACTORY.sol#161)
- BP.protect(sender,recipient,amount) (contracts/MANUFACTORY.sol#236)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/MANUFACTORY.sol#324)
- _approve(sender,_msgSender(),currentAllowance - amount) (contracts/MANUFACTORY.sol#166)
Apply the check-effects-interactions pattern.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.2']
- ^0.8.2 (contracts/BPContract.sol#2)
- ^0.8.0 (contracts/MANUFACTORY.sol#4)
- ^0.8.0 (contracts/access/Ownable.sol#4)
- ^0.8.0 (contracts/interfaces/IERC20.sol#4)
- ^0.8.0 (contracts/interfaces/IERC20Metadata.sol#4)
- ^0.8.0 (contracts/utils/Context.sol#4)
Use one Solidity version.

Additional information: link

Context._msgData() (contracts/utils/Context.sol#21-23) is never used and should be removed
MANUFACTORY._burn(address,uint256) (contracts/MANUFACTORY.sol#285-300) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.2 (contracts/BPContract.sol#2) allows old versions
Pragma version^0.8.0 (contracts/MANUFACTORY.sol#4) allows old versions
Pragma version^0.8.0 (contracts/access/Ownable.sol#4) allows old versions
Pragma version^0.8.0 (contracts/interfaces/IERC20.sol#4) allows old versions
Pragma version^0.8.0 (contracts/interfaces/IERC20Metadata.sol#4) allows old versions
Pragma version^0.8.0 (contracts/utils/Context.sol#4) allows old versions
solc-0.8.2 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Parameter MANUFACTORY.setBotProtectionAddress(address)._bp (contracts/MANUFACTORY.sol#367) is not in mixedCase
Parameter MANUFACTORY.setBotProtectionEnabled(bool)._enabled (contracts/MANUFACTORY.sol#372) is not in mixedCase
Variable MANUFACTORY.BP (contracts/MANUFACTORY.sol#39) is not in mixedCase
Variable MANUFACTORY.BPDisabledForever (contracts/MANUFACTORY.sol#41) is not in mixedCase
Constant MANUFACTORY._name (contracts/MANUFACTORY.sol#49) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MANUFACTORY._symbol (contracts/MANUFACTORY.sol#50) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

MANUFACTORY.constructor() (contracts/MANUFACTORY.sol#61-63) uses literals with too many digits:
- _mint(_msgSender(),500000000 * 10 ** decimals()) (contracts/MANUFACTORY.sol#62)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- MANUFACTORY.name() (contracts/MANUFACTORY.sol#68-70)
symbol() should be declared external:
- MANUFACTORY.symbol() (contracts/MANUFACTORY.sol#76-78)
totalSupply() should be declared external:
- MANUFACTORY.totalSupply() (contracts/MANUFACTORY.sol#100-102)
balanceOf(address) should be declared external:
- MANUFACTORY.balanceOf(address) (contracts/MANUFACTORY.sol#107-109)
transfer(address,uint256) should be declared external:
- MANUFACTORY.transfer(address,uint256) (contracts/MANUFACTORY.sol#119-122)
allowance(address,address) should be declared external:
- MANUFACTORY.allowance(address,address) (contracts/MANUFACTORY.sol#127-129)
approve(address,uint256) should be declared external:
- MANUFACTORY.approve(address,uint256) (contracts/MANUFACTORY.sol#138-141)
transferFrom(address,address,uint256) should be declared external:
- MANUFACTORY.transferFrom(address,address,uint256) (contracts/MANUFACTORY.sol#156-170)
increaseAllowance(address,uint256) should be declared external:
- MANUFACTORY.increaseAllowance(address,uint256) (contracts/MANUFACTORY.sol#184-187)
decreaseAllowance(address,uint256) should be declared external:
- MANUFACTORY.decreaseAllowance(address,uint256) (contracts/MANUFACTORY.sol#203-211)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/access/Ownable.sol#54-56)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/access/Ownable.sol#62-65)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for MNFT

News for MNFT