Fat Satoshi Token Logo

FATOSHI [Fat Satoshi] Token

About FATOSHI

Listings

Token 4 years

Launched in 11/01/2022 by a team based in Australia and Europe, Fatoshi is creating a Cross-Chain Ecosystem with: Cross-Chain NFT Minting Pad, solving a huge problem in the NFT sphere + Cross-Chain NFT Marketplace. Audited by Certik-Pre Launch.
FATOSHI provides BITCOIN Passive Income Rewards, from every buy or sale, directly on the holders' wallets.

Social

Laser Scorebeta Last Audit: 17 January 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Reentrancy in FatSatoshi._transfer(address,address,uint256) (#1482-1592):
External calls:
- swapBack() (#1542)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1619-1625)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1600-1605)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- success = IERC20(token).transfer(address(dividendTracker),tokenBalance) (#1682)
- dividendTracker.distributeTokenDividends(tokenBalance) (#1685)
External calls sending eth:
- swapBack() (#1542)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1600-1605)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1573)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#424)
- _balances[recipient] = _balances[recipient].add(amount) (#425)
- super._transfer(from,to,amount) (#1579)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#424)
- _balances[recipient] = _balances[recipient].add(amount) (#425)
- swapping = false (#1543)
- tokensForLiquidity += fees * liquiditySellFee / totalSellFees (#1561)
- tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees (#1568)
- tokensForMarketing += fees * marketingSellFee / totalSellFees (#1562)
- tokensForMarketing += fees * marketingBuyFee / totalBuyFees (#1569)
- tokensForRewards += fees * rewardsSellFee / totalSellFees (#1560)
- tokensForRewards += fees * rewardsBuyFee / totalBuyFees (#1567)
Apply the check-effects-interactions pattern.

Additional information: link

Contract locking ether found:
Contract DividendTracker (#1714-1922) has payable functions:
- DividendPayingToken.receive() (#1002-1004)
- DividendPayingToken.distributeDividends() (#1020-1022)
- DividendPayingTokenInterface.distributeDividends() (#543)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

FatSatoshi.updateGasForProcessing(uint256) (#1397-1402) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000, gasForProcessing must be between 200,000 and 500,000) (#1398)
FatSatoshi.slitherConstructorVariables() (#1130-1712) uses literals with too many digits:
- gasForProcessing = 400000 (#1177)
DividendTracker.getAccountAtIndex(uint256) (#1819-1836) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1830)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#766) is never used in SafeMathInt (#764-822)
Remove unused state variables.

Additional information: link

FatSatoshi.liquidityActiveBlock (#1148) should be constant
FatSatoshi.maxWallet (#1146) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

FatSatoshi._transfer(address,address,uint256) (#1482-1592) performs a multiplication on the result of a division:
-fees = amount.mul(totalSellFees).div(100) (#1559)
-tokensForRewards += fees * rewardsSellFee / totalSellFees (#1560)
FatSatoshi._transfer(address,address,uint256) (#1482-1592) performs a multiplication on the result of a division:
-fees = amount.mul(totalSellFees).div(100) (#1559)
-tokensForLiquidity += fees * liquiditySellFee / totalSellFees (#1561)
FatSatoshi._transfer(address,address,uint256) (#1482-1592) performs a multiplication on the result of a division:
-fees = amount.mul(totalSellFees).div(100) (#1559)
-tokensForMarketing += fees * marketingSellFee / totalSellFees (#1562)
FatSatoshi._transfer(address,address,uint256) (#1482-1592) performs a multiplication on the result of a division:
-fees = amount.mul(totalBuyFees).div(100) (#1566)
-tokensForRewards += fees * rewardsBuyFee / totalBuyFees (#1567)
FatSatoshi._transfer(address,address,uint256) (#1482-1592) performs a multiplication on the result of a division:
-fees = amount.mul(totalBuyFees).div(100) (#1566)
-tokensForLiquidity += fees * liquidityBuyFee / totalBuyFees (#1568)
FatSatoshi._transfer(address,address,uint256) (#1482-1592) performs a multiplication on the result of a division:
-fees = amount.mul(totalBuyFees).div(100) (#1566)
-tokensForMarketing += fees * marketingBuyFee / totalBuyFees (#1569)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1045-1061):
External calls:
- success = IERC20(token).transfer(user,_withdrawableDividend) (#1050)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1053)
Reentrancy in FatSatoshi.swapBack() (#1645-1690):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1657)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1619-1625)
State variables written after the call(s):
- tokensForLiquidity = 0 (#1666)
- tokensForMarketing = 0 (#1667)
- tokensForRewards = 0 (#1668)
Apply the check-effects-interactions pattern.

Additional information: link

FatSatoshi._transfer(address,address,uint256) (#1482-1592) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[tx.origin] < block.number,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#1513)
Do not use tx.origin for authorization.

Additional information: link

FatSatoshi._transfer(address,address,uint256).iterations (#1587) is a local variable never initialized
FatSatoshi._transfer(address,address,uint256).claims (#1587) is a local variable never initialized
FatSatoshi._transfer(address,address,uint256).lastProcessedIndex (#1587) 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

FatSatoshi.claim() (#1459-1461) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#1460)
FatSatoshi._transfer(address,address,uint256) (#1482-1592) ignores return value by dividendTracker.process(gas) (#1587-1590)
FatSatoshi.addLiquidity(uint256,uint256) (#1629-1643) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.dividendOf(address)._owner (#1067) shadows:
- Ownable._owner (#711) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1074) shadows:
- Ownable._owner (#711) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1081) shadows:
- Ownable._owner (#711) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1091) shadows:
- Ownable._owner (#711) (state variable)
FatSatoshi.constructor().totalSupply (#1230) shadows:
- ERC20.totalSupply() (#298-300) (function)
- IERC20.totalSupply() (#148) (function)
Rename the local variables that shadow another component.

Additional information: link

FatSatoshi.updateMaxAmount(uint256) (#1333-1336) should emit an event for:
- maxTransactionAmount = newNum * (10 ** 18) (#1335)
FatSatoshi.updateBuyFees(uint256,uint256,uint256) (#1338-1344) should emit an event for:
- marketingBuyFee = _marketingFee (#1339)
- rewardsBuyFee = _rewardsFee (#1340)
- liquidityBuyFee = _liquidityFee (#1341)
- totalBuyFees = marketingBuyFee + rewardsBuyFee + liquidityBuyFee (#1342)
FatSatoshi.updateSellFees(uint256,uint256,uint256) (#1346-1352) should emit an event for:
- marketingSellFee = _marketingFee (#1347)
- rewardsSellFee = _rewardsFee (#1348)
- liquiditySellFee = _liquidityFee (#1349)
- totalSellFees = marketingSellFee + rewardsSellFee + liquiditySellFee (#1350)
Emit an event for critical parameter changes.

Additional information: link

FatSatoshi.addPresaleAddressForExclusions(address,address)._presaleAddress (#1292) lacks a zero-check on :
- presaleAddress = _presaleAddress (#1293)
FatSatoshi.addPresaleAddressForExclusions(address,address)._presaleRouterAddress (#1292) lacks a zero-check on :
- presaleRouterAddress = _presaleRouterAddress (#1297)
FatSatoshi.emergencyPresaleAddressUpdate(address,address)._presaleAddress (#1303) lacks a zero-check on :
- presaleAddress = _presaleAddress (#1304)
FatSatoshi.emergencyPresaleAddressUpdate(address,address)._presaleRouterAddress (#1303) lacks a zero-check on :
- presaleRouterAddress = _presaleRouterAddress (#1305)
FatSatoshi.updateMarketingWallet(address).newMarketingWallet (#1391) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#1394)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1045-1061) has external calls inside a loop: success = IERC20(token).transfer(user,_withdrawableDividend) (#1050)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'FatSatoshi._transfer(address,address,uint256).lastProcessedIndex (#1587)' in FatSatoshi._transfer(address,address,uint256) (#1482-1592) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1588)
Variable 'FatSatoshi._transfer(address,address,uint256).claims (#1587)' in FatSatoshi._transfer(address,address,uint256) (#1482-1592) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1588)
Variable 'FatSatoshi._transfer(address,address,uint256).iterations (#1587)' in FatSatoshi._transfer(address,address,uint256) (#1482-1592) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1588)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in FatSatoshi.addPresaleAddressForExclusions(address,address) (#1292-1301):
External calls:
- dividendTracker.excludeFromDividends(_presaleAddress) (#1295)
State variables written after the call(s):
- excludeFromFees(_presaleRouterAddress,true) (#1298)
- _isExcludedFromFees[account] = excluded (#1360)
- excludeFromMaxTransaction(_presaleAddress,true) (#1296)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1355)
- presaleRouterAddress = _presaleRouterAddress (#1297)
Reentrancy in FatSatoshi.addPresaleAddressForExclusions(address,address) (#1292-1301):
External calls:
- dividendTracker.excludeFromDividends(_presaleAddress) (#1295)
- dividendTracker.excludeFromDividends(_presaleRouterAddress) (#1299)
State variables written after the call(s):
- excludeFromMaxTransaction(_presaleRouterAddress,true) (#1300)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1355)
Reentrancy in FatSatoshi.constructor() (#1227-1285):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1255-1256)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1259)
- uniswapV2Router = _uniswapV2Router (#1258)
Reentrancy in FatSatoshi.constructor() (#1227-1285):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1255-1256)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1261)
- dividendTracker.excludeFromDividends(pair) (#1385)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1261)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1355)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1261)
- automatedMarketMakerPairs[pair] = value (#1380)
Reentrancy in FatSatoshi.constructor() (#1227-1285):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1255-1256)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1261)
- dividendTracker.excludeFromDividends(pair) (#1385)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1264)
- dividendTracker.excludeFromDividends(address(this)) (#1265)
- dividendTracker.excludeFromDividends(newOwner) (#1266)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1267)
- dividendTracker.excludeFromDividends(address(0xdead)) (#1268)
State variables written after the call(s):
- _mint(address(newOwner),totalSupply) (#1284)
- _balances[account] = _balances[account].add(amount) (#444)
- excludeFromFees(newOwner,true) (#1271)
- _isExcludedFromFees[account] = excluded (#1360)
- excludeFromFees(address(this),true) (#1272)
- _isExcludedFromFees[account] = excluded (#1360)
- excludeFromFees(address(0xdead),true) (#1273)
- _isExcludedFromFees[account] = excluded (#1360)
- excludeFromMaxTransaction(newOwner,true) (#1274)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1355)
- excludeFromMaxTransaction(address(this),true) (#1275)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1355)
- excludeFromMaxTransaction(address(dividendTracker),true) (#1276)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1355)
- excludeFromMaxTransaction(address(_uniswapV2Router),true) (#1277)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1355)
- excludeFromMaxTransaction(address(0xdead),true) (#1278)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1355)
- _mint(address(newOwner),totalSupply) (#1284)
- _totalSupply = _totalSupply.add(amount) (#443)
Reentrancy in DividendTracker.processAccount(address,bool) (#1910-1920):
External calls:
- amount = _withdrawDividendOfUser(account) (#1911)
- success = IERC20(token).transfer(user,_withdrawableDividend) (#1050)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1914)
Reentrancy in FatSatoshi.swapBack() (#1645-1690):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1657)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1619-1625)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
State variables written after the call(s):
- addLiquidity(liquidityTokens,ethForLiquidity) (#1673)
- _allowances[owner][spender] = amount (#490)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FatSatoshi._setAutomatedMarketMakerPair(address,bool) (#1379-1389):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1385)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1388)
Reentrancy in FatSatoshi._transfer(address,address,uint256) (#1482-1592):
External calls:
- swapBack() (#1542)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1619-1625)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1600-1605)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- success = IERC20(token).transfer(address(dividendTracker),tokenBalance) (#1682)
- dividendTracker.distributeTokenDividends(tokenBalance) (#1685)
External calls sending eth:
- swapBack() (#1542)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1600-1605)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#426)
- super._transfer(from,to,amount) (#1579)
- Transfer(sender,recipient,amount) (#426)
- super._transfer(from,address(this),fees) (#1573)
Reentrancy in FatSatoshi._transfer(address,address,uint256) (#1482-1592):
External calls:
- swapBack() (#1542)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1619-1625)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1600-1605)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- success = IERC20(token).transfer(address(dividendTracker),tokenBalance) (#1682)
- dividendTracker.distributeTokenDividends(tokenBalance) (#1685)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1581)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1582)
- dividendTracker.process(gas) (#1587-1590)
External calls sending eth:
- swapBack() (#1542)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1600-1605)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1588)
Reentrancy in FatSatoshi.addPresaleAddressForExclusions(address,address) (#1292-1301):
External calls:
- dividendTracker.excludeFromDividends(_presaleAddress) (#1295)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1362)
- excludeFromFees(_presaleRouterAddress,true) (#1298)
- ExcludedMaxTransactionAmount(updAds,isEx) (#1356)
- excludeFromMaxTransaction(_presaleAddress,true) (#1296)
Reentrancy in FatSatoshi.addPresaleAddressForExclusions(address,address) (#1292-1301):
External calls:
- dividendTracker.excludeFromDividends(_presaleAddress) (#1295)
- dividendTracker.excludeFromDividends(_presaleRouterAddress) (#1299)
Event emitted after the call(s):
- ExcludedMaxTransactionAmount(updAds,isEx) (#1356)
- excludeFromMaxTransaction(_presaleRouterAddress,true) (#1300)
Reentrancy in FatSatoshi.constructor() (#1227-1285):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1255-1256)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1261)
- dividendTracker.excludeFromDividends(pair) (#1385)
Event emitted after the call(s):
- ExcludedMaxTransactionAmount(updAds,isEx) (#1356)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1261)
- SetAutomatedMarketMakerPair(pair,value) (#1388)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1261)
Reentrancy in FatSatoshi.constructor() (#1227-1285):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1255-1256)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1261)
- dividendTracker.excludeFromDividends(pair) (#1385)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1264)
- dividendTracker.excludeFromDividends(address(this)) (#1265)
- dividendTracker.excludeFromDividends(newOwner) (#1266)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1267)
- dividendTracker.excludeFromDividends(address(0xdead)) (#1268)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1362)
- excludeFromFees(address(0xdead),true) (#1273)
- ExcludeFromFees(account,excluded) (#1362)
- excludeFromFees(newOwner,true) (#1271)
- ExcludeFromFees(account,excluded) (#1362)
- excludeFromFees(address(this),true) (#1272)
- ExcludedMaxTransactionAmount(updAds,isEx) (#1356)
- excludeFromMaxTransaction(address(_uniswapV2Router),true) (#1277)
- ExcludedMaxTransactionAmount(updAds,isEx) (#1356)
- excludeFromMaxTransaction(address(dividendTracker),true) (#1276)
- ExcludedMaxTransactionAmount(updAds,isEx) (#1356)
- excludeFromMaxTransaction(address(this),true) (#1275)
- ExcludedMaxTransactionAmount(updAds,isEx) (#1356)
- excludeFromMaxTransaction(newOwner,true) (#1274)
- ExcludedMaxTransactionAmount(updAds,isEx) (#1356)
- excludeFromMaxTransaction(address(0xdead),true) (#1278)
- Transfer(address(0),account,amount) (#445)
- _mint(address(newOwner),totalSupply) (#1284)
Reentrancy in FatSatoshi.excludeFromDividends(address) (#1315-1318):
External calls:
- dividendTracker.excludeFromDividends(account) (#1316)
Event emitted after the call(s):
- ExcludeFromDividends(account) (#1317)
Reentrancy in FatSatoshi.includeInDividends(address) (#1321-1324):
External calls:
- dividendTracker.includeInDividends(account) (#1322)
Event emitted after the call(s):
- IncludeInDividends(account) (#1323)
Reentrancy in DividendTracker.processAccount(address,bool) (#1910-1920):
External calls:
- amount = _withdrawDividendOfUser(account) (#1911)
- success = IERC20(token).transfer(user,_withdrawableDividend) (#1050)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1915)
Reentrancy in FatSatoshi.processDividendTracker(uint256) (#1454-1457):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1455)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1456)
Reentrancy in FatSatoshi.swapBack() (#1645-1690):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1657)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1619-1625)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#491)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1673)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#1674)
Reentrancy in FatSatoshi.swapBack() (#1645-1690):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1657)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1619-1625)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
- swapBnbForRewardToken(ethForRewards) (#1679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1600-1605)
- success = IERC20(token).transfer(address(dividendTracker),tokenBalance) (#1682)
- dividendTracker.distributeTokenDividends(tokenBalance) (#1685)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1673)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#1634-1641)
- swapBnbForRewardToken(ethForRewards) (#1679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,address(this),block.timestamp) (#1600-1605)
Event emitted after the call(s):
- SendDividends(tokenBalance,ethForRewards) (#1686)
Apply the check-effects-interactions pattern.

Additional information: link

DividendTracker.getAccount(address) (#1774-1817) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1814-1816)
DividendTracker.canAutoClaim(uint256) (#1838-1844) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1839)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1843)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#10-13) is never used and should be removed
ERC20._burn(address,uint256) (#459-467) is never used and should be removed
SafeMath.mod(uint256,uint256) (#688-690) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#704-707) is never used and should be removed
SafeMathInt.abs(int256) (#812-815) is never used and should be removed
SafeMathInt.div(int256,int256) (#783-789) is never used and should be removed
SafeMathInt.mul(int256,int256) (#771-778) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.9 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 is not recommended for deployment
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 FatSatoshi.swapBack() (#1645-1690):
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1670)
Low level call in FatSatoshi.withdrawStuckEth() (#1708-1711):
- (success) = address(msg.sender).call{value: address(this).balance}() (#1709)
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() (#31) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#32) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#49) is not in mixedCase
Function IUniswapV2Router01.WETH() (#835) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1067) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1074) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1081) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1091) is not in mixedCase
Constant DividendPayingToken.magnitude (#976) is not in UPPER_CASE_WITH_UNDERSCORES
Event FatSatoshimarketingWalletUpdated(address,address) (#1200) is not in CapWords
Parameter FatSatoshi.addPresaleAddressForExclusions(address,address)._presaleAddress (#1292) is not in mixedCase
Parameter FatSatoshi.addPresaleAddressForExclusions(address,address)._presaleRouterAddress (#1292) is not in mixedCase
Parameter FatSatoshi.emergencyPresaleAddressUpdate(address,address)._presaleAddress (#1303) is not in mixedCase
Parameter FatSatoshi.emergencyPresaleAddressUpdate(address,address)._presaleRouterAddress (#1303) is not in mixedCase
Parameter FatSatoshi.updateBuyFees(uint256,uint256,uint256)._marketingFee (#1338) is not in mixedCase
Parameter FatSatoshi.updateBuyFees(uint256,uint256,uint256)._rewardsFee (#1338) is not in mixedCase
Parameter FatSatoshi.updateBuyFees(uint256,uint256,uint256)._liquidityFee (#1338) is not in mixedCase
Parameter FatSatoshi.updateSellFees(uint256,uint256,uint256)._marketingFee (#1346) is not in mixedCase
Parameter FatSatoshi.updateSellFees(uint256,uint256,uint256)._rewardsFee (#1346) is not in mixedCase
Parameter FatSatoshi.updateSellFees(uint256,uint256,uint256)._liquidityFee (#1346) is not in mixedCase
Variable FatSatoshi._isExcludedMaxTransactionAmount (#1184) is not in mixedCase
Parameter DividendTracker.getAccount(address)._account (#1774) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
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 (#840) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#841)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1046) is too similar to DividendTracker.getAccount(address).withdrawableDividends (#1779)
Prevent variables from having similar names.

Additional information: link

get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#92-94)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#96-101)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#103-105)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#109-111)
name() should be declared external:
- ERC20.name() (#266-268)
symbol() should be declared external:
- ERC20.symbol() (#274-276)
decimals() should be declared external:
- ERC20.decimals() (#291-293)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#317-320)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#325-327)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#336-339)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#354-362)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#376-379)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#395-398)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#746-749)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#755-759)
distributeTokenDividends(uint256) should be declared external:
- DividendPayingToken.distributeTokenDividends(uint256) (#1024-1035)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1039-1041)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1067-1069)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1081-1083)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- FatSatoshi.setAutomatedMarketMakerPair(address,bool) (#1373-1377)
isExcludedFromFees(address) should be declared external:
- FatSatoshi.isExcludedFromFees(address) (#1416-1418)
withdrawableDividendOf(address) should be declared external:
- FatSatoshi.withdrawableDividendOf(address) (#1420-1422)
dividendTokenBalanceOf(address) should be declared external:
- FatSatoshi.dividendTokenBalanceOf(address) (#1424-1426)
getAccountAtIndex(uint256) should be declared external:
- DividendTracker.getAccountAtIndex(uint256) (#1819-1836)
process(uint256) should be declared external:
- DividendTracker.process(uint256) (#1864-1908)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 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


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

Additional information: link


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


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of 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 price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for FATOSHI

News for FATOSHI