Cryto presents its exclusive on-chain tokenization platform to sustain, develop and govern the community of stakeholders and users. Cryto’s ecosystem has a long-term approach to accelerate the portfolio through a Decentralized Autonomous Organization (DAO) by governing the Cryto tokenization platform.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
DeflationaryToken.constructor(string,string,uint8,uint256,uint16,uint16,uint256,address,string) (contracts/token/BEP20/DeflationToken.sol#505-532) performs a multiplication on the result of a division:
-_max_tx_size = _tTotal.div(100).mul(max_transfer_) (contracts/token/BEP20/DeflationToken.sol#529)
Consider ordering multiplication before division.
Additional information: link
DeflationaryToken.allowance(address,address).owner (contracts/token/BEP20/DeflationToken.sol#560) shadows:
- Ownable.owner() (contracts/token/BEP20/DeflationToken.sol#421-423) (function)
DeflationaryToken._approve(address,address,uint256).owner (contracts/token/BEP20/DeflationToken.sol#642) shadows:
- Ownable.owner() (contracts/token/BEP20/DeflationToken.sol#421-423) (function)
Rename the local variables that shadow another component.
Additional information: link
Redundant expression "this (contracts/token/BEP20/DeflationToken.sol#14)" inContext (contracts/token/BEP20/DeflationToken.sol#8-18)
Remove redundant statements if they congest code but offer no value.
Additional information: link
DeflationaryToken._setTaxFee(uint256) (contracts/token/BEP20/DeflationToken.sol#804-806) should emit an event for:
- _taxFee = taxFee (contracts/token/BEP20/DeflationToken.sol#805)
DeflationaryToken._setBurnFee(uint256) (contracts/token/BEP20/DeflationToken.sol#808-810) should emit an event for:
- _burnFee = burnFee (contracts/token/BEP20/DeflationToken.sol#809)
Emit an event for critical parameter changes.
Additional information: link
Ownable.constructor().msgSender (contracts/token/BEP20/DeflationToken.sol#413) lacks a zero-check on :
- _owner = msgSender (contracts/token/BEP20/DeflationToken.sol#414)
Check that the address is not zero.
Additional information: link
DeflationaryToken.burnAdd (contracts/token/BEP20/DeflationToken.sol#501) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Reentrancy in DeflationaryToken.constructor(string,string,uint8,uint256,uint16,uint16,uint256,address,string) (contracts/token/BEP20/DeflationToken.sol#505-532):
External calls:
- CommissionPayer(commissionReceiver_,DeflationaryToken,discountCode) (contracts/token/BEP20/DeflationToken.sol#516)
- IPayable(receiver).pay{value: msg.value}(service,discountCode) (contracts/service/CommissionPayer.sol#16)
State variables written after the call(s):
- _burnFee = burn_ (contracts/token/BEP20/DeflationToken.sol#528)
- _decimals = decimals_ (contracts/token/BEP20/DeflationToken.sol#524)
- _max_tx_size = _tTotal.div(100).mul(max_transfer_) (contracts/token/BEP20/DeflationToken.sol#529)
- _name = name_ (contracts/token/BEP20/DeflationToken.sol#522)
- _rOwned[_msgSender()] = _rTotal (contracts/token/BEP20/DeflationToken.sol#530)
- _rTotal = (MAX - (MAX % _tTotal)) (contracts/token/BEP20/DeflationToken.sol#526)
- _symbol = symbol_ (contracts/token/BEP20/DeflationToken.sol#523)
- _tTotal = initialBalance_ (contracts/token/BEP20/DeflationToken.sol#525)
- _taxFee = distribution_ (contracts/token/BEP20/DeflationToken.sol#527)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DeflationaryToken.constructor(string,string,uint8,uint256,uint16,uint16,uint256,address,string) (contracts/token/BEP20/DeflationToken.sol#505-532):
External calls:
- CommissionPayer(commissionReceiver_,DeflationaryToken,discountCode) (contracts/token/BEP20/DeflationToken.sol#516)
- IPayable(receiver).pay{value: msg.value}(service,discountCode) (contracts/service/CommissionPayer.sol#16)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (contracts/token/BEP20/DeflationToken.sol#531)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (contracts/token/BEP20/DeflationToken.sol#468-473) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (contracts/token/BEP20/DeflationToken.sol#470)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (contracts/token/BEP20/DeflationToken.sol#273-282) uses assembly
- INLINE ASM (contracts/token/BEP20/DeflationToken.sol#280)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/token/BEP20/DeflationToken.sol#366-387) uses assembly
- INLINE ASM (contracts/token/BEP20/DeflationToken.sol#379-382)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.3']
- ^0.8.0 (contracts/service/CommissionPayer.sol#3)
- ^0.8.3 (contracts/token/BEP20/DeflationToken.sol#3)
Use one Solidity version.
Additional information: link
DeflationaryToken.includeAccount(address) (contracts/token/BEP20/DeflationToken.sol#629-640) has costly operations inside a loop:
- _excluded.pop() (contracts/token/BEP20/DeflationToken.sol#636)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/token/BEP20/DeflationToken.sol#366-387) is never used and should be removed
Address.functionCall(address,bytes) (contracts/token/BEP20/DeflationToken.sol#326-328) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/token/BEP20/DeflationToken.sol#336-338) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/token/BEP20/DeflationToken.sol#351-353) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/token/BEP20/DeflationToken.sol#361-364) is never used and should be removed
Address.isContract(address) (contracts/token/BEP20/DeflationToken.sol#273-282) is never used and should be removed
Address.sendValue(address,uint256) (contracts/token/BEP20/DeflationToken.sol#300-306) is never used and should be removed
Context._msgData() (contracts/token/BEP20/DeflationToken.sol#13-17) is never used and should be removed
DeflationaryToken.removeAllFee() (contracts/token/BEP20/DeflationToken.sol#777-785) is never used and should be removed
DeflationaryToken.restoreAllFee() (contracts/token/BEP20/DeflationToken.sol#787-790) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/token/BEP20/DeflationToken.sol#230-232) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/token/BEP20/DeflationToken.sol#246-249) is never used and should be removed
Remove unused functions.
Additional information: link
DeflationaryToken._previousTaxFee (contracts/token/BEP20/DeflationToken.sol#497) is set pre-construction with a non-constant function or state variable:
- _taxFee
DeflationaryToken._previousBurnFee (contracts/token/BEP20/DeflationToken.sol#499) is set pre-construction with a non-constant function or state variable:
- _burnFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version^0.8.0 (contracts/service/CommissionPayer.sol#3) allows old versions
Pragma version^0.8.3 (contracts/token/BEP20/DeflationToken.sol#3) allows old versions
solc-0.8.3 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) (contracts/token/BEP20/DeflationToken.sol#300-306):
- (success) = recipient.call{value: amount}() (contracts/token/BEP20/DeflationToken.sol#304)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/token/BEP20/DeflationToken.sol#366-387):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/token/BEP20/DeflationToken.sol#370)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter DeflationaryToken.calculateTaxFee(uint256)._amount (contracts/token/BEP20/DeflationToken.sol#765) is not in mixedCase
Parameter DeflationaryToken.calculateBurnFee(uint256)._amount (contracts/token/BEP20/DeflationToken.sol#771) is not in mixedCase
Function DeflationaryToken._getTaxFee() (contracts/token/BEP20/DeflationToken.sol#792-794) is not in mixedCase
Function DeflationaryToken._getBurnFee() (contracts/token/BEP20/DeflationToken.sol#796-798) is not in mixedCase
Function DeflationaryToken._getMaxTxAmount() (contracts/token/BEP20/DeflationToken.sol#800-802) is not in mixedCase
Function DeflationaryToken._setTaxFee(uint256) (contracts/token/BEP20/DeflationToken.sol#804-806) is not in mixedCase
Function DeflationaryToken._setBurnFee(uint256) (contracts/token/BEP20/DeflationToken.sol#808-810) is not in mixedCase
Variable DeflationaryToken._taxFee (contracts/token/BEP20/DeflationToken.sol#496) is not in mixedCase
Variable DeflationaryToken._burnFee (contracts/token/BEP20/DeflationToken.sol#498) is not in mixedCase
Variable DeflationaryToken._max_tx_size (contracts/token/BEP20/DeflationToken.sol#503) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable DeflationaryToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#608) is too similar to DeflationaryToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#704)
Variable DeflationaryToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#682) is too similar to DeflationaryToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#682)
Variable DeflationaryToken._transferStandard(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#672) is too similar to DeflationaryToken._getTValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#730)
Variable DeflationaryToken._getValues(uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#723) is too similar to DeflationaryToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#704)
Variable DeflationaryToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#693) is too similar to DeflationaryToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#693)
Variable DeflationaryToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#608) is too similar to DeflationaryToken._getTValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#730)
Variable DeflationaryToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#738) is too similar to DeflationaryToken._getValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#721)
Variable DeflationaryToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#682) is too similar to DeflationaryToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#704)
Variable DeflationaryToken._getValues(uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#723) is too similar to DeflationaryToken._getTValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#730)
Variable DeflationaryToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#693) is too similar to DeflationaryToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#682)
Variable DeflationaryToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#682) is too similar to DeflationaryToken._getTValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#730)
Variable DeflationaryToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#693) is too similar to DeflationaryToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#704)
Variable DeflationaryToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#704) is too similar to DeflationaryToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#693)
Variable DeflationaryToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#738) is too similar to DeflationaryToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#693)
Variable DeflationaryToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#693) is too similar to DeflationaryToken._getTValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#730)
Variable DeflationaryToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#704) is too similar to DeflationaryToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#682)
Variable DeflationaryToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#738) is too similar to DeflationaryToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#682)
Variable DeflationaryToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#704) is too similar to DeflationaryToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#704)
Variable DeflationaryToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#738) is too similar to DeflationaryToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#704)
Variable DeflationaryToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#608) is too similar to DeflationaryToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#693)
Variable DeflationaryToken._transferStandard(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#672) is too similar to DeflationaryToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#704)
Variable DeflationaryToken._getValues(uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#723) is too similar to DeflationaryToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#693)
Variable DeflationaryToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#704) is too similar to DeflationaryToken._getTValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#730)
Variable DeflationaryToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#738) is too similar to DeflationaryToken._getTValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#730)
Variable DeflationaryToken._getValues(uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#723) is too similar to DeflationaryToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#682)
Variable DeflationaryToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#608) is too similar to DeflationaryToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#682)
Variable DeflationaryToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#682) is too similar to DeflationaryToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#693)
Variable DeflationaryToken._transferStandard(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#672) is too similar to DeflationaryToken._getValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#721)
Variable DeflationaryToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#704) is too similar to DeflationaryToken._getValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#721)
Variable DeflationaryToken._getValues(uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#723) is too similar to DeflationaryToken._getValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#721)
Variable DeflationaryToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#608) is too similar to DeflationaryToken._transferStandard(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#672)
Variable DeflationaryToken._transferStandard(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#672) is too similar to DeflationaryToken._transferToExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#682)
Variable DeflationaryToken._transferStandard(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#672) is too similar to DeflationaryToken._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#693)
Variable DeflationaryToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#693) is too similar to DeflationaryToken._transferStandard(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#672)
Variable DeflationaryToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#682) is too similar to DeflationaryToken._transferStandard(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#672)
Variable DeflationaryToken._transferStandard(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#672) is too similar to DeflationaryToken._transferStandard(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#672)
Variable DeflationaryToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#608) is too similar to DeflationaryToken._getValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#721)
Variable DeflationaryToken._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#704) is too similar to DeflationaryToken._transferStandard(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#672)
Variable DeflationaryToken._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#693) is too similar to DeflationaryToken._getValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#721)
Variable DeflationaryToken._getValues(uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#723) is too similar to DeflationaryToken._transferStandard(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#672)
Variable DeflationaryToken._transferToExcluded(address,address,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#682) is too similar to DeflationaryToken._getValues(uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#721)
Variable DeflationaryToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/token/BEP20/DeflationToken.sol#738) is too similar to DeflationaryToken._transferStandard(address,address,uint256).tTransferAmount (contracts/token/BEP20/DeflationToken.sol#672)
Prevent variables from having similar names.
Additional information: link
DeflationaryToken.slitherConstructorVariables() (contracts/token/BEP20/DeflationToken.sol#476-811) uses literals with too many digits:
- burnAdd = 0x000000000000000000000000000000000000dEaD (contracts/token/BEP20/DeflationToken.sol#501)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/token/BEP20/DeflationToken.sol#440-443)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/token/BEP20/DeflationToken.sol#449-453)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (contracts/token/BEP20/DeflationToken.sol#455-457)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (contracts/token/BEP20/DeflationToken.sol#460-465)
unlock() should be declared external:
- Ownable.unlock() (contracts/token/BEP20/DeflationToken.sol#468-473)
name() should be declared external:
- DeflationaryToken.name() (contracts/token/BEP20/DeflationToken.sol#534-536)
symbol() should be declared external:
- DeflationaryToken.symbol() (contracts/token/BEP20/DeflationToken.sol#538-540)
decimals() should be declared external:
- DeflationaryToken.decimals() (contracts/token/BEP20/DeflationToken.sol#542-544)
totalSupply() should be declared external:
- DeflationaryToken.totalSupply() (contracts/token/BEP20/DeflationToken.sol#546-548)
balanceOf(address) should be declared external:
- DeflationaryToken.balanceOf(address) (contracts/token/BEP20/DeflationToken.sol#550-553)
transfer(address,uint256) should be declared external:
- DeflationaryToken.transfer(address,uint256) (contracts/token/BEP20/DeflationToken.sol#555-558)
allowance(address,address) should be declared external:
- DeflationaryToken.allowance(address,address) (contracts/token/BEP20/DeflationToken.sol#560-562)
approve(address,uint256) should be declared external:
- DeflationaryToken.approve(address,uint256) (contracts/token/BEP20/DeflationToken.sol#564-567)
transferFrom(address,address,uint256) should be declared external:
- DeflationaryToken.transferFrom(address,address,uint256) (contracts/token/BEP20/DeflationToken.sol#569-573)
increaseAllowance(address,uint256) should be declared external:
- DeflationaryToken.increaseAllowance(address,uint256) (contracts/token/BEP20/DeflationToken.sol#575-578)
decreaseAllowance(address,uint256) should be declared external:
- DeflationaryToken.decreaseAllowance(address,uint256) (contracts/token/BEP20/DeflationToken.sol#580-583)
isExcluded(address) should be declared external:
- DeflationaryToken.isExcluded(address) (contracts/token/BEP20/DeflationToken.sol#585-587)
totalFees() should be declared external:
- DeflationaryToken.totalFees() (contracts/token/BEP20/DeflationToken.sol#589-591)
deliver(uint256) should be declared external:
- DeflationaryToken.deliver(uint256) (contracts/token/BEP20/DeflationToken.sol#593-600)
reflectionFromToken(uint256,bool) should be declared external:
- DeflationaryToken.reflectionFromToken(uint256,bool) (contracts/token/BEP20/DeflationToken.sol#602-611)
_getTaxFee() should be declared external:
- DeflationaryToken._getTaxFee() (contracts/token/BEP20/DeflationToken.sol#792-794)
_getBurnFee() should be declared external:
- DeflationaryToken._getBurnFee() (contracts/token/BEP20/DeflationToken.sol#796-798)
_getMaxTxAmount() should be declared external:
- DeflationaryToken._getMaxTxAmount() (contracts/token/BEP20/DeflationToken.sol#800-802)
Use the external attribute for functions never called from the contract.
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.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
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 verify that token and website are owned by the same team (no listings + unable to find contract on website)
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
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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Twitter account
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account