DIGICHAIN COIN Token Logo

DIGICHAIN [DIGICHAIN COIN] Token

About DIGICHAIN

Listings

Token 4 years

DIGICHAIN Coin The future of the crypto word, Digichain Coin has a project that adapts to all the needs of people's activities in the crypto world.

now a platform or application for a multichain wallet and a decentralize exchange platform has been launched , in the future DIGICHAIN will stand alone on the DIGI SMART CHAIN ​​network, a blockchain that will be created by the DIGICHAIN ​​Coin Team.

Social

Laser Scorebeta Last Audit: 7 January 2022

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

Reentrancy in DIGICHAIN._transfer(address,address,uint256) (#1108-1152):
External calls:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1186-1192)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _rOwned[_MarketingWalletAddress] = _rOwned[_MarketingWalletAddress].add(rMarketing) (#1055)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1047)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1243)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1233)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1255)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1234)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#956)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1256)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1245)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#958)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _rTotal = _rTotal.sub(rFee) (#1000)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1049)
- _tOwned[_MarketingWalletAddress] = _tOwned[_MarketingWalletAddress].add(tMarketing) (#1057)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1254)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#955)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1244)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#957)
Apply the check-effects-interactions pattern.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#366-372):
- (success) = recipient.call{value: amount}() (#370)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#427-434):
- (success,returndata) = target.call{value: value}(data) (#432)
Low level call in Address.functionStaticCall(address,bytes,string) (#452-458):
- (success,returndata) = target.staticcall(data) (#456)
Low level call in Address.functionDelegateCall(address,bytes,string) (#476-482):
- (success,returndata) = target.delegatecall(data) (#480)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

DIGICHAIN.addLiquidity(uint256,uint256) (#1195-1208) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
Ensure that all the return values of the function calls are used.

Additional information: link

DIGICHAIN.allowance(address,address).owner (#872) shadows:
- Ownable.owner() (#532-534) (function)
DIGICHAIN._approve(address,address,uint256).owner (#1100) shadows:
- Ownable.owner() (#532-534) (function)
Rename the local variables that shadow another component.

Additional information: link

DIGICHAIN.setTaxFeePercent(uint256) (#973-975) should emit an event for:
- _taxFee = taxFee (#974)
DIGICHAIN.setMarketingFeePercent(uint256) (#977-979) should emit an event for:
- _marketingFee = marketingFee (#978)
DIGICHAIN.setLiquidityFeePercent(uint256) (#981-983) should emit an event for:
- _liquidityFee = liquidityFee (#982)
DIGICHAIN.setMaxTxPercent(uint256) (#985-989) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#986-988)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in DIGICHAIN._transfer(address,address,uint256) (#1108-1152):
External calls:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1186-1192)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _liquidityFee = _previousLiquidityFee (#1093)
- _liquidityFee = 0 (#1087)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _marketingFee = _previousMarketingFee (#1092)
- _marketingFee = 0 (#1086)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _previousLiquidityFee = _liquidityFee (#1083)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _previousMarketingFee = _marketingFee (#1082)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _previousTaxFee = _taxFee (#1081)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1001)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- _taxFee = _previousTaxFee (#1091)
- _taxFee = 0 (#1085)
Reentrancy in DIGICHAIN.constructor() (#821-843):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#831-832)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#838)
- _isExcludedFromFee[address(this)] = true (#839)
- uniswapV2Router = _uniswapV2Router (#835)
Reentrancy in DIGICHAIN.swapAndLiquify(uint256) (#1154-1175):
External calls:
- swapTokensForEth(half) (#1166)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1186-1192)
- addLiquidity(otherHalf,newBalance) (#1172)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1172)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1172)
- _allowances[owner][spender] = amount (#1104)
Reentrancy in DIGICHAIN.transferFrom(address,address,uint256) (#881-885):
External calls:
- _transfer(sender,recipient,amount) (#882)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1186-1192)
External calls sending eth:
- _transfer(sender,recipient,amount) (#882)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#883)
- _allowances[owner][spender] = amount (#1104)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DIGICHAIN._transfer(address,address,uint256) (#1108-1152):
External calls:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1186-1192)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1238)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- Transfer(sender,recipient,tTransferAmount) (#1249)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- Transfer(sender,recipient,tTransferAmount) (#1260)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
- Transfer(sender,recipient,tTransferAmount) (#962)
- _tokenTransfer(from,to,amount,takeFee) (#1151)
Reentrancy in DIGICHAIN.constructor() (#821-843):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#831-832)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#842)
Reentrancy in DIGICHAIN.swapAndLiquify(uint256) (#1154-1175):
External calls:
- swapTokensForEth(half) (#1166)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1186-1192)
- addLiquidity(otherHalf,newBalance) (#1172)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1172)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1105)
- addLiquidity(otherHalf,newBalance) (#1172)
- SwapAndLiquify(half,newBalance,otherHalf) (#1174)
Reentrancy in DIGICHAIN.transferFrom(address,address,uint256) (#881-885):
External calls:
- _transfer(sender,recipient,amount) (#882)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1186-1192)
External calls sending eth:
- _transfer(sender,recipient,amount) (#882)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1200-1207)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1105)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#883)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#339-348) uses assembly
- INLINE ASM (#346)
Address._verifyCallResult(bool,bytes,string) (#484-501) uses assembly
- INLINE ASM (#493-496)
Do not use evm assembly.

Additional information: link

DIGICHAIN.includeInReward(address) (#941-952) has costly operations inside a loop:
- _excluded.pop() (#948)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#484-501) is never used and should be removed
Address.functionCall(address,bytes) (#392-394) is never used and should be removed
Address.functionCall(address,bytes,string) (#402-404) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#417-419) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#427-434) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#466-468) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#476-482) is never used and should be removed
Address.functionStaticCall(address,bytes) (#442-444) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#452-458) is never used and should be removed
Address.isContract(address) (#339-348) is never used and should be removed
Address.sendValue(address,uint256) (#366-372) is never used and should be removed
Context._msgData() (#312-315) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#267-272) is never used and should be removed
SafeMath.mod(uint256,uint256) (#227-229) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#289-294) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#98-104) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#140-145) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#152-157) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#123-133) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#111-116) is never used and should be removed
Remove unused functions.

Additional information: link

DIGICHAIN._rTotal (#784) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
DIGICHAIN._previousTaxFee (#791) is set pre-construction with a non-constant function or state variable:
- _taxFee
DIGICHAIN._previousMarketingFee (#793) is set pre-construction with a non-constant function or state variable:
- _marketingFee
DIGICHAIN._previousLiquidityFee (#795) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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.3 (#5) allows old versions
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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#598) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#599) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#616) is not in mixedCase
Function IUniswapV2Router01.WETH() (#636) is not in mixedCase
Parameter DIGICHAIN.setSwapAndLiquifyEnabled(bool)._enabled (#991) is not in mixedCase
Parameter DIGICHAIN.calculateTaxFee(uint256)._amount (#1060) is not in mixedCase
Parameter DIGICHAIN.calculateMarketingFee(uint256)._amount (#1066) is not in mixedCase
Parameter DIGICHAIN.calculateLiquidityFee(uint256)._amount (#1072) is not in mixedCase
Variable DIGICHAIN._MarketingWalletAddress (#780) is not in mixedCase
Variable DIGICHAIN._taxFee (#790) is not in mixedCase
Variable DIGICHAIN._marketingFee (#792) is not in mixedCase
Variable DIGICHAIN._liquidityFee (#794) is not in mixedCase
Variable DIGICHAIN._maxTxAmount (#803) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#313)" inContext (#307-316)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#641) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#642)
Variable DIGICHAIN._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to DIGICHAIN._getValues(uint256).tTransferAmount (#1005)
Variable DIGICHAIN._getValues(uint256).rTransferAmount (#1006) is too similar to DIGICHAIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DIGICHAIN.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to DIGICHAIN._transferToExcluded(address,address,uint256).tTransferAmount (#1242)
Variable DIGICHAIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1023) is too similar to DIGICHAIN._getValues(uint256).tTransferAmount (#1005)
Variable DIGICHAIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DIGICHAIN._transferToExcluded(address,address,uint256).tTransferAmount (#1242)
Variable DIGICHAIN._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to DIGICHAIN._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable DIGICHAIN._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to DIGICHAIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DIGICHAIN._transferToExcluded(address,address,uint256).rTransferAmount (#1242) is too similar to DIGICHAIN._transferStandard(address,address,uint256).tTransferAmount (#1232)
Variable DIGICHAIN.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to DIGICHAIN._transferStandard(address,address,uint256).tTransferAmount (#1232)
Variable DIGICHAIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DIGICHAIN._transferStandard(address,address,uint256).tTransferAmount (#1232)
Variable DIGICHAIN._getValues(uint256).rTransferAmount (#1006) is too similar to DIGICHAIN._getTValues(uint256).tTransferAmount (#1014)
Variable DIGICHAIN._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to DIGICHAIN._getTValues(uint256).tTransferAmount (#1014)
Variable DIGICHAIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DIGICHAIN._getValues(uint256).tTransferAmount (#1005)
Variable DIGICHAIN._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to DIGICHAIN._getTValues(uint256).tTransferAmount (#1014)
Variable DIGICHAIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DIGICHAIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DIGICHAIN._getValues(uint256).rTransferAmount (#1006) is too similar to DIGICHAIN._transferToExcluded(address,address,uint256).tTransferAmount (#1242)
Variable DIGICHAIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1023) is too similar to DIGICHAIN._getTValues(uint256).tTransferAmount (#1014)
Variable DIGICHAIN._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to DIGICHAIN._transferToExcluded(address,address,uint256).tTransferAmount (#1242)
Variable DIGICHAIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1023) is too similar to DIGICHAIN._transferToExcluded(address,address,uint256).tTransferAmount (#1242)
Variable DIGICHAIN._getValues(uint256).rTransferAmount (#1006) is too similar to DIGICHAIN._transferStandard(address,address,uint256).tTransferAmount (#1232)
Variable DIGICHAIN._transferToExcluded(address,address,uint256).rTransferAmount (#1242) is too similar to DIGICHAIN._getTValues(uint256).tTransferAmount (#1014)
Variable DIGICHAIN._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to DIGICHAIN._transferStandard(address,address,uint256).tTransferAmount (#1232)
Variable DIGICHAIN._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to DIGICHAIN._transferStandard(address,address,uint256).tTransferAmount (#1232)
Variable DIGICHAIN._getValues(uint256).rTransferAmount (#1006) is too similar to DIGICHAIN._getValues(uint256).tTransferAmount (#1005)
Variable DIGICHAIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DIGICHAIN._getTValues(uint256).tTransferAmount (#1014)
Variable DIGICHAIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1023) is too similar to DIGICHAIN._transferStandard(address,address,uint256).tTransferAmount (#1232)
Variable DIGICHAIN.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to DIGICHAIN._getTValues(uint256).tTransferAmount (#1014)
Variable DIGICHAIN._transferToExcluded(address,address,uint256).rTransferAmount (#1242) is too similar to DIGICHAIN._transferToExcluded(address,address,uint256).tTransferAmount (#1242)
Variable DIGICHAIN._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to DIGICHAIN._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable DIGICHAIN._transferToExcluded(address,address,uint256).rTransferAmount (#1242) is too similar to DIGICHAIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DIGICHAIN._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DIGICHAIN._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable DIGICHAIN.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to DIGICHAIN._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable DIGICHAIN._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to DIGICHAIN._transferToExcluded(address,address,uint256).tTransferAmount (#1242)
Variable DIGICHAIN._transferToExcluded(address,address,uint256).rTransferAmount (#1242) is too similar to DIGICHAIN._getValues(uint256).tTransferAmount (#1005)
Variable DIGICHAIN._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to DIGICHAIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DIGICHAIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1023) is too similar to DIGICHAIN._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable DIGICHAIN._transferStandard(address,address,uint256).rTransferAmount (#1232) is too similar to DIGICHAIN._getValues(uint256).tTransferAmount (#1005)
Variable DIGICHAIN.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to DIGICHAIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DIGICHAIN._transferToExcluded(address,address,uint256).rTransferAmount (#1242) is too similar to DIGICHAIN._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable DIGICHAIN._getValues(uint256).rTransferAmount (#1006) is too similar to DIGICHAIN._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable DIGICHAIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1023) is too similar to DIGICHAIN._transferFromExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DIGICHAIN.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to DIGICHAIN._getValues(uint256).tTransferAmount (#1005)
Prevent variables from having similar names.

Additional information: link

DIGICHAIN.slitherConstructorVariables() (#769-1264) uses literals with too many digits:
- _tTotal = 10000000000000000000 (#783)
DIGICHAIN.slitherConstructorVariables() (#769-1264) uses literals with too many digits:
- _maxTxAmount = 400000000000000000 (#803)
DIGICHAIN.slitherConstructorVariables() (#769-1264) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 400000000000000000 (#804)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DIGICHAIN._MarketingWalletAddress (#780) should be constant
DIGICHAIN._decimals (#789) should be constant
DIGICHAIN._name (#787) should be constant
DIGICHAIN._symbol (#788) should be constant
DIGICHAIN._tTotal (#783) should be constant
DIGICHAIN.numTokensSellToAddToLiquidity (#804) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#551-554)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#560-564)
name() should be declared external:
- DIGICHAIN.name() (#846-848)
symbol() should be declared external:
- DIGICHAIN.symbol() (#850-852)
decimals() should be declared external:
- DIGICHAIN.decimals() (#854-856)
totalSupply() should be declared external:
- DIGICHAIN.totalSupply() (#858-860)
transfer(address,uint256) should be declared external:
- DIGICHAIN.transfer(address,uint256) (#867-870)
allowance(address,address) should be declared external:
- DIGICHAIN.allowance(address,address) (#872-874)
approve(address,uint256) should be declared external:
- DIGICHAIN.approve(address,uint256) (#876-879)
transferFrom(address,address,uint256) should be declared external:
- DIGICHAIN.transferFrom(address,address,uint256) (#881-885)
increaseAllowance(address,uint256) should be declared external:
- DIGICHAIN.increaseAllowance(address,uint256) (#887-890)
decreaseAllowance(address,uint256) should be declared external:
- DIGICHAIN.decreaseAllowance(address,uint256) (#892-895)
isExcludedFromReward(address) should be declared external:
- DIGICHAIN.isExcludedFromReward(address) (#897-899)
totalFees() should be declared external:
- DIGICHAIN.totalFees() (#901-903)
deliver(uint256) should be declared external:
- DIGICHAIN.deliver(uint256) (#905-912)
reflectionFromToken(uint256,bool) should be declared external:
- DIGICHAIN.reflectionFromToken(uint256,bool) (#914-923)
excludeFromReward(address) should be declared external:
- DIGICHAIN.excludeFromReward(address) (#931-939)
excludeFromFee(address) should be declared external:
- DIGICHAIN.excludeFromFee(address) (#965-967)
includeInFee(address) should be declared external:
- DIGICHAIN.includeInFee(address) (#969-971)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DIGICHAIN.setSwapAndLiquifyEnabled(bool) (#991-994)
isExcludedFromFee(address) should be declared external:
- DIGICHAIN.isExcludedFromFee(address) (#1096-1098)
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


Unable to find Discord 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 verify token contract address on the website


Unable to find whitepaper link on the website


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 DIGICHAIN

News for DIGICHAIN