Dragon Infinity Token Logo

$DI [Dragon Infinity] Token

ALERT: rug pull scam

About $DI

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: Dragon Infinity has migrated from old contract address to new contract address. For more information, visit here.
[CoinGecko] alert: Contract has migrated to 0xe2ebe6e2358720e5baffecd8d06dd505dd4e898f. Read more at: https://twitter.com/dragon1nfinity/status/1478731365348782082
white paper

Dragon Infinity is a play to earn game. The basic principle is a 3D PvP mode where players can fight against each other. The winner gets a reward in the form of tokens, automatically sent to the wallet, and the loser gets a deduction. In addition, there are several options to pair dragons and hatch eggs, whose spawn can be used to be even better in the game or to sell it as NFT to other players and investors.

Laser Scorebeta Last Audit: 15 May 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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

DragonInfinity.addLiquidity(uint256,uint256) (#1407-1421) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DragonInfinity._transfer(address,address,uint256) (#1232-1307):
External calls:
- swapTokensForEth(contractTokenBalance.div(2)) (#1263)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1397-1403)
- sendToFee(marketingTokens,_marketingWalletAddress) (#1266)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(teamTokens,_teamWallet) (#1269)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gamingTokens,_gamingFeeWallet) (#1271)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gameDevTokens,_gameDevWallet) (#1273)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(devTokens,_devWallet) (#1276)
- address(wallet).call{value: tokens}() (#1362)
- addLiquidity(contractTokenBalance.div(2),swapTokens) (#1278)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
External calls sending eth:
- sendToFee(marketingTokens,_marketingWalletAddress) (#1266)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(teamTokens,_teamWallet) (#1269)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gamingTokens,_gamingFeeWallet) (#1271)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gameDevTokens,_gameDevWallet) (#1273)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(devTokens,_devWallet) (#1276)
- address(wallet).call{value: tokens}() (#1362)
- addLiquidity(contractTokenBalance.div(2),swapTokens) (#1278)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1302)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#886)
- _balances[recipient] = _balances[recipient].add(amount) (#887)
- super._transfer(from,to,amount) (#1305)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#886)
- _balances[recipient] = _balances[recipient].add(amount) (#887)
- setFeesOnBuy() (#1294)
- devFee = devFeeBuy (#1314)
- setFeesOnSell() (#1296)
- devFee = devFeeSell (#1324)
- setFeesOnBuy() (#1294)
- gameDevFee = gameDevFeeBuy (#1311)
- setFeesOnSell() (#1296)
- gameDevFee = gameDevFeeSell (#1321)
- setFeesOnBuy() (#1294)
- gamingFee = gamingFeeBuy (#1312)
- setFeesOnSell() (#1296)
- gamingFee = gamingFeeSell (#1322)
- setFeesOnBuy() (#1294)
- liquidityFee = liquidityFeeBuy (#1309)
- setFeesOnSell() (#1296)
- liquidityFee = liquidityFeeSell (#1319)
- setFeesOnBuy() (#1294)
- marketingFee = marketingFeeBuy (#1310)
- setFeesOnSell() (#1296)
- marketingFee = marketingFeeSell (#1320)
- swapping = false (#1282)
- setFeesOnBuy() (#1294)
- teamFee = teamFeeBuy (#1313)
- setFeesOnSell() (#1296)
- teamFee = teamFeeSell (#1323)
- setFeesOnBuy() (#1294)
- totalFees = totalFeesBuy (#1315)
- setFeesOnSell() (#1296)
- totalFees = totalFeesSell (#1325)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

Contract ticker ($DI) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Redundant expression "this (#21)" inContext (#15-24)
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 (#352) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#353)
Prevent variables from having similar names.

Additional information: link

SafeMathInt.MAX_INT256 (#78) is never used in SafeMathInt (#76-134)
Remove unused state variables.

Additional information: link

DragonInfinity.deadWallet (#1004) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

DragonInfinity.sendToFee(uint256,address) (#1360-1363) ignores return value by address(wallet).call{value: tokens}() (#1362)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

DragonInfinity.addLiquidity(uint256,uint256) (#1407-1421) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
Ensure that all the return values of the function calls are used.

Additional information: link

Function IUniswapV2Router01.WETH() (#347) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#503) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#504) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#521) is not in mixedCase
Parameter DragonInfinity.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._gamingFee (#1178) is not in mixedCase
Parameter DragonInfinity.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._gamingFee (#1190) is not in mixedCase
Parameter DragonInfinity.setEnableAntiwhale(bool)._val (#1328) is not in mixedCase
Parameter DragonInfinity.setMaxTransferAmountRate(uint256)._val (#1353) is not in mixedCase
Parameter DragonInfinity.setMaxWalletAmountRate(uint256)._val (#1356) is not in mixedCase
Variable DragonInfinity._marketingWalletAddress (#1041) is not in mixedCase
Variable DragonInfinity._devWallet (#1042) is not in mixedCase
Variable DragonInfinity._gameDevWallet (#1043) is not in mixedCase
Variable DragonInfinity._gamingFeeWallet (#1044) is not in mixedCase
Variable DragonInfinity._teamWallet (#1045) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

DragonInfinity.setSwapTokensAtAmount(uint256) (#1156-1158) should emit an event for:
- swapTokensAtAmount = amount (#1157)
DragonInfinity.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#1178-1188) should emit an event for:
- liquidityFeeSell = liq (#1180)
- marketingFeeSell = marketing (#1181)
- teamFeeSell = team (#1182)
- gameDevFeeSell = gameDev (#1183)
- gamingFeeSell = _gamingFee (#1184)
- devFeeSell = dev (#1185)
- totalFeesSell = liquidityFeeSell.add(marketingFeeSell).add(teamFeeSell).add(gameDevFeeSell).add(gamingFeeSell).add(devFeeSell) (#1186)
DragonInfinity.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#1190-1200) should emit an event for:
- liquidityFeeBuy = liq (#1192)
- marketingFeeBuy = marketing (#1193)
- teamFeeBuy = team (#1194)
- gameDevFeeBuy = gameDev (#1195)
- gamingFeeBuy = _gamingFee (#1196)
- devFeeBuy = dev (#1197)
- totalFeesBuy = liquidityFeeBuy.add(marketingFeeBuy).add(teamFeeBuy).add(gameDevFeeBuy).add(gamingFeeBuy).add(devFeeBuy) (#1198)
DragonInfinity.setMaxTransferAmountRate(uint256) (#1353-1355) should emit an event for:
- maxTransferAmountRate = _val (#1354)
DragonInfinity.setMaxWalletAmountRate(uint256) (#1356-1358) should emit an event for:
- maxWalletRate = _val (#1357)
Emit an event for critical parameter changes.

Additional information: link

DragonInfinity.updateUniswapV2Router(address)._uniswapV2Pair (#1136-1137) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1138)
DragonInfinity.setMarketingWallet(address).wallet (#1160) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1161)
DragonInfinity.setDevWallet(address).wallet (#1164) lacks a zero-check on :
- _devWallet = wallet (#1165)
DragonInfinity.setGameDevWallet(address).wallet (#1167) lacks a zero-check on :
- _gameDevWallet = wallet (#1168)
DragonInfinity.setGameFeeWallet(address).wallet (#1170) lacks a zero-check on :
- _gamingFeeWallet = wallet (#1171)
DragonInfinity.setTeamWallet(address).wallet (#1173) lacks a zero-check on :
- _teamWallet = wallet (#1174)
Check that the address is not zero.

Additional information: link

Reentrancy in DragonInfinity._transfer(address,address,uint256) (#1232-1307):
External calls:
- swapTokensForEth(contractTokenBalance.div(2)) (#1263)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1397-1403)
- sendToFee(marketingTokens,_marketingWalletAddress) (#1266)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(teamTokens,_teamWallet) (#1269)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gamingTokens,_gamingFeeWallet) (#1271)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gameDevTokens,_gameDevWallet) (#1273)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(devTokens,_devWallet) (#1276)
- address(wallet).call{value: tokens}() (#1362)
- addLiquidity(contractTokenBalance.div(2),swapTokens) (#1278)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
External calls sending eth:
- sendToFee(marketingTokens,_marketingWalletAddress) (#1266)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(teamTokens,_teamWallet) (#1269)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gamingTokens,_gamingFeeWallet) (#1271)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gameDevTokens,_gameDevWallet) (#1273)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(devTokens,_devWallet) (#1276)
- address(wallet).call{value: tokens}() (#1362)
- addLiquidity(contractTokenBalance.div(2),swapTokens) (#1278)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
State variables written after the call(s):
- addLiquidity(contractTokenBalance.div(2),swapTokens) (#1278)
- _allowances[owner][spender] = amount (#952)
Reentrancy in DragonInfinity.constructor() (#1084-1115):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1089-1090)
State variables written after the call(s):
- _mint(owner(),1000000000000 * (10 ** 18)) (#1114)
- _balances[account] = _balances[account].add(amount) (#906)
- _isExcludedFromAntiWhale[owner()] = true (#1104)
- _isExcludedFromAntiWhale[deadWallet] = true (#1105)
- _isExcludedFromAntiWhale[address(this)] = true (#1106)
- excludeFromFees(owner(),true) (#1101)
- _isExcludedFromFees[account] = excluded (#1143)
- excludeFromFees(_marketingWalletAddress,true) (#1102)
- _isExcludedFromFees[account] = excluded (#1143)
- excludeFromFees(address(this),true) (#1103)
- _isExcludedFromFees[account] = excluded (#1143)
- _isExcludedFromMaxWallet[owner()] = true (#1107)
- _isExcludedFromMaxWallet[deadWallet] = true (#1108)
- _isExcludedFromMaxWallet[address(this)] = true (#1109)
- _mint(owner(),1000000000000 * (10 ** 18)) (#1114)
- _totalSupply = _totalSupply.add(amount) (#905)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1096)
- automatedMarketMakerPairs[pair] = value (#1210)
- uniswapV2Pair = _uniswapV2Pair (#1093)
- uniswapV2Router = _uniswapV2Router (#1092)
Reentrancy in DragonInfinity.swapAndLiquify(uint256) (#1365-1386):
External calls:
- swapTokensForEth(half) (#1377)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1397-1403)
- addLiquidity(otherHalf,newBalance) (#1383)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1383)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1383)
- _allowances[owner][spender] = amount (#952)
Reentrancy in DragonInfinity.updateUniswapV2Router(address) (#1132-1139):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1136-1137)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1138)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DragonInfinity._transfer(address,address,uint256) (#1232-1307):
External calls:
- swapTokensForEth(contractTokenBalance.div(2)) (#1263)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1397-1403)
- sendToFee(marketingTokens,_marketingWalletAddress) (#1266)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(teamTokens,_teamWallet) (#1269)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gamingTokens,_gamingFeeWallet) (#1271)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gameDevTokens,_gameDevWallet) (#1273)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(devTokens,_devWallet) (#1276)
- address(wallet).call{value: tokens}() (#1362)
- addLiquidity(contractTokenBalance.div(2),swapTokens) (#1278)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
External calls sending eth:
- sendToFee(marketingTokens,_marketingWalletAddress) (#1266)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(teamTokens,_teamWallet) (#1269)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gamingTokens,_gamingFeeWallet) (#1271)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(gameDevTokens,_gameDevWallet) (#1273)
- address(wallet).call{value: tokens}() (#1362)
- sendToFee(devTokens,_devWallet) (#1276)
- address(wallet).call{value: tokens}() (#1362)
- addLiquidity(contractTokenBalance.div(2),swapTokens) (#1278)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#953)
- addLiquidity(contractTokenBalance.div(2),swapTokens) (#1278)
- Transfer(sender,recipient,amount) (#888)
- super._transfer(from,to,amount) (#1305)
- Transfer(sender,recipient,amount) (#888)
- super._transfer(from,address(this),fees) (#1302)
Reentrancy in DragonInfinity.constructor() (#1084-1115):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1089-1090)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1145)
- excludeFromFees(_marketingWalletAddress,true) (#1102)
- ExcludeFromFees(account,excluded) (#1145)
- excludeFromFees(owner(),true) (#1101)
- ExcludeFromFees(account,excluded) (#1145)
- excludeFromFees(address(this),true) (#1103)
- SetAutomatedMarketMakerPair(pair,value) (#1213)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1096)
- Transfer(address(0),account,amount) (#907)
- _mint(owner(),1000000000000 * (10 ** 18)) (#1114)
Reentrancy in DragonInfinity.swapAndLiquify(uint256) (#1365-1386):
External calls:
- swapTokensForEth(half) (#1377)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1397-1403)
- addLiquidity(otherHalf,newBalance) (#1383)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1383)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1413-1420)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#953)
- addLiquidity(otherHalf,newBalance) (#1383)
- SwapAndLiquify(half,newBalance,otherHalf) (#1385)
Apply the check-effects-interactions pattern.

Additional information: link

DragonInfinity.antiWhale(address,address,uint256) (#1220-1230) compares to a boolean constant:
-_isExcludedFromAntiWhale[sender] == false && _isExcludedFromAntiWhale[recipient] == false (#1223-1224)
Remove the equality to the boolean constant.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.6.12', '^0.6.2']
- ^0.6.12 (#1)
- ^0.6.2 (#25)
- ^0.6.2 (#70)
- ^0.6.2 (#138)
- ^0.6.2 (#283)
- ^0.6.2 (#343)
- ^0.6.2 (#486)
- ^0.6.2 (#541)
- ^0.6.2 (#559)
- ^0.6.2 (#643)
- ^0.6.2 (#674)
- ^0.6.2 (#989)
Use one Solidity version.

Additional information: link

Context._msgData() (#20-23) is never used and should be removed
DragonInfinity.swapAndLiquify(uint256) (#1365-1386) is never used and should be removed
ERC20._burn(address,uint256) (#921-929) is never used and should be removed
SafeMath.mod(uint256,uint256) (#261-263) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#277-280) is never used and should be removed
SafeMathInt.abs(int256) (#124-127) is never used and should be removed
SafeMathInt.add(int256,int256) (#115-119) is never used and should be removed
SafeMathInt.div(int256,int256) (#95-101) is never used and should be removed
SafeMathInt.mul(int256,int256) (#83-90) is never used and should be removed
SafeMathInt.sub(int256,int256) (#106-110) is never used and should be removed
SafeMathInt.toUint256Safe(int256) (#130-133) is never used and should be removed
SafeMathUint.toInt256Safe(uint256) (#33-37) is never used and should be removed
Remove unused functions.

Additional information: link

DragonInfinity.totalFees (#1019) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(marketingFee).add(teamFee).add(gameDevFee).add(gamingFee).add(devFee)
DragonInfinity.totalFeesBuy (#1027) is set pre-construction with a non-constant function or state variable:
- liquidityFeeBuy.add(marketingFeeBuy).add(teamFeeBuy).add(gameDevFeeBuy).add(gamingFeeBuy).add(devFeeBuy)
DragonInfinity.totalFeesSell (#1036) is set pre-construction with a non-constant function or state variable:
- liquidityFeeSell.add(marketingFeeSell).add(teamFeeSell).add(gameDevFeeSell).add(gamingFeeSell).add(devFeeSell)
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.6.2 (#25) allows old versions
Pragma version^0.6.2 (#70) allows old versions
Pragma version^0.6.2 (#138) allows old versions
Pragma version^0.6.2 (#283) allows old versions
Pragma version^0.6.2 (#343) allows old versions
Pragma version^0.6.2 (#486) allows old versions
Pragma version^0.6.2 (#541) allows old versions
Pragma version^0.6.2 (#559) allows old versions
Pragma version^0.6.2 (#643) allows old versions
Pragma version^0.6.2 (#674) allows old versions
Pragma version^0.6.2 (#989) 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

Low level call in DragonInfinity.sendToFee(uint256,address) (#1360-1363):
- address(wallet).call{value: tokens}() (#1362)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

DragonInfinity.constructor() (#1084-1115) uses literals with too many digits:
- _mint(owner(),1000000000000 * (10 ** 18)) (#1114)
DragonInfinity.maxTransferAmount() (#1335-1342) uses literals with too many digits:
- totalSupply().mul(maxTransferAmountRate).div(100000) (#1338)
DragonInfinity.maxTransferAmount() (#1335-1342) uses literals with too many digits:
- totalSupply().mul(1000).div(100000) (#1341)
DragonInfinity.maxWalletAmount() (#1344-1351) uses literals with too many digits:
- totalSupply().mul(maxWalletRate).div(100000) (#1347)
DragonInfinity.maxWalletAmount() (#1344-1351) uses literals with too many digits:
- totalSupply().mul(1000).div(100000) (#1350)
DragonInfinity.slitherConstructorVariables() (#993-1433) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#1004)
DragonInfinity.slitherConstructorVariables() (#993-1433) uses literals with too many digits:
- swapTokensAtAmount = 200000 * (10 ** 18) (#1008)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#324-327)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#333-337)
name() should be declared external:
- ERC20.name() (#728-730)
symbol() should be declared external:
- ERC20.symbol() (#736-738)
decimals() should be declared external:
- ERC20.decimals() (#753-755)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#779-782)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#787-789)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#798-801)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#816-824)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#838-841)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#857-860)
openTrade() should be declared external:
- DragonInfinity.openTrade() (#1120-1122)
setExcludedFromAntiWhale(address,bool) should be declared external:
- DragonInfinity.setExcludedFromAntiWhale(address,bool) (#1124-1126)
isExcludedFromAntiWhale(address) should be declared external:
- DragonInfinity.isExcludedFromAntiWhale(address) (#1128-1130)
updateUniswapV2Router(address) should be declared external:
- DragonInfinity.updateUniswapV2Router(address) (#1132-1139)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- DragonInfinity.excludeMultipleAccountsFromFees(address[],bool) (#1148-1154)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- DragonInfinity.setAutomatedMarketMakerPair(address,bool) (#1202-1206)
setEnableAntiwhale(bool) should be declared external:
- DragonInfinity.setEnableAntiwhale(bool) (#1328-1330)
setMaxTransferAmountRate(uint256) should be declared external:
- DragonInfinity.setMaxTransferAmountRate(uint256) (#1353-1355)
setMaxWalletAmountRate(uint256) should be declared external:
- DragonInfinity.setMaxWalletAmountRate(uint256) (#1356-1358)
isExcludedFromMaxWallet(address) should be declared external:
- DragonInfinity.isExcludedFromMaxWallet(address) (#1423-1425)
setExcludeFromMaxWallet(address,bool) should be declared external:
- DragonInfinity.setExcludeFromMaxWallet(address,bool) (#1427-1429)
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


Unable to find Youtube account


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

Additional information: link


Unable to crawl data from the website


Unable to find token contract audit


Unable to find audit 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


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


Token has relatively low CoinGecko rank

Price for $DI

News for $DI