FirstDog Token Logo

FSD [FirstDog] Token

About FSD

Listings

Token 2 years

FirstDog (FSD) aims to be the most known and most used cryptocurrency in the world. #BSC

https://t.co/sHYEGfRD4f

Social

Laser Scorebeta Last Audit: 12 January 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

AddressContract._functionCallWithValue(address,bytes,uint256,string) (#158-185) sends eth to arbitrary user
Dangerous calls:
- (success,returndata) = target.call{value: weiValue}(data) (#167-168)
FirstDog.swapBack() (#1173-1230) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FirstDog._transferFrom(address,address,uint256) (#981-1064):
External calls:
- swapBack() (#1039)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1188-1194)
- distributor.deposit{value: amountBNBReflection}() (#1206)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
External calls sending eth:
- swapBack() (#1039)
- distributor.deposit{value: amountBNBReflection}() (#1206)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#1043)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#1049)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#1045-1048)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#1108)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#529-546) ignores return value by RWRD.transfer(shareholder,amount) (#537)
FirstDog.transferBEP20Tokens(address,address,uint256) (#1389-1391) ignores return value by IBEP20(_tokenAddr).transfer(_to,_amount) (#1390)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

FirstDog.swapBack().tmpSuccess (#1207) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
FirstDog.swapBack().tmpSuccess (#1207) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
tmpSuccess = false (#1217)
Fix or remove the writes.

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.

FirstDog.rebase_percentage(uint256) (#687-696) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#692-695)
FirstDog.rebase_percentage1000(uint256,uint256) (#698-715) performs a multiplication on the result of a division:
-newSupply = rebase1000(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)),coinAmount) (#709-712)
FirstDog.rebase_percentage1000(uint256,uint256) (#698-715) performs a multiplication on the result of a division:
-newSupply = rebase_new(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#705-707)
FirstDog.takeFee(address,uint256,bool) (#1091-1112) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#1101-1102)
FirstDog.takeFee(address,uint256,bool) (#1091-1112) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#1105)
FirstDog.swapBack() (#1173-1230) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#1178-1179)
FirstDog.setSwapBackSettings(bool,uint256) (#1288-1294) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#1293)
FirstDog.setMaxWalletPercent_base1000(uint256) (#1375-1380) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#1379)
FirstDog.setMaxTxPercent_base1000(uint256) (#1382-1387) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1386)
FirstDog.slitherConstructorVariables() (#598-1464) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(10) (#684)
FirstDog.slitherConstructorVariables() (#598-1464) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(50) (#685)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#529-546):
External calls:
- RWRD.transfer(shareholder,amount) (#537)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#539-541)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#542-544)
Reentrancy in DividendDistributor.process(uint256) (#495-521):
External calls:
- distributeDividend(shareholders[currentIndex]) (#513)
- RWRD.transfer(shareholder,amount) (#537)
State variables written after the call(s):
- currentIndex ++ (#518)
Reentrancy in DividendDistributor.setShare(address,uint256) (#451-471):
External calls:
- distributeDividend(shareholder) (#457)
- RWRD.transfer(shareholder,amount) (#537)
State variables written after the call(s):
- shares[shareholder].amount = amount (#467)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#468-470)
Apply the check-effects-interactions pattern.

Additional information: link

AddressContract.superFunctionCall(address,bytes).data1 (#85) is a local variable never initialized
FirstDog.manage_blacklist(address[],bool).i (#1163) is a local variable never initialized
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

FirstDog.rebase1000(uint256,int256,uint256) (#775-821) ignores return value by router.addLiquidityETH{value: msg.value}(address(this),coinAmount,0,0,address(this),block.timestamp + 300) (#811-818)
FirstDog.rebase_new(uint256,int256) (#823-870) ignores return value by router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)).div(100),0,0,address(this),block.timestamp + 300) (#859-865)
FirstDog.swapBack() (#1173-1230) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
Ensure that all the return values of the function calls are used.

Additional information: link

FirstDog.setMaster(address) (#1313-1315) should emit an event for:
- master = _master (#1314)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#442-449) should emit an event for:
- minPeriod = _minPeriod (#447)
- minDistribution = _minDistribution (#448)
FirstDog.set_sell_multiplier(uint256) (#1137-1139) should emit an event for:
- sellMultiplier = Multiplier (#1138)
FirstDog.tradingStatus(bool,uint256) (#1143-1149) should emit an event for:
- deadBlocks = _deadBlocks (#1147)
FirstDog.launchStatus(uint256) (#1151-1153) should emit an event for:
- launchedAt = _launchblock (#1152)
FirstDog.setFees(uint256,uint256,uint256,uint256,uint256) (#1260-1276) should emit an event for:
- liquidityFee = _liquidityFee (#1267)
- reflectionFee = _reflectionFee (#1268)
- marketingFee = _marketingFee (#1269)
- devFee = _devFee (#1270)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#1271-1273)
- feeDenominator = _feeDenominator (#1274)
FirstDog.setSwapBackSettings(bool,uint256) (#1288-1294) should emit an event for:
- swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#1293)
FirstDog.setMaxWalletPercent_base1000(uint256) (#1375-1380) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#1379)
FirstDog.setMaxTxPercent_base1000(uint256) (#1382-1387) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1386)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#299) lacks a zero-check on :
- owner = adr (#300)
FirstDog.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1279) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#1283)
FirstDog.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1280) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1284)
FirstDog.setFeeReceivers(address,address,address)._devFeeReceiver (#1281) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#1285)
FirstDog.setMaster(address)._master (#1313) lacks a zero-check on :
- master = _master (#1314)
FirstDog.rescueBNB(address)._recipient (#1345) lacks a zero-check on :
- _recipient.transfer(address(this).balance) (#1346)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#529-546) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#537)
FirstDog.multiTransfer(address,address[],uint256[]) (#1396-1431) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#1421-1423)
FirstDog.multiTransfer_fixed(address,address[],uint256) (#1433-1460) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#1450-1452)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in FirstDog.constructor() (#873-903):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#875)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#876)
- _rBalance[msg.sender] = rSupply (#901)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#879)
- autoLiquidityReceiver = msg.sender (#897)
- devFeeReceiver = 0x1ee6f6E15b2ecd82A5b36B69B9F0071eB212762E (#899)
- distributor = new DividendDistributor(address(router)) (#882)
- isDividendExempt[pair] = true (#893)
- isDividendExempt[address(this)] = true (#894)
- isDividendExempt[DEAD] = true (#895)
- isFeeExempt[msg.sender] = true (#884)
- isTimelockExempt[msg.sender] = true (#889)
- isTimelockExempt[DEAD] = true (#890)
- isTimelockExempt[address(this)] = true (#891)
- isTxLimitExempt[msg.sender] = true (#885)
- isTxLimitExempt[pair] = true (#886)
- isTxLimitExempt[address(this)] = true (#887)
- marketingFeeReceiver = 0x6370D4c4C8d5435469a3896fab1A1D0fCD7bB0dc (#898)
- pairContract = InterfaceLP(pair) (#878)
- rate = rSupply.div(_totalSupply) (#880)
Reentrancy in DividendDistributor.deposit() (#473-493):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#480-485)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#490-492)
- totalDividends = totalDividends.add(amount) (#489)
Reentrancy in DividendDistributor.distributeDividend(address) (#529-546):
External calls:
- RWRD.transfer(shareholder,amount) (#537)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#538)
Reentrancy in FirstDog.rebase1000(uint256,int256,uint256) (#775-821):
External calls:
- router.addLiquidityETH{value: msg.value}(address(this),coinAmount,0,0,address(this),block.timestamp + 300) (#811-818)
State variables written after the call(s):
- beforeRebase = false (#819)
Reentrancy in FirstDog.rebase_new(uint256,int256) (#823-870):
External calls:
- router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)).div(100),0,0,address(this),block.timestamp + 300) (#859-865)
State variables written after the call(s):
- beforeRebase = false (#868)
Reentrancy in DividendDistributor.setShare(address,uint256) (#451-471):
External calls:
- distributeDividend(shareholder) (#457)
- RWRD.transfer(shareholder,amount) (#537)
State variables written after the call(s):
- addShareholder(shareholder) (#461)
- shareholderIndexes[shareholder] = shareholders.length (#581)
- removeShareholder(shareholder) (#463)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#589-591)
- addShareholder(shareholder) (#461)
- shareholders.push(shareholder) (#582)
- removeShareholder(shareholder) (#463)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#586-588)
- shareholders.pop() (#592)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#466)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FirstDog._transferFrom(address,address,uint256) (#981-1064):
External calls:
- swapBack() (#1039)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1188-1194)
- distributor.deposit{value: amountBNBReflection}() (#1206)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
- distributor.setShare(sender,balanceOf(sender)) (#1053)
- distributor.setShare(recipient,balanceOf(recipient)) (#1057)
- distributor.process(distributorGas) (#1060)
External calls sending eth:
- swapBack() (#1039)
- distributor.deposit{value: amountBNBReflection}() (#1206)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#1062)
Reentrancy in FirstDog._transferFrom(address,address,uint256) (#981-1064):
External calls:
- swapBack() (#1039)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1188-1194)
- distributor.deposit{value: amountBNBReflection}() (#1206)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
External calls sending eth:
- swapBack() (#1039)
- distributor.deposit{value: amountBNBReflection}() (#1206)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#1109)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#1045-1048)
Reentrancy in FirstDog.constructor() (#873-903):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#875)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#902)
Reentrancy in FirstDog.rebase(uint256,int256) (#739-773):
External calls:
- pairContract.sync() (#768)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#770)
Reentrancy in FirstDog.swapBack() (#1173-1230):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1188-1194)
- distributor.deposit{value: amountBNBReflection}() (#1206)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#1206)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1220-1227)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#1228)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#523-527) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#524-526)
FirstDog._transferFrom(address,address,uint256) (#981-1064) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#1020-1023)
Avoid relying on block.timestamp.

Additional information: link

AddressContract.isContract(address) (#56-66) uses assembly
- INLINE ASM (#62-64)
AddressContract._functionCallWithValue(address,bytes,uint256,string) (#158-185) uses assembly
- INLINE ASM (#177-180)
Do not use evm assembly.

Additional information: link

DividendDistributor.process(uint256) (#495-521) has costly operations inside a loop:
- currentIndex = 0 (#509)
DividendDistributor.distributeDividend(address) (#529-546) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#536)
DividendDistributor.process(uint256) (#495-521) has costly operations inside a loop:
- currentIndex ++ (#518)
Use a local variable to hold the loop computation result.

Additional information: link

AddressContract.functionCall(address,bytes) (#94-99) is never used and should be removed
AddressContract.functionCallWithValue(address,bytes,uint256) (#130-142) is never used and should be removed
AddressContract.sendValue(address,uint256) (#69-78) is never used and should be removed
SafeMathInt.abs(int256) (#223-226) is never used and should be removed
SafeMathInt.add(int256,int256) (#217-221) is never used and should be removed
SafeMathInt.div(int256,int256) (#205-209) is never used and should be removed
SafeMathInt.sub(int256,int256) (#211-215) is never used and should be removed
Remove unused functions.

Additional information: link

FirstDog.totalFee (#623-624) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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.7.4 (#1) 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 AddressContract.sendValue(address,uint256) (#69-78):
- (success) = recipient.call{value: amount}() (#73)
Low level call in AddressContract._functionCallWithValue(address,bytes,uint256,string) (#158-185):
- (success,returndata) = target.call{value: weiValue}(data) (#167-168)
Low level call in FirstDog.swapBack() (#1173-1230):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1207-1210)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1211-1214)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter AddressContract.setStatus(bool)._status (#187) is not in mixedCase
Function IDEXRouter.WETH() (#321) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#442) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#442) is not in mixedCase
Variable DividendDistributor._token (#394) is not in mixedCase
Variable DividendDistributor.RWRD (#402) is not in mixedCase
Variable DividendDistributor.WBNB (#403) is not in mixedCase
Function FirstDog.rebase_percentage(uint256) (#687-696) is not in mixedCase
Parameter FirstDog.rebase_percentage(uint256)._percentage_base1000 (#687) is not in mixedCase
Function FirstDog.rebase_percentage1000(uint256,uint256) (#698-715) is not in mixedCase
Parameter FirstDog.rebase_percentage1000(uint256,uint256)._percentage_base1000 (#698) is not in mixedCase
Parameter FirstDog.setRebaseStatus(bool)._rebaseStatus (#728) is not in mixedCase
Parameter FirstDog.setLPStatus(bool)._LPStatus (#733) is not in mixedCase
Function FirstDog.rebase_new(uint256,int256) (#823-870) is not in mixedCase
Parameter FirstDog.setBeforeRebase(bool)._beforeRebase (#977) is not in mixedCase
Function FirstDog.clearStuckBalance_sender(uint256) (#1129-1135) is not in mixedCase
Function FirstDog.set_sell_multiplier(uint256) (#1137-1139) is not in mixedCase
Parameter FirstDog.set_sell_multiplier(uint256).Multiplier (#1137) is not in mixedCase
Parameter FirstDog.tradingStatus(bool,uint256)._status (#1143) is not in mixedCase
Parameter FirstDog.tradingStatus(bool,uint256)._deadBlocks (#1143) is not in mixedCase
Parameter FirstDog.launchStatus(uint256)._launchblock (#1151) is not in mixedCase
Function FirstDog.enable_blacklist(bool) (#1155-1157) is not in mixedCase
Parameter FirstDog.enable_blacklist(bool)._status (#1155) is not in mixedCase
Function FirstDog.manage_blacklist(address[],bool) (#1159-1166) is not in mixedCase
Parameter FirstDog.cooldownEnabled(bool,uint8)._status (#1168) is not in mixedCase
Parameter FirstDog.cooldownEnabled(bool,uint8)._interval (#1168) is not in mixedCase
Parameter FirstDog.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1261) is not in mixedCase
Parameter FirstDog.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#1262) is not in mixedCase
Parameter FirstDog.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#1263) is not in mixedCase
Parameter FirstDog.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#1264) is not in mixedCase
Parameter FirstDog.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#1265) is not in mixedCase
Parameter FirstDog.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1279) is not in mixedCase
Parameter FirstDog.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1280) is not in mixedCase
Parameter FirstDog.setFeeReceivers(address,address,address)._devFeeReceiver (#1281) is not in mixedCase
Parameter FirstDog.setSwapBackSettings(bool,uint256)._enabled (#1288) is not in mixedCase
Parameter FirstDog.setSwapBackSettings(bool,uint256)._percentage_base10000 (#1288) is not in mixedCase
Parameter FirstDog.setTargetLiquidity(uint256,uint256)._target (#1296) is not in mixedCase
Parameter FirstDog.setTargetLiquidity(uint256,uint256)._denominator (#1296) is not in mixedCase
Parameter FirstDog.setLP(address)._address (#1308) is not in mixedCase
Parameter FirstDog.setMaster(address)._master (#1313) is not in mixedCase
Parameter FirstDog.setDistributionCriteria(uint256,uint256)._minPeriod (#1325) is not in mixedCase
Parameter FirstDog.setDistributionCriteria(uint256,uint256)._minDistribution (#1325) is not in mixedCase
Parameter FirstDog.rescueBNB(address)._recipient (#1345) is not in mixedCase
Function FirstDog.setMaxWalletPercent_base1000(uint256) (#1375-1380) is not in mixedCase
Parameter FirstDog.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#1375) is not in mixedCase
Function FirstDog.setMaxTxPercent_base1000(uint256) (#1382-1387) is not in mixedCase
Parameter FirstDog.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#1382) is not in mixedCase
Parameter FirstDog.transferBEP20Tokens(address,address,uint256)._tokenAddr (#1389) is not in mixedCase
Parameter FirstDog.transferBEP20Tokens(address,address,uint256)._to (#1389) is not in mixedCase
Parameter FirstDog.transferBEP20Tokens(address,address,uint256)._amount (#1389) is not in mixedCase
Function FirstDog.multiTransfer_fixed(address,address[],uint256) (#1433-1460) is not in mixedCase
Variable FirstDog.WBNB (#602) is not in mixedCase
Variable FirstDog.DEAD (#603) is not in mixedCase
Variable FirstDog.ZERO (#604) is not in mixedCase
Constant FirstDog._name (#606) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FirstDog._symbol (#607) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FirstDog._decimals (#608) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FirstDog._rBalance (#611) is not in mixedCase
Variable FirstDog._allowances (#612) is not in mixedCase
Variable FirstDog._isBot (#613) is not in mixedCase
Variable FirstDog.LPStatus (#648) is not in mixedCase
Variable FirstDog.rebase_count (#675) is not in mixedCase
Variable FirstDog._totalSupply (#677) is not in mixedCase
Constant FirstDog.rSupply (#680-681) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FirstDog._maxTxAmount (#684) is not in mixedCase
Variable FirstDog._maxWalletToken (#685) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#326) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#327)
Prevent variables from having similar names.

Additional information: link

FirstDog.setDistributorSettings(uint256) (#1332-1335) uses literals with too many digits:
- require(bool)(gas < 900000) (#1333)
FirstDog.slitherConstructorVariables() (#598-1464) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#603)
FirstDog.slitherConstructorVariables() (#598-1464) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#604)
FirstDog.slitherConstructorVariables() (#598-1464) uses literals with too many digits:
- distributorGas = 300000 (#650)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#195) is never used in SafeMathInt (#193-227)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#403) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#416) should be constant
FirstDog.DEAD (#603) should be constant
FirstDog.WBNB (#602) should be constant
FirstDog.ZERO (#604) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

superFunctionCall(address,bytes) should be declared external:
- AddressContract.superFunctionCall(address,bytes) (#80-91)
superFunctionCallWithValue(address,bytes,uint256) should be declared external:
- AddressContract.superFunctionCallWithValue(address,bytes,uint256) (#110-127)
setStatus(bool) should be declared external:
- AddressContract.setStatus(bool) (#187-190)
authorize(address) should be declared external:
- Auth.authorize(address) (#283-285)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#287-289)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#299-303)
rebase_percentage(uint256) should be declared external:
- FirstDog.rebase_percentage(uint256) (#687-696)
rebase_percentage1000(uint256,uint256) should be declared external:
- FirstDog.rebase_percentage1000(uint256,uint256) (#698-715)
setRebaseStatus(bool) should be declared external:
- FirstDog.setRebaseStatus(bool) (#728-731)
setLPStatus(bool) should be declared external:
- FirstDog.setLPStatus(bool) (#733-736)
setBeforeRebase(bool) should be declared external:
- FirstDog.setBeforeRebase(bool) (#977-979)
tradingStatus(bool,uint256) should be declared external:
- FirstDog.tradingStatus(bool,uint256) (#1143-1149)
launchStatus(uint256) should be declared external:
- FirstDog.launchStatus(uint256) (#1151-1153)
enable_blacklist(bool) should be declared external:
- FirstDog.enable_blacklist(bool) (#1155-1157)
manage_blacklist(address[],bool) should be declared external:
- FirstDog.manage_blacklist(address[],bool) (#1159-1166)
cooldownEnabled(bool,uint8) should be declared external:
- FirstDog.cooldownEnabled(bool,uint8) (#1168-1171)
rescueToken(address,uint256) should be declared external:
- FirstDog.rescueToken(address,uint256) (#1337-1343)
rescueBNB(address) should be declared external:
- FirstDog.rescueBNB(address) (#1345-1347)
isOverLiquified(uint256,uint256) should be declared external:
- FirstDog.isOverLiquified(uint256,uint256) (#1359-1365)
transferBEP20Tokens(address,address,uint256) should be declared external:
- FirstDog.transferBEP20Tokens(address,address,uint256) (#1389-1391)
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.


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


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


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

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


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


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

Price for FSD

News for FSD