PokeMonFi Coin Token Logo

PMC [PokeMonFi Coin] Token

About PMC

Listings

Not Found
Token 20 months
white paper

PokeMonFi is a game filled with fascinating characters defined and shared by the community with a sustainable economic system.

Play to Earn blockchain game based on BSC network.

In a virtual world built through BLOCKCHAIN encryption technology and token economy, there is such an incredible group of Pokemon’s(NFT).

Laser Scorebeta Last Audit: 31 May 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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


Contract ownership is not renounced (belongs to a wallet)

Base.setTokensOwner(address).tokensOwner (#1635) lacks a zero-check on :
- _tokensOwner = tokensOwner (#1636)
MoneyCore.constructor(uint256,address).account (#1718) lacks a zero-check on :
- _account = account (#1722)
Check that the address is not zero.

Additional information: link

Variable 'ECDSA.tryRecover(bytes32,bytes).r (#1370)' in ECDSA.tryRecover(bytes32,bytes) (#1365-1394) potentially used before declaration: r = mload(uint256)(signature + 0x20) (#1387)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in MoneyCtrl.ownerWithDraw(address,uint256) (#1855-1870):
External calls:
- IMoneyCore(_moneyCoreAddress).withDraw(to,amount) (#1868)
Event emitted after the call(s):
- OwnerWithdrawMoney(to,amount) (#1869)
Reentrancy in MoneyCtrl.withDraw(uint256,uint256,uint256,bytes) (#1872-1904):
External calls:
- IMoneyCore(_moneyCoreAddress).withDraw(msg.sender,amount) (#1900)
Event emitted after the call(s):
- WithdrawMoney(msg.sender,withDrawType,amount,nonce,sign) (#1903)
Apply the check-effects-interactions pattern.

Additional information: link

Address.verifyCallResult(bool,bytes,string) (#697-717) uses assembly
- INLINE ASM (#709-712)
ECDSA.tryRecover(bytes32,bytes) (#1365-1394) uses assembly
- INLINE ASM (#1375-1379)
- INLINE ASM (#1386-1389)
Do not use evm assembly.

Additional information: link

AccessControl._setRoleAdmin(bytes32,bytes32) (#1200-1204) is never used and should be removed
Address.functionCall(address,bytes) (#581-583) is never used and should be removed
Address.functionCall(address,bytes,string) (#591-597) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#610-616) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#624-635) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#670-672) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#680-689) is never used and should be removed
Address.functionStaticCall(address,bytes) (#643-645) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#653-662) is never used and should be removed
Address.sendValue(address,uint256) (#556-561) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#697-717) is never used and should be removed
Base.debugLog(string) (#1639-1641) is never used and should be removed
Context._msgData() (#120-122) is never used and should be removed
Counters.decrement(Counters.Counter) (#1803-1809) is never used and should be removed
Counters.reset(Counters.Counter) (#1811-1813) is never used and should be removed
ECDSA._throwError(ECDSA.RecoverError) (#1331-1343) is never used and should be removed
ECDSA.recover(bytes32,bytes) (#1410-1414) is never used and should be removed
ECDSA.recover(bytes32,bytes32,bytes32) (#1438-1446) is never used and should be removed
ECDSA.recover(bytes32,uint8,bytes32,bytes32) (#1489-1498) is never used and should be removed
ECDSA.toEthSignedMessageHash(bytes) (#1522-1524) is never used and should be removed
ECDSA.toTypedDataHash(bytes32,bytes32) (#1535-1537) is never used and should be removed
Strings.toHexString(uint256) (#941-952) is never used and should be removed
Strings.toString(uint256) (#916-936) is never used and should be removed
Utils.addressToString(address) (#1687-1693) is never used and should be removed
Utils.addressToUint160(address) (#1667-1669) is never used and should be removed
Utils.bytesToString(bytes) (#1695-1710) is never used and should be removed
Utils.uint160ToAddress(uint160) (#1671-1673) is never used and should be removed
Utils.uint256ToString(uint256) (#1679-1685) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#3) allows old versions
solc-0.8.9 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

Low level call in Address.sendValue(address,uint256) (#556-561):
- (success) = recipient.call{value: amount}() (#559)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#624-635):
- (success,returndata) = target.call{value: value}(data) (#633)
Low level call in Address.functionStaticCall(address,bytes,string) (#653-662):
- (success,returndata) = target.staticcall(data) (#660)
Low level call in Address.functionDelegateCall(address,bytes,string) (#680-689):
- (success,returndata) = target.delegatecall(data) (#687)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

name() should be declared external:
- ERC20.name() (#179-181)
symbol() should be declared external:
- ERC20.symbol() (#187-189)
totalSupply() should be declared external:
- ERC20.totalSupply() (#211-213)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#218-220)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#230-234)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#253-257)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#275-284)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#298-302)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#318-327)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#732-734)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#747-750)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#799-801)
revokeRole(bytes32,address) should be declared external:
- AccessControl.revokeRole(bytes32,address) (#1149-1151)
renounceRole(bytes32,address) should be declared external:
- AccessControl.renounceRole(bytes32,address) (#1167-1171)
getTokensOwner() should be declared external:
- Base.getTokensOwner() (#1631-1633)
setTokensOwner(address) should be declared external:
- Base.setTokensOwner(address) (#1635-1637)
pause() should be declared external:
- MoneyCore.pause() (#1737-1739)
unpause() should be declared external:
- MoneyCore.unpause() (#1741-1743)
setAccount(address) should be declared external:
- MoneyCore.setAccount(address) (#1755-1757)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Unable to find audit link on the website


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for PMC

News for PMC