DEEPMAZE Token Logo

DPZ [DEEPMAZE] Token

ALERT: dead

About DPZ

Listings

Token 2 years
CoinMarketCap 2 years
white paper

DEEPMAZE is a crowding pool-backed auto-liquidity Defi token built on Binance Smart Chain. It solves the liquidity, value, and discretion trilemma that is a problem in the current ecosystem.

Social

Laser Scorebeta Last Audit: 28 February 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

DeepMaze.addLiquidity(uint256,uint256) (#1330-1346) sends eth to arbitrary user
Dangerous calls:
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DeepMaze._transfer(address,address,uint256) (#1217-1268):
External calls:
- LiquidityProvision(contractTokenBalance) (#1248)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1324)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
External calls sending eth:
- LiquidityProvision(contractTokenBalance) (#1248)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,distributeAndBurn) (#1266)
- _liquidtyTokens = _liquidtyTokens.add(tLiquidity) (#1425)
- _tokenTransfer(from,to,amount,distributeAndBurn) (#1266)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1421)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1422)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1424)
- _rOwned[address(this)] = _rOwned[address(this)].sub(_rDist) (#1441)
- _tokenTransfer(from,to,amount,distributeAndBurn) (#1266)
- _rTotal = _rTotal.sub(_rDist) (#1440)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

DeepMaze.buy_presale() (#928-951) contains a tautology or contradiction:
- require(bool,string)(_preSaleTokensr.sub(amount) >= 0,sold out check1) (#937)
DeepMaze.buy_presale() (#928-951) contains a tautology or contradiction:
- require(bool,string)(_rOwned[address(this)].sub(amount) >= 0,sold out check2) (#938)
DeepMaze.buy_presale() (#928-951) contains a tautology or contradiction:
- require(bool,string)(preSaleTokens.sub(tokensToPurchase) >= 0,sold out check3) (#940)
DeepMaze.endPresale() (#964-1007) contains a tautology or contradiction:
- require(bool,string)(_rOwned[address(this)].sub(reflection_to_burn) >= 0,check1) (#987)
Fix the incorrect comparison by changing the value type or the comparison.

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.

DeepMaze.constructor() (#832-884) performs a multiplication on the result of a division:
-_crowdPool = _tTotal.mul(5).div(10) (#849)
-init_rate = _rTotal.div(_tTotal) (#850)
-_crowdPoolr = _crowdPool.mul(init_rate) (#851)
DeepMaze.constructor() (#832-884) performs a multiplication on the result of a division:
-init_rate = _rTotal.div(_tTotal) (#850)
-_preSaleTokensr = preSaleTokens.mul(init_rate) (#853)
DeepMaze.calculateAmountPurchased(uint256) (#909-912) performs a multiplication on the result of a division:
-_value.mul(BP).div(price).mul(1e18).div(BP) (#911)
DeepMaze.burnReflection(uint256) (#914-926) performs a multiplication on the result of a division:
-init_rate = _rTotal.div(_tTotal) (#916)
-reflection_to_burn = tokens_to_burn.mul(init_rate) (#917)
DeepMaze.buy_presale() (#928-951) performs a multiplication on the result of a division:
-init_rate = _rTotal.div(_tTotal) (#933)
-amount = tokensToPurchase.mul(init_rate) (#935)
DeepMaze.endPresale() (#964-1007) performs a multiplication on the result of a division:
-init_rate = _rTotal.div(_tTotal) (#985)
-reflection_to_burn = burn.mul(init_rate) (#986)
DeepMaze._get_tokens_to_distribute(uint256,uint256) (#1367-1398) performs a multiplication on the result of a division:
-supply_rate = distribution_base.mul(10 ** 15).div(_tTotal) (#1375)
-to_distribute_gross = distribution_base.mul(supply_rate).mul(pool_rate).mul(crowding_rate_in_use) (#1377)
DeepMaze._transferStandard(address,address,uint256,bool) (#1401-1454) performs a multiplication on the result of a division:
-tLiquidity = tAmount.mul(liqudity_fee_in_use).div(10 ** 4) (#1414)
-rLiquidity = tLiquidity.mul(currentRate) (#1416)
Consider ordering multiplication before division.

Additional information: link

DeepMaze.addLiquidity(uint256,uint256) (#1330-1346) ignores return value by pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
Ensure that all the return values of the function calls are used.

Additional information: link

DeepMaze.allowance(address,address).owner (#1126) shadows:
- Ownable.owner() (#491-493) (function)
DeepMaze._approve(address,address,uint256).owner (#1207) shadows:
- Ownable.owner() (#491-493) (function)
Rename the local variables that shadow another component.

Additional information: link

DeepMaze.setPrice(uint256) (#888) should emit an event for:
- price = _price (#888)
DeepMaze.setMinimum(uint256) (#889) should emit an event for:
- minimum = _minimum (#889)
DeepMaze.setEnds(uint256) (#890) should emit an event for:
- ends = _ends (#890)
DeepMaze.burnReflection(uint256) (#914-926) should emit an event for:
- _tTotal = _tTotal.sub(tokens_to_burn) (#924)
- _rTotal = _rTotal.sub(reflection_to_burn) (#925)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in DeepMaze.LiquidityProvision(uint256) (#1288-1314):
External calls:
- swapTokensForBnb(half) (#1301)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1324)
State variables written after the call(s):
- _bnbProvided = _bnbProvided.add(newBalance) (#1306)
- _tokensSwapped = _tokensSwapped.add(half) (#1302)
Reentrancy in DeepMaze.LiquidityProvision(uint256) (#1288-1314):
External calls:
- swapTokensForBnb(half) (#1301)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1324)
- addLiquidity(otherHalf,newBalance) (#1308)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1308)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1308)
- _allowances[owner][spender] = amount (#1212)
- _liquidityProvided = _liquidityProvided.add(otherHalf) (#1310)
Reentrancy in DeepMaze._transfer(address,address,uint256) (#1217-1268):
External calls:
- LiquidityProvision(contractTokenBalance) (#1248)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1324)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
External calls sending eth:
- LiquidityProvision(contractTokenBalance) (#1248)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,distributeAndBurn) (#1266)
- _distributedTokens = _distributedTokens.add(tokens_to_distribute) (#1438)
- _distributedTokens = _distributedTokens.sub(distributedtoContract) (#1448)
- _tokenTransfer(from,to,amount,distributeAndBurn) (#1266)
- _pendingT = _pendingT.add(tAmount) (#1388)
- _pendingT = _pendingT.sub(init_pending_T) (#1393)
Reentrancy in DeepMaze.constructor() (#832-884):
External calls:
- pancakeSwapV2Pair = IUniswapV2Factory(_pancakeSwapV2Router.factory()).createPair(address(this),_pancakeSwapV2Router.WETH()) (#840)
State variables written after the call(s):
- _crowdPool = _tTotal.mul(5).div(10) (#849)
- _isExcludedFromFee[owner()] = true (#844)
- _isExcludedFromFee[address(this)] = true (#845)
- _isExcludedFromFee[gateKeeper] = true (#847)
- _preSaleTokensr = preSaleTokens.mul(init_rate) (#853)
- _rOwned[address(this)] = _rOwned[address(this)].add(_crowdPoolr) (#854)
- _rOwned[address(this)] = _rOwned[address(this)].add(_preSaleTokensr) (#855)
- _rOwned[address(msg.sender)] = _rTotal.sub(_crowdPoolr).sub(_preSaleTokensr) (#856)
- gateKeeper = _msgSender() (#846)
- pancakeSwapV2Router = _pancakeSwapV2Router (#841)
- preSaleTokens = _tTotal.sub(_crowdPool).sub(secondPhaseLiquidity) (#852)
Reentrancy in DeepMaze.setRouterAddress(address) (#1349-1355):
External calls:
- pancakeSwapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1353)
State variables written after the call(s):
- pancakeSwapV2Router = _newPancakeRouter (#1354)
Reentrancy in DeepMaze.transferFrom(address,address,uint256) (#1137-1142):
External calls:
- _transfer(sender,recipient,amount) (#1139)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1324)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1139)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1140)
- _allowances[owner][spender] = amount (#1212)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DeepMaze.LiquidityProvision(uint256) (#1288-1314):
External calls:
- swapTokensForBnb(half) (#1301)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1324)
- addLiquidity(otherHalf,newBalance) (#1308)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1308)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1213)
- addLiquidity(otherHalf,newBalance) (#1308)
- LiquidityProvisionEvent(half,newBalance,otherHalf) (#1312)
Reentrancy in DeepMaze._transfer(address,address,uint256) (#1217-1268):
External calls:
- LiquidityProvision(contractTokenBalance) (#1248)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1324)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
External calls sending eth:
- LiquidityProvision(contractTokenBalance) (#1248)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1453)
- _tokenTransfer(from,to,amount,distributeAndBurn) (#1266)
Reentrancy in DeepMaze.transferFrom(address,address,uint256) (#1137-1142):
External calls:
- _transfer(sender,recipient,amount) (#1139)
- pancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1324)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1139)
- pancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidity_owner,block.timestamp) (#1344)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1213)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1140)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#545-550) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#547)
DeepMaze.buy_presale() (#928-951) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp < ends,presale is ended) (#931)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#337-346) uses assembly
- INLINE ASM (#344)
Address._functionCallWithValue(address,bytes,uint256,string) (#430-451) uses assembly
- INLINE ASM (#443-446)
Do not use evm assembly.

Additional information: link

DeepMaze.buy_presale() (#928-951) compares to a boolean constant:
-require(bool,string)(paused == false,presale is ended) (#929)
DeepMaze._transfer(address,address,uint256) (#1217-1268) compares to a boolean constant:
-_isExcludedFromFee[from] || _isExcludedFromFee[to] || LiquidityProvisionEnabled == false (#1257)
DeepMaze._transferStandard(address,address,uint256,bool) (#1401-1454) compares to a boolean constant:
-distributeAndBurn == false (#1405)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#430-451) is never used and should be removed
Address.functionCall(address,bytes) (#390-392) is never used and should be removed
Address.functionCall(address,bytes,string) (#400-402) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#415-417) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#425-428) is never used and should be removed
Address.isContract(address) (#337-346) is never used and should be removed
Address.sendValue(address,uint256) (#364-370) is never used and should be removed
Context._msgData() (#309-312) is never used and should be removed
SafeMath.mod(uint256,uint256) (#282-284) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#298-301) is never used and should be removed
Remove unused functions.

Additional information: link

DeepMaze._rTotal (#806) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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

Low level call in Address.sendValue(address,uint256) (#364-370):
- (success) = recipient.call{value: amount}() (#368)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#430-451):
- (success,returndata) = target.call{value: weiValue}(data) (#434)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#589) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#590) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#607) is not in mixedCase
Function IUniswapV2Router01.WETH() (#629) is not in mixedCase
Event DeepMazeliquidityThresholdSet(uint256) (#953) is not in CapWords
Parameter DeepMaze.setStarted(bool)._started (#886) is not in mixedCase
Parameter DeepMaze.setPause(bool)._paused (#887) is not in mixedCase
Parameter DeepMaze.setPrice(uint256)._price (#888) is not in mixedCase
Parameter DeepMaze.setMinimum(uint256)._minimum (#889) is not in mixedCase
Parameter DeepMaze.setEnds(uint256)._ends (#890) is not in mixedCase
Parameter DeepMaze.setTransferOk(bool)._transferok (#891) is not in mixedCase
Parameter DeepMaze.startPresale(uint256)._ends (#896) is not in mixedCase
Parameter DeepMaze.calculateAmountPurchased(uint256)._value (#909) is not in mixedCase
Parameter DeepMaze.burnReflection(uint256).tokens_to_burn (#914) is not in mixedCase
Function DeepMaze.buy_presale() (#928-951) is not in mixedCase
Parameter DeepMaze.setLiquidityThreshold(uint256)._liquidityThreshold (#955) is not in mixedCase
Parameter DeepMaze.setLiquidityProvisionEnabled(bool)._enabled (#1196) is not in mixedCase
Function DeepMaze.LiquidityProvision(uint256) (#1288-1314) is not in mixedCase
Function DeepMaze._get_tokens_to_distribute(uint256,uint256) (#1367-1398) is not in mixedCase
Parameter DeepMaze._get_tokens_to_distribute(uint256,uint256).crowding_rate_in_use (#1367) is not in mixedCase
Constant DeepMaze._name (#778) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DeepMaze._symbol (#779) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DeepMaze._decimals (#780) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DeepMaze._crowdPool (#781) is not in mixedCase
Variable DeepMaze._liquidityFee (#783) is not in mixedCase
Variable DeepMaze._crowdingRate (#784) is not in mixedCase
Variable DeepMaze._liquidtyTokens (#786) is not in mixedCase
Variable DeepMaze._distributedTokens (#787) is not in mixedCase
Variable DeepMaze._pendingT (#788) is not in mixedCase
Variable DeepMaze._liquidityProvided (#789) is not in mixedCase
Variable DeepMaze._tokensSwapped (#790) is not in mixedCase
Variable DeepMaze._bnbProvided (#791) is not in mixedCase
Variable DeepMaze.LiquidityProvisionEnabled (#798) is not in mixedCase
Variable DeepMaze.hard_cap (#804) is not in mixedCase
Variable DeepMaze._preSaleTokensr (#818) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#310)" inContext (#304-313)
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 (#634) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#635)
Variable DeepMaze._transferStandard(address,address,uint256,bool).rTransferAmount (#1417) is too similar to DeepMaze._transferStandard(address,address,uint256,bool).tTransferAmount (#1418)
Prevent variables from having similar names.

Additional information: link

DeepMaze.slitherConstructorVariables() (#766-1466) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 18 (#800)
DeepMaze.slitherConstructorVariables() (#766-1466) uses literals with too many digits:
- maxTxAmount = 10000000 * 10 ** 18 (#801)
DeepMaze.slitherConstructorVariables() (#766-1466) uses literals with too many digits:
- liquidityThreshold = 1000000 * 10 ** 18 (#802)
DeepMaze.slitherConstructorVariables() (#766-1466) uses literals with too many digits:
- secondPhaseLiquidity = 200000000 * 10 ** 18 (#803)
DeepMaze.slitherConstructorVariables() (#766-1466) uses literals with too many digits:
- hard_cap = 10000000 * 10 ** 18 (#804)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DeepMaze.hard_cap (#804) should be constant
DeepMaze.secondPhaseLiquidity (#803) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#515-520)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#526-530)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#532-534)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#537-542)
unlock() should be declared external:
- Ownable.unlock() (#545-550)
setStarted(bool) should be declared external:
- DeepMaze.setStarted(bool) (#886)
setPause(bool) should be declared external:
- DeepMaze.setPause(bool) (#887)
setPrice(uint256) should be declared external:
- DeepMaze.setPrice(uint256) (#888)
setMinimum(uint256) should be declared external:
- DeepMaze.setMinimum(uint256) (#889)
setEnds(uint256) should be declared external:
- DeepMaze.setEnds(uint256) (#890)
setTransferOk(bool) should be declared external:
- DeepMaze.setTransferOk(bool) (#891)
startPresale(uint256) should be declared external:
- DeepMaze.startPresale(uint256) (#896-906)
burnReflection(uint256) should be declared external:
- DeepMaze.burnReflection(uint256) (#914-926)
buy_presale() should be declared external:
- DeepMaze.buy_presale() (#928-951)
endPresale() should be declared external:
- DeepMaze.endPresale() (#964-1007)
name() should be declared external:
- DeepMaze.name() (#1009-1012)
symbol() should be declared external:
- DeepMaze.symbol() (#1015-1018)
getPresaleTokensR() should be declared external:
- DeepMaze.getPresaleTokensR() (#1020-1023)
getPresaleTokens() should be declared external:
- DeepMaze.getPresaleTokens() (#1025-1028)
decimals() should be declared external:
- DeepMaze.decimals() (#1030-1033)
totalSupply() should be declared external:
- DeepMaze.totalSupply() (#1035-1038)
totalCrowdPool() should be declared external:
- DeepMaze.totalCrowdPool() (#1040-1043)
getRtotal() should be declared external:
- DeepMaze.getRtotal() (#1045-1048)
getTotalDistributed() should be declared external:
- DeepMaze.getTotalDistributed() (#1050-1053)
getCrowdingPool() should be declared external:
- DeepMaze.getCrowdingPool() (#1055-1058)
getPendingPool() should be declared external:
- DeepMaze.getPendingPool() (#1065-1069)
getAccumulatedLiquidtyPool() should be declared external:
- DeepMaze.getAccumulatedLiquidtyPool() (#1071-1075)
getLiquidityThreshold() should be declared external:
- DeepMaze.getLiquidityThreshold() (#1089-1092)
getMaxTxThreshold() should be declared external:
- DeepMaze.getMaxTxThreshold() (#1094-1097)
getLiquidityProvided() should be declared external:
- DeepMaze.getLiquidityProvided() (#1099-1102)
getTokensSwapped() should be declared external:
- DeepMaze.getTokensSwapped() (#1104-1107)
getBnbProvided() should be declared external:
- DeepMaze.getBnbProvided() (#1109-1112)
transfer(address,uint256) should be declared external:
- DeepMaze.transfer(address,uint256) (#1119-1124)
allowance(address,address) should be declared external:
- DeepMaze.allowance(address,address) (#1126-1129)
approve(address,uint256) should be declared external:
- DeepMaze.approve(address,uint256) (#1131-1135)
transferFrom(address,address,uint256) should be declared external:
- DeepMaze.transferFrom(address,address,uint256) (#1137-1142)
increaseAllowance(address,uint256) should be declared external:
- DeepMaze.increaseAllowance(address,uint256) (#1144-1148)
decreaseAllowance(address,uint256) should be declared external:
- DeepMaze.decreaseAllowance(address,uint256) (#1150-1154)
setLiquidityProvisionEnabled(bool) should be declared external:
- DeepMaze.setLiquidityProvisionEnabled(bool) (#1196-1200)
getBNBBalance() should be declared external:
- DeepMaze.getBNBBalance() (#1270-1274)
setRouterAddress(address) should be declared external:
- DeepMaze.setRouterAddress(address) (#1349-1355)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 5% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Young tokens have high risks of 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 CoinMarketCap rank

Price for DPZ

News for DPZ