We are aiming to bring forward to the table an easy and fun way to increase your crypto capital, by trading, playing, staking, and farming or just by simply holding our coin. The token contract is audited with 0 issues and our CEO Ovidiu Vornicescu will host a VIDEO AMA with our TG community on 17:00 UTC 22.03.2022. We believe that transparency, hard work and the community are the main keys for a successful project. So please join our forum and Telegram community.
BTCBullDOG.swapBack() (#781-831) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#807)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BTCBullDOG._transferFrom(address,address,uint256) (#639-685):
External calls:
- swapBack() (#653)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#791-797)
- distributor.deposit{value: amountBNBReflection}() (#807)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
External calls sending eth:
- swapBack() (#653)
- distributor.deposit{value: amountBNBReflection}() (#807)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#666)
- amountReceived = takeFee(sender,amount) (#674)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#707)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#677)
Reentrancy in ManualDividendDistributor.setShare(address,uint256) (#305-320):
External calls:
- distributeDividendInToken(shareholder) (#307)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,shareholder,block.timestamp) (#364-369)
State variables written after the call(s):
- rewardshares[WBNB][shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#319)
- shares[shareholder].amount = amount (#317)
Apply the check-effects-interactions pattern.
Additional information: link
BTCBullDOG.claimtokensback(IBEP20) (#714-717) ignores return value by tokenAddress.transfer(marketingFeeReceiver,tokenAddress.balanceOf(address(this))) (#716)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
ManualDividendDistributor._token (#194) is never initialized. It is used in:
- ManualDividendDistributor.constructor(address) (#240-247)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
BTCBullDOG.setSellPremium(uint256) (#606-610) contains a tautology or contradiction:
- require(bool)(premium >= 0 && premium + totalFee <= 4500) (#607)
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.
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.
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
BTCBullDOG._basicTransfer(address,address,uint256) (#687-692) is never used and should be removed
ManualDividendDistributor.distributeDividend(address) (#338-348) is never used and should be removed
ManualDividendDistributor.shouldDistribute(address) (#333-336) is never used and should be removed
Remove unused functions.
Additional information: link
ManualDividendDistributor.rewardtoken (#205) is set pre-construction with a non-constant function or state variable:
- IBEP20(WBNB)
BTCBullDOG._maxTxAmount (#417) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
BTCBullDOG._maxSellTxAMount (#418) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
BTCBullDOG._maxHoldAmount (#419) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
BTCBullDOG.swapThreshold (#469) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 500
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
BTCBullDOG (#404-878) should inherit from IpresaleAirdrop (#187-189)
Inherit from the missing interface or contract.
Additional information: link
BTCBullDOG.swapBack() (#781-831) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
Ensure that all the return values of the function calls are used.
Additional information: link
BTCBullDOG.setSwapThresholdDivisor(uint256) (#548-551) should emit an event for:
- swapThreshold = _totalSupply / divisor (#550)
BTCBullDOG.setmaxholdpercentage(uint256) (#588-591) should emit an event for:
- _maxHoldAmount = _totalSupply * percentage / 100 (#590)
BTCBullDOG.setTxLimit(uint256) (#727-730) should emit an event for:
- _maxTxAmount = amount (#729)
BTCBullDOG.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#750-759) should emit an event for:
- liquidityFee = _liquidityFee (#751)
- reflectionFee = _reflectionFee (#752)
- marketingFee = _marketingFee (#753)
- developmentfee = _devFee (#754)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(developmentfee).add(charityorBurn) (#756)
- feeDenominator = _feeDenominator (#757)
BTCBullDOG.setSwapBackSettings(bool,uint256) (#839-842) should emit an event for:
- swapThreshold = _amount (#841)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#113) lacks a zero-check on :
- owner = adr (#114)
BTCBullDOG.setPresaleContract(address).ctrct (#566) lacks a zero-check on :
- presaleContract = ctrct (#567)
BTCBullDOG.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#833) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#834)
BTCBullDOG.setFeeReceivers(address,address,address)._marketingFeeReceiver (#833) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#835)
BTCBullDOG.setFeeReceivers(address,address,address).devWallet (#833) lacks a zero-check on :
- devFeeReciever = devWallet (#836)
Check that the address is not zero.
Additional information: link
ManualDividendDistributor.distributeDividendInToken(address) (#350-371) has external calls inside a loop: router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,shareholder,block.timestamp) (#364-369)
BTCBullDOG.airdropPresaleInternal(address,uint256) (#580-586) has external calls inside a loop: distributor.setShare(recipient,amount) (#584)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in BTCBullDOG._transferFrom(address,address,uint256) (#639-685):
External calls:
- swapBack() (#653)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#791-797)
- distributor.deposit{value: amountBNBReflection}() (#807)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
External calls sending eth:
- swapBack() (#653)
- distributor.deposit{value: amountBNBReflection}() (#807)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
State variables written after the call(s):
- launch() (#664)
- launchedAt = block.timestamp (#724)
Reentrancy in BTCBullDOG.constructor() (#473-501):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#477)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#479)
- distributor = new ManualDividendDistributor(address(router)) (#483)
- isMaxHoldExempt[pair] = true (#480)
- pairs[pair] = true (#478)
Reentrancy in BTCBullDOG.constructor() (#473-501):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#477)
- distributor.addAdmin(address(msg.sender)) (#484)
- distributor.setRewardToken(IBEP20(BTCB)) (#485)
State variables written after the call(s):
- _balances[owner] = _totalSupply (#499)
- authorizations[msg.sender] = true (#492)
- autoLiquidityReceiver = msg.sender (#494)
- devFeeReciever = msg.sender (#496)
- isDividendExempt[pair] = true (#486)
- isDividendExempt[address(this)] = true (#487)
- isDividendExempt[DEAD] = true (#488)
- isFeeExempt[msg.sender] = true (#491)
- isMaxHoldExempt[owner] = true (#498)
- isTxLimitExempt[msg.sender] = true (#490)
- marketingFeeReceiver = msg.sender (#495)
- owner = msg.sender (#497)
Reentrancy in ManualDividendDistributor.setShare(address,uint256) (#305-320):
External calls:
- distributeDividendInToken(shareholder) (#307)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,shareholder,block.timestamp) (#364-369)
State variables written after the call(s):
- addShareholder(shareholder) (#311)
- shareholderIndexes[shareholder] = shareholders.length (#393)
- removeShareholder(shareholder) (#313)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#399)
- addShareholder(shareholder) (#311)
- shareholders.push(shareholder) (#394)
- removeShareholder(shareholder) (#313)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#398)
- shareholders.pop() (#400)
- totalShares -= (shares[shareholder].amount) (#316)
- totalShares += (amount) (#318)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BTCBullDOG._transferFrom(address,address,uint256) (#639-685):
External calls:
- swapBack() (#653)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#791-797)
- distributor.deposit{value: amountBNBReflection}() (#807)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
External calls sending eth:
- swapBack() (#653)
- distributor.deposit{value: amountBNBReflection}() (#807)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#708)
- amountReceived = takeFee(sender,amount) (#674)
Reentrancy in BTCBullDOG._transferFrom(address,address,uint256) (#639-685):
External calls:
- swapBack() (#653)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#791-797)
- distributor.deposit{value: amountBNBReflection}() (#807)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
- distributor.setShare(sender,_balances[sender]) (#679)
- distributor.setShare(recipient,_balances[recipient]) (#680)
External calls sending eth:
- swapBack() (#653)
- distributor.deposit{value: amountBNBReflection}() (#807)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#682)
Reentrancy in BTCBullDOG.airdropPresale(address,uint256) (#573-578):
External calls:
- distributor.setShare(recipient,_balances[recipient]) (#576)
Event emitted after the call(s):
- Transfer(msg.sender,recipient,amount) (#577)
Reentrancy in BTCBullDOG.airdropPresaleInternal(address,uint256) (#580-586):
External calls:
- distributor.setShare(recipient,amount) (#584)
Event emitted after the call(s):
- Transfer(msg.sender,recipient,amount) (#585)
Reentrancy in BTCBullDOG.constructor() (#473-501):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#477)
- distributor.addAdmin(address(msg.sender)) (#484)
- distributor.setRewardToken(IBEP20(BTCB)) (#485)
Event emitted after the call(s):
- Transfer(address(0),owner,_totalSupply) (#500)
Reentrancy in BTCBullDOG.swapBack() (#781-831):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#791-797)
- distributor.deposit{value: amountBNBReflection}() (#807)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#807)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#829)
Apply the check-effects-interactions pattern.
Additional information: link
ManualDividendDistributor.shouldDistribute(address) (#333-336) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#334-335)
BTCBullDOG._transferFrom(address,address,uint256) (#639-685) uses timestamp for comparisons
Dangerous comparisons:
- ! launched() && pairs[recipient] (#664)
BTCBullDOG.launched() (#719-721) uses timestamp for comparisons
Dangerous comparisons:
- launchedAt != 0 (#720)
Avoid relying on block.timestamp.
Additional information: link
ManualDividendDistributor.distributeDividendInToken(address) (#350-371) has costly operations inside a loop:
- totalDistributed += amount (#355)
ManualDividendDistributor.setShareInternal(address,uint256) (#292-303) has costly operations inside a loop:
- totalShares += (shares[shareholder].amount) + (amount) (#300)
ManualDividendDistributor.removeShareholder(address) (#397-401) has costly operations inside a loop:
- shareholders.pop() (#400)
Use a local variable to hold the loop computation result.
Additional information: link
Function IDEXRouter.WETH() (#128) is not in mixedCase
Parameter ManualDividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#258) is not in mixedCase
Parameter ManualDividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#258) is not in mixedCase
Variable ManualDividendDistributor._token (#194) is not in mixedCase
Variable ManualDividendDistributor.WBNB (#203) is not in mixedCase
Parameter BTCBullDOG.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#750) is not in mixedCase
Parameter BTCBullDOG.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#750) is not in mixedCase
Parameter BTCBullDOG.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#750) is not in mixedCase
Parameter BTCBullDOG.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#750) is not in mixedCase
Parameter BTCBullDOG.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._charityFee (#750) is not in mixedCase
Parameter BTCBullDOG.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#750) is not in mixedCase
Parameter BTCBullDOG.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#833) is not in mixedCase
Parameter BTCBullDOG.setFeeReceivers(address,address,address)._marketingFeeReceiver (#833) is not in mixedCase
Parameter BTCBullDOG.setSwapBackSettings(bool,uint256)._enabled (#839) is not in mixedCase
Parameter BTCBullDOG.setSwapBackSettings(bool,uint256)._amount (#839) is not in mixedCase
Parameter BTCBullDOG.setTargetLiquidity(uint256,uint256)._target (#851) is not in mixedCase
Parameter BTCBullDOG.setTargetLiquidity(uint256,uint256)._denominator (#851) is not in mixedCase
Parameter BTCBullDOG.setDistributionCriteria(uint256,uint256)._minPeriod (#856) is not in mixedCase
Parameter BTCBullDOG.setDistributionCriteria(uint256,uint256)._minDistribution (#856) is not in mixedCase
Variable BTCBullDOG.WBNB (#407) is not in mixedCase
Variable BTCBullDOG.DEAD (#408) is not in mixedCase
Variable BTCBullDOG.ZERO (#409) is not in mixedCase
Variable BTCBullDOG.BTCB (#410) is not in mixedCase
Constant BTCBullDOG._name (#412) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BTCBullDOG._symbol (#413) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BTCBullDOG._decimals (#414) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BTCBullDOG._totalSupply (#416) is not in mixedCase
Variable BTCBullDOG._maxTxAmount (#417) is not in mixedCase
Variable BTCBullDOG._maxSellTxAMount (#418) is not in mixedCase
Variable BTCBullDOG._maxHoldAmount (#419) is not in mixedCase
Variable BTCBullDOG._balances (#421) is not in mixedCase
Variable BTCBullDOG._allowances (#422) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in BTCBullDOG._transferFrom(address,address,uint256) (#639-685):
External calls:
- swapBack() (#653)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
External calls sending eth:
- swapBack() (#653)
- distributor.deposit{value: amountBNBReflection}() (#807)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#666)
- amountReceived = takeFee(sender,amount) (#674)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#707)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#677)
- launch() (#664)
- launchedAt = block.timestamp (#724)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#708)
- amountReceived = takeFee(sender,amount) (#674)
- Transfer(sender,recipient,amountReceived) (#682)
Reentrancy in ManualDividendDistributor.distributeDividend(address) (#338-348):
External calls:
- address(shareholder).transfer(amount) (#343)
State variables written after the call(s):
- rewardshares[WBNB][shareholder].totalRealised += (amount) (#345)
- rewardshares[WBNB][shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#346)
- shareholderClaims[shareholder] = block.timestamp (#344)
Reentrancy in BTCBullDOG.swapBack() (#781-831):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#807)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#812)
- address(devFeeReciever).transfer(amountBNBDev) (#817)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#821-828)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#829)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#133) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#134)
Prevent variables from having similar names.
Additional information: link
BTCBullDOG.slitherConstructorVariables() (#404-878) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#408)
BTCBullDOG.slitherConstructorVariables() (#404-878) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#409)
BTCBullDOG.slitherConstructorVariables() (#404-878) uses literals with too many digits:
- distributorGas = 500000 (#466)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BTCBullDOG.BTCB (#410) should be constant
BTCBullDOG.DEAD (#408) should be constant
BTCBullDOG.WBNB (#407) should be constant
BTCBullDOG.ZERO (#409) should be constant
BTCBullDOG._totalSupply (#416) should be constant
BTCBullDOG.charityFeeReciever (#448) should be constant
BTCBullDOG.presaleAddress (#447) should be constant
BTCBullDOG.rewardtokenFee (#439) should be constant
ManualDividendDistributor.WBNB (#203) should be constant
ManualDividendDistributor._token (#194) should be constant
ManualDividendDistributor.currentIndex (#227) should be constant
ManualDividendDistributor.dividendsPerShareAccuracyFactor (#222) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#85-87)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#92-94)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#113-117)
addAdmin(address) should be declared external:
- ManualDividendDistributor.addAdmin(address) (#267-269)
removeAdmin(address) should be declared external:
- ManualDividendDistributor.removeAdmin(address) (#272-274)
getEstimatedTokenForBnb(uint256) should be declared external:
- BTCBullDOG.getEstimatedTokenForBnb(uint256) (#516-521)
getEstimatedBnbForToken(uint256) should be declared external:
- BTCBullDOG.getEstimatedBnbForToken(uint256) (#523-528)
buyTokens(uint256) should be declared external:
- BTCBullDOG.buyTokens(uint256) (#530-536)
getCirculatingSupply() should be declared external:
- BTCBullDOG.getCirculatingSupply() (#869-871)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account link seems to be invalid
Twitter account has less than 100 followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts