CinemaDraft Token Token Logo

CD3D [CinemaDraft] Token

About CD3D

Listings

Not Found
Token 2 years

Generated by create next app

Laser Scorebeta Last Audit: 17 July 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...)

Tokenomics._getFeeStruct(uint256) (#398-401) contains a tautology or contradiction:
- require(bool,string)(index >= 0 && index < fees.length,FeesSettings._getFeeStruct: Fee index out of bounds) (#399)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Manageable.transferManagement(address).newManager (#231) lacks a zero-check on :
- _manager = newManager (#233)
Check that the address is not zero.

Additional information: link

ReflectionToken.includeInReward(address) (#642-653) has costly operations inside a loop:
- _excluded.pop() (#649)
Use a local variable to hold the loop computation result.

Additional information: link

ReflectionToken._takeFees(uint256,uint256,uint256) (#755-763) performs a multiplication on the result of a division:
-_takeTransactionFees(amount.mul(sumOfFees).div(FEES_DIVISOR).mul(10),currentRate) (#758)
ReflectionToken._getValues(uint256,uint256) (#765-775) performs a multiplication on the result of a division:
-tTotalFees = tAmount.mul(feesSum).div(FEES_DIVISOR) (#767)
-rTotalFees = tTotalFees.mul(currentRate) (#771)
ReflectionToken._redistribute(uint256,uint256,uint256,uint256) (#809-815) performs a multiplication on the result of a division:
-tFee = amount.mul(fee).div(FEES_DIVISOR) (#810)
-rFee = tFee.mul(currentRate) (#811)
CinemaDraftToken._burn(uint256,uint256,uint256,uint256) (#856-862) performs a multiplication on the result of a division:
-tBurn = amount.mul(fee).div(FEES_DIVISOR) (#857)
-rBurn = tBurn.mul(currentRate) (#858)
CinemaDraftToken._takeFee(uint256,uint256,uint256,address,uint256) (#864-874) performs a multiplication on the result of a division:
-tAmount = amount.mul(fee).div(FEES_DIVISOR) (#866)
-rAmount = tAmount.mul(currentRate) (#867)
Consider ordering multiplication before division.

Additional information: link

ReflectionToken.allowance(address,address).owner (#515) shadows:
- Ownable.owner() (#179-181) (function)
ReflectionToken._approve(address,address,uint256).owner (#682) shadows:
- Ownable.owner() (#179-181) (function)
ReflectionToken._transfer(address,address,uint256).sumOfFees (#700) shadows:
- Tokenomics.sumOfFees (#362) (state variable)
ReflectionToken._transferTokens(address,address,uint256,bool,uint256).sumOfFees (#724) shadows:
- Tokenomics.sumOfFees (#362) (state variable)
ReflectionToken._takeFees(uint256,uint256,uint256).sumOfFees (#755) shadows:
- Tokenomics.sumOfFees (#362) (state variable)
CinemaDraftToken._takeTransactionFees(uint256,uint256).name (#834) shadows:
- ReflectionToken.name() (#485-487) (function)
- IBEP20.name() (#38) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.unlock() (#204-209) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,The contract is still locked) (#206)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#127) uses assembly
- INLINE ASM (#127)
Address._verifyCallResult(bool,bytes,string) (#157-166) uses assembly
- INLINE ASM (#160-163)
Do not use evm assembly.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#157-166) is never used and should be removed
Address.functionCall(address,bytes) (#132) is never used and should be removed
Address.functionCall(address,bytes,string) (#133) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#134) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#135-140) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#149-151) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#152-156) is never used and should be removed
Address.functionStaticCall(address,bytes) (#141-143) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#144-148) is never used and should be removed
Address.isContract(address) (#127) is never used and should be removed
Address.sendValue(address,uint256) (#128-131) is never used and should be removed
Context._msgData() (#112) is never used and should be removed
ReflectionToken._takeTransactionFees(uint256,uint256) (#820) is never used and should be removed
SafeMath.mod(uint256,uint256) (#120) is never used and should be removed
Tokenomics._addFee(Tokenomics.FeeType,uint256,address) (#368-371) is never used and should be removed
Tokenomics._addFees() (#373-392) is never used and should be removed
Tokenomics.getCollectedFeeTotal(uint256) (#417-420) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.0 (#17) allows old versions
solc-0.8.0 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) (#128-131):
- (success) = recipient.call{value: amount}() (#129)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#135-140):
- (success,returndata) = target.call{value: value}(data) (#138)
Low level call in Address.functionStaticCall(address,bytes,string) (#144-148):
- (success,returndata) = target.staticcall(data) (#146)
Low level call in Address.functionDelegateCall(address,bytes,string) (#152-156):
- (success,returndata) = target.delegatecall(data) (#154)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Tokenomics._reflectedSupply (#309) is not in mixedCase
Constant Tokenomics.maxTransactionAmount (#319) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Tokenomics.antiDumpingFees (#342) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter ReflectionToken.includeInAntiDumping(address,bool)._address (#663) is not in mixedCase
Parameter ReflectionToken.isIncludedInAntiDumping(address)._address (#668) is not in mixedCase
Variable ReflectionToken._reflectedBalances (#452) is not in mixedCase
Variable ReflectionToken._balances (#453) is not in mixedCase
Variable ReflectionToken._allowances (#454) is not in mixedCase
Variable ReflectionToken._isExcludedFromFee (#456) is not in mixedCase
Variable ReflectionToken._isExcludedFromRewards (#457) is not in mixedCase
Variable ReflectionToken._isIncludedInAntiDumping (#460) is not in mixedCase
Variable ReflectionToken._isUnlimitedSenderOrRecipient (#462) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#112)" inContext (#110-113)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable ReflectionToken._transferTokens(address,address,uint256,bool,uint256).rTransferAmount (#736) is too similar to ReflectionToken._transferTokens(address,address,uint256,bool,uint256).tTransferAmount (#736)
Variable ReflectionToken._transferTokens(address,address,uint256,bool,uint256).rTransferAmount (#736) is too similar to ReflectionToken._getValues(uint256,uint256).tTransferAmount (#768)
Variable ReflectionToken._getValues(uint256,uint256).rTransferAmount (#772) is too similar to ReflectionToken._getValues(uint256,uint256).tTransferAmount (#768)
Variable ReflectionToken.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to ReflectionToken._getValues(uint256,uint256).tTransferAmount (#768)
Variable ReflectionToken.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to ReflectionToken._transferTokens(address,address,uint256,bool,uint256).tTransferAmount (#736)
Variable ReflectionToken._getValues(uint256,uint256).rTransferAmount (#772) is too similar to ReflectionToken._transferTokens(address,address,uint256,bool,uint256).tTransferAmount (#736)
Prevent variables from having similar names.

Additional information: link

CinemaDraftToken.slitherConstructorVariables() (#824-877) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#347)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Tokenomics.burnAddress (#347) should be constant
Tokenomics.cinemaDraftWalletAddress (#348) should be constant
Tokenomics.communityJackpotAddress (#349) should be constant
Tokenomics.stakingRewardsWalletAddress (#350) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#186-189)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#190-194)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#195-197)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#198-203)
unlock() should be declared external:
- Ownable.unlock() (#204-209)
manager() should be declared external:
- Manageable.manager() (#224)
increaseAllowance(address,uint256) should be declared external:
- ReflectionToken.increaseAllowance(address,uint256) (#591-594)
decreaseAllowance(address,uint256) should be declared external:
- ReflectionToken.decreaseAllowance(address,uint256) (#596-599)
isExcludedFromFee(address) should be declared external:
- ReflectionToken.isExcludedFromFee(address) (#659-661)
isIncludedInAntiDumping(address) should be declared external:
- ReflectionToken.isIncludedInAntiDumping(address) (#668-670)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


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


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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


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


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


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

Price for CD3D

News for CD3D