CrypCade Shares Token Logo

CADE [CrypCade Shares] Token

About CADE

Listings

Token 2 years
CoinMarketCap 2 years

CrypCade “is the Uber and Airbnb of Arcade”, being an economically sustainable Gaming/ Entertainment ecosystem. Catering for both the high-risk players and the skilled gamers all in one platform, CrypCade is a revolutionary redesign on original arcade systems, integrating skill-based gaming and luck-based gambling.

Social

Laser Scorebeta Last Audit: 2 March 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...)


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Parameter BEP20.changeOwner(address)._newOwner (BEP20.sol#76) is not in mixedCase
Parameter BEP20.freeze(uint256)._amount (BEP20.sol#273) is not in mixedCase
Parameter BEP20.unFreeze(uint256)._amount (BEP20.sol#286) is not in mixedCase
Parameter BEP20.withdraw(uint256,address,bool)._amount (BEP20.sol#312) is not in mixedCase
Parameter BEP20.withdraw(uint256,address,bool)._flag (BEP20.sol#312) is not in mixedCase
Parameter BEP20.updateContractstatus(bool)._status (BEP20.sol#329) is not in mixedCase
Parameter BEP20.updateWithdrawlimit(uint256)._limit (BEP20.sol#339) is not in mixedCase
Parameter BEP20.addBlacklist(address)._user (BEP20.sol#349) is not in mixedCase
Parameter BEP20.removeBlacklist(address)._user (BEP20.sol#360) is not in mixedCase
Parameter BEP20.updateTransferlock(bool)._status (BEP20.sol#371) is not in mixedCase
Parameter BEP20.minterTransfer(address,uint256)._to (BEP20.sol#377) is not in mixedCase
Parameter BEP20.minterTransfer(address,uint256)._amount (BEP20.sol#377) is not in mixedCase
Parameter BEP20.updateWithdrawstatus(bool)._status (BEP20.sol#390) is not in mixedCase
Variable BEP20._balances (BEP20.sol#18) is not in mixedCase
Variable BEP20._allowed (BEP20.sol#20) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in BEP20.withdraw(uint256,address,bool) (BEP20.sol#312-323):
External calls:
- user.transfer(_amount) (BEP20.sol#320)
Event emitted after the call(s):
- Withdraw(user,_amount,now) (BEP20.sol#321)
Apply the check-effects-interactions pattern.

Additional information: link

BEP20.balanceOf(address).owner (BEP20.sol#96) shadows:
- BEP20.owner (BEP20.sol#38) (state variable)
BEP20.allowance(address,address).owner (BEP20.sol#107) shadows:
- BEP20.owner (BEP20.sol#38) (state variable)
CADE.constructor(string,string,uint8,uint256,address).name (CADE.sol#22) shadows:
- CADE.name() (CADE.sol#42-44) (function)
CADE.constructor(string,string,uint8,uint256,address).symbol (CADE.sol#22) shadows:
- CADE.symbol() (CADE.sol#49-51) (function)
CADE.constructor(string,string,uint8,uint256,address).decimals (CADE.sol#22) shadows:
- CADE.decimals() (CADE.sol#56-58) (function)
Rename the local variables that shadow another component.

Additional information: link

BEP20.changeOwner(address) (BEP20.sol#76-80) should emit an event for:
- owner = _newOwner (BEP20.sol#78)
Emit an event for critical parameter changes.

Additional information: link

CADE.constructor(string,string,uint8,uint256,address)._maddress (CADE.sol#22) lacks a zero-check on :
- minter = _maddress (CADE.sol#24)
Check that the address is not zero.

Additional information: link

SafeMath.div(uint256,uint256) (SafeMath.sol#29-35) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#61-64) is never used and should be removed
SafeMath.mul(uint256,uint256) (SafeMath.sol#12-24) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.5.14 (BEP20.sol#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.5.14 (CADE.sol#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.5.14 (IBEP20.sol#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.5.14 (MinterRole.sol#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.5.14 (Roles.sol#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.5.14 (SafeMath.sol#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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

changeOwner(address) should be declared external:
- BEP20.changeOwner(address) (BEP20.sol#76-80)
totalSupply() should be declared external:
- BEP20.totalSupply() (BEP20.sol#87-89)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (BEP20.sol#96-98)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (BEP20.sol#106-115)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (BEP20.sol#122-125)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (BEP20.sol#136-142)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (BEP20.sol#150-161)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (BEP20.sol#172-185)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (BEP20.sol#196-209)
freeze(uint256) should be declared external:
- BEP20.freeze(uint256) (BEP20.sol#273-280)
unFreeze(uint256) should be declared external:
- BEP20.unFreeze(uint256) (BEP20.sol#286-293)
deposit() should be declared external:
- BEP20.deposit() (BEP20.sol#298-304)
withdraw(uint256,address,bool) should be declared external:
- BEP20.withdraw(uint256,address,bool) (BEP20.sol#312-323)
updateContractstatus(bool) should be declared external:
- BEP20.updateContractstatus(bool) (BEP20.sol#329-333)
updateWithdrawlimit(uint256) should be declared external:
- BEP20.updateWithdrawlimit(uint256) (BEP20.sol#339-343)
addBlacklist(address) should be declared external:
- BEP20.addBlacklist(address) (BEP20.sol#349-354)
removeBlacklist(address) should be declared external:
- BEP20.removeBlacklist(address) (BEP20.sol#360-365)
updateTransferlock(bool) should be declared external:
- BEP20.updateTransferlock(bool) (BEP20.sol#371-375)
minterTransfer(address,uint256) should be declared external:
- BEP20.minterTransfer(address,uint256) (BEP20.sol#377-384)
updateWithdrawstatus(bool) should be declared external:
- BEP20.updateWithdrawstatus(bool) (BEP20.sol#390-394)
name() should be declared external:
- CADE.name() (CADE.sol#42-44)
symbol() should be declared external:
- CADE.symbol() (CADE.sol#49-51)
decimals() should be declared external:
- CADE.decimals() (CADE.sol#56-58)
mint(address,uint256) should be declared external:
- CADE.mint(address,uint256) (CADE.sol#66-69)
burn(uint256) should be declared external:
- CADE.burn(uint256) (CADE.sol#75-77)
burnFrom(address,uint256) should be declared external:
- CADE.burnFrom(address,uint256) (CADE.sol#84-86)
addMinter(address) should be declared external:
- MinterRole.addMinter(address) (MinterRole.sol#26-28)
renounceMinter() should be declared external:
- MinterRole.renounceMinter() (MinterRole.sol#30-32)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for CADE

News for CADE