Bingo Doge was made to bring trust and reassure the dog coins in the crypto space. Our team is constantly growing and developing new opportunities for BDOGE to expand into a larger group. We have a strong community which we are working with daily to grow our coin and holders wallets.
BINGODOGE is a fully sustainable independent crypto currency made in 2022. Our team plans to grow the coin by using the promotions wallet to pay for celebrity advertisements on large platforms such as Instagram, Twitter and Youtube. BINGODOGE also plans to reward holders with Telegram giveaways and competitions to increase users wallet percentages. We have a long way to go but if we work together we can become the next Doge Killers on the crypto market. As BINGODOGE has been developed In the United Kingdom we have sustained a lot of secure links with other crypto coins which can help us grow merging our communities.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BINGODOGE.addLiquidity(uint256,uint256) (#599-612) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BINGODOGE._transfer(address,address,uint256) (#488-535):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#526)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- address(marketingWallet).sendValue(marketingAmt) (#585)
- address(devWallet).sendValue(devAmt) (#589)
- address(buybackWallet).sendValue(buybackAmt) (#594)
- swapAndLiquify(swapTokensAtAmount,taxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- address(marketingWallet).sendValue(marketingAmt) (#585)
- address(devWallet).sendValue(devAmt) (#589)
- address(buybackWallet).sendValue(buybackAmt) (#594)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#526)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- swapAndLiquify(swapTokensAtAmount,taxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#534)
- _rOwned[address(this)] += rBuyback (#407)
- _rOwned[address(this)] += rLiquidity (#376)
- _rOwned[address(this)] += rDev (#396)
- _rOwned[address(this)] += rMarketing (#386)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#550)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#551)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#534)
- _rTotal -= rRfi (#365)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#534)
- _tOwned[address(this)] += tDev (#394)
- _tOwned[address(this)] += tMarketing (#384)
- _tOwned[address(this)] += tBuyback (#405)
- _tOwned[address(this)] += tLiquidity (#374)
- _tOwned[sender] = _tOwned[sender] - tAmount (#544)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#547)
Apply the check-effects-interactions pattern.
Additional information: link
BINGODOGE.rescueAnyBEP20Tokens(address,address,uint256) (#700-702) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#701)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
BINGODOGE.swapAndLiquify(uint256,BINGODOGE.Taxes) (#565-597) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#575)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#576)
BINGODOGE.swapAndLiquify(uint256,BINGODOGE.Taxes) (#565-597) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#575)
-marketingAmt = unitBalance * 2 * temp.marketing (#583)
BINGODOGE.swapAndLiquify(uint256,BINGODOGE.Taxes) (#565-597) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#575)
-devAmt = unitBalance * 2 * temp.dev (#587)
BINGODOGE.swapAndLiquify(uint256,BINGODOGE.Taxes) (#565-597) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#575)
-buybackAmt = unitBalance * 2 * temp.buyback (#592)
Consider ordering multiplication before division.
Additional information: link
BINGODOGE.addLiquidity(uint256,uint256) (#599-612) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
Ensure that all the return values of the function calls are used.
Additional information: link
BINGODOGE.allowance(address,address).owner (#251) shadows:
- Ownable.owner() (#46-48) (function)
BINGODOGE._approve(address,address,uint256).owner (#481) shadows:
- Ownable.owner() (#46-48) (function)
Rename the local variables that shadow another component.
Additional information: link
BINGODOGE.updateCooldown(bool,uint256) (#651-654) should emit an event for:
- coolDownTime = time * 1 (#652)
BINGODOGE.updateSwapTokensAtAmount(uint256) (#656-658) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#657)
BINGODOGE.updateMaxTxLimit(uint256,uint256) (#679-682) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#680)
- maxSellLimit = maxSell * 10 ** decimals() (#681)
BINGODOGE.updateMaxWalletlimit(uint256) (#684-686) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#685)
Emit an event for critical parameter changes.
Additional information: link
BINGODOGE.constructor(address)._pair (#205-206) lacks a zero-check on :
- pair = _pair (#209)
BINGODOGE.updateMarketingWallet(address).newWallet (#639) lacks a zero-check on :
- marketingWallet = newWallet (#640)
BINGODOGE.updateDevWallet(address).newWallet (#643) lacks a zero-check on :
- devWallet = newWallet (#644)
BINGODOGE.updateBuybackWallet(address).newWallet (#647) lacks a zero-check on :
- buybackWallet = newWallet (#648)
BINGODOGE.updateRouterAndPair(address,address).newPair (#688) lacks a zero-check on :
- pair = newPair (#690)
Check that the address is not zero.
Additional information: link
Reentrancy in BINGODOGE._transfer(address,address,uint256) (#488-535):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#526)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- address(marketingWallet).sendValue(marketingAmt) (#585)
- address(devWallet).sendValue(devAmt) (#589)
- address(buybackWallet).sendValue(buybackAmt) (#594)
- swapAndLiquify(swapTokensAtAmount,taxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- address(marketingWallet).sendValue(marketingAmt) (#585)
- address(devWallet).sendValue(devAmt) (#589)
- address(buybackWallet).sendValue(buybackAmt) (#594)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#526)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- swapAndLiquify(swapTokensAtAmount,taxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#534)
- totFeesPaid.dev += tDev (#390)
- totFeesPaid.marketing += tMarketing (#380)
- totFeesPaid.liquidity += tLiquidity (#370)
- totFeesPaid.buyback += tBuyback (#401)
- totFeesPaid.rfi += tRfi (#366)
Reentrancy in BINGODOGE.constructor(address) (#203-228):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#205-206)
State variables written after the call(s):
- excludeFromReward(pair) (#211)
- _excluded.push(account) (#324)
- excludeFromReward(pair) (#211)
- _isExcluded[account] = true (#323)
- _isExcludedFromFee[address(this)] = true (#214)
- _isExcludedFromFee[owner()] = true (#215)
- _isExcludedFromFee[marketingWallet] = true (#216)
- _isExcludedFromFee[devWallet] = true (#217)
- _isExcludedFromFee[buybackWallet] = true (#218)
- _rOwned[owner()] = _rTotal (#213)
- excludeFromReward(pair) (#211)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#321)
- allowedTransfer[address(this)] = true (#220)
- allowedTransfer[owner()] = true (#221)
- allowedTransfer[pair] = true (#222)
- allowedTransfer[marketingWallet] = true (#223)
- allowedTransfer[devWallet] = true (#224)
- allowedTransfer[buybackWallet] = true (#225)
- pair = _pair (#209)
- router = _router (#208)
Reentrancy in BINGODOGE.swapAndLiquify(uint256,BINGODOGE.Taxes) (#565-597):
External calls:
- swapTokensForBNB(toSwap) (#572)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#580)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#580)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#580)
- _allowances[owner][spender] = amount (#484)
Reentrancy in BINGODOGE.transferFrom(address,address,uint256) (#260-268):
External calls:
- _transfer(sender,recipient,amount) (#261)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- address(marketingWallet).sendValue(marketingAmt) (#585)
- address(devWallet).sendValue(devAmt) (#589)
- address(buybackWallet).sendValue(buybackAmt) (#594)
External calls sending eth:
- _transfer(sender,recipient,amount) (#261)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#265)
- _allowances[owner][spender] = amount (#484)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BINGODOGE._transfer(address,address,uint256) (#488-535):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#526)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- address(marketingWallet).sendValue(marketingAmt) (#585)
- address(devWallet).sendValue(devAmt) (#589)
- address(buybackWallet).sendValue(buybackAmt) (#594)
- swapAndLiquify(swapTokensAtAmount,taxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- address(marketingWallet).sendValue(marketingAmt) (#585)
- address(devWallet).sendValue(devAmt) (#589)
- address(buybackWallet).sendValue(buybackAmt) (#594)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#526)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- swapAndLiquify(swapTokensAtAmount,taxes) (#527)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tDev + s.tBuyback) (#556)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#534)
- Transfer(sender,recipient,s.tTransferAmount) (#561)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#534)
Reentrancy in BINGODOGE.constructor(address) (#203-228):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#205-206)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#227)
Reentrancy in BINGODOGE.swapAndLiquify(uint256,BINGODOGE.Taxes) (#565-597):
External calls:
- swapTokensForBNB(toSwap) (#572)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#580)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#580)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#485)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#580)
Reentrancy in BINGODOGE.transferFrom(address,address,uint256) (#260-268):
External calls:
- _transfer(sender,recipient,amount) (#261)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#623-629)
- address(marketingWallet).sendValue(marketingAmt) (#585)
- address(devWallet).sendValue(devAmt) (#589)
- address(buybackWallet).sendValue(buybackAmt) (#594)
External calls sending eth:
- _transfer(sender,recipient,amount) (#261)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#604-611)
- (success) = recipient.call{value: amount}() (#99)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#485)
- _approve(sender,_msgSender(),currentAllowance - amount) (#265)
Apply the check-effects-interactions pattern.
Additional information: link
BINGODOGE._transfer(address,address,uint256) (#488-535) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#515)
Avoid relying on block.timestamp.
Additional information: link
BINGODOGE.setTradingStatus(bool) (#305-309) compares to a boolean constant:
-state == true && genesis_block == 0 (#308)
Remove the equality to the boolean constant.
Additional information: link
BINGODOGE.includeInReward(address) (#327-338) has costly operations inside a loop:
- _excluded.pop() (#334)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#31-34) is never used and should be removed
Remove unused functions.
Additional information: link
BINGODOGE._rTotal (#141) 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) (#96-101):
- (success) = recipient.call{value: amount}() (#99)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IRouter.WETH() (#77) is not in mixedCase
Struct BINGODOGE.valuesFromGetValues (#178-192) is not in CapWords
Parameter BINGODOGE.setTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#354) is not in mixedCase
Parameter BINGODOGE.setTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#354) is not in mixedCase
Parameter BINGODOGE.setTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#354) is not in mixedCase
Parameter BINGODOGE.setTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#354) is not in mixedCase
Parameter BINGODOGE.setTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#354) is not in mixedCase
Parameter BINGODOGE.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#359) is not in mixedCase
Parameter BINGODOGE.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#359) is not in mixedCase
Parameter BINGODOGE.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#359) is not in mixedCase
Parameter BINGODOGE.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._dev (#359) is not in mixedCase
Parameter BINGODOGE.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#359) is not in mixedCase
Parameter BINGODOGE.updateSwapEnabled(bool)._enabled (#660) is not in mixedCase
Parameter BINGODOGE.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#700) is not in mixedCase
Parameter BINGODOGE.rescueAnyBEP20Tokens(address,address,uint256)._to (#700) is not in mixedCase
Parameter BINGODOGE.rescueAnyBEP20Tokens(address,address,uint256)._amount (#700) is not in mixedCase
Constant BINGODOGE._decimals (#137) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BINGODOGE.genesis_block (#148) is not in mixedCase
Constant BINGODOGE._name (#154) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BINGODOGE._symbol (#155) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#32)" inContext (#26-35)
Remove redundant statements if they congest code but offer no value.
Additional information: link
BINGODOGE._tTotal (#140) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#55-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#59-62)
name() should be declared external:
- BINGODOGE.name() (#231-233)
symbol() should be declared external:
- BINGODOGE.symbol() (#234-236)
totalSupply() should be declared external:
- BINGODOGE.totalSupply() (#242-244)
allowance(address,address) should be declared external:
- BINGODOGE.allowance(address,address) (#251-253)
approve(address,uint256) should be declared external:
- BINGODOGE.approve(address,uint256) (#255-258)
transferFrom(address,address,uint256) should be declared external:
- BINGODOGE.transferFrom(address,address,uint256) (#260-268)
increaseAllowance(address,uint256) should be declared external:
- BINGODOGE.increaseAllowance(address,uint256) (#270-273)
decreaseAllowance(address,uint256) should be declared external:
- BINGODOGE.decreaseAllowance(address,uint256) (#275-281)
transfer(address,uint256) should be declared external:
- BINGODOGE.transfer(address,uint256) (#283-287)
isExcludedFromReward(address) should be declared external:
- BINGODOGE.isExcludedFromReward(address) (#289-291)
reflectionFromToken(uint256,bool) should be declared external:
- BINGODOGE.reflectionFromToken(uint256,bool) (#293-302)
excludeFromFee(address) should be declared external:
- BINGODOGE.excludeFromFee(address) (#341-343)
includeInFee(address) should be declared external:
- BINGODOGE.includeInFee(address) (#345-347)
isExcludedFromFee(address) should be declared external:
- BINGODOGE.isExcludedFromFee(address) (#350-352)
setTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- BINGODOGE.setTaxes(uint256,uint256,uint256,uint256,uint256) (#354-357)
setSellTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- BINGODOGE.setSellTaxes(uint256,uint256,uint256,uint256,uint256) (#359-362)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- BINGODOGE.rescueAnyBEP20Tokens(address,address,uint256) (#700-702)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper 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 scam / 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 scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account