Satoshi_V2 Token Logo

SAT [Satoshi_V2] Token

About SAT

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

SatoshiToken.addLiquidity(uint256,uint256) (#1308-1321) sends eth to arbitrary user
Dangerous calls:
- satoshiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1313-1320)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SatoshiToken._transfer(address,address,uint256) (#1207-1253):
External calls:
- swapAndLiquify() (#1221)
- satoshiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1313-1320)
- satoshiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1298-1304)
External calls sending eth:
- swapAndLiquify() (#1221)
- satoshiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1313-1320)
State variables written after the call(s):
- super._transfer(sender,recipient,amount) (#1225)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,BURN_ADDRESS,burnAmount) (#1243)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,address(this),liquidityAmount) (#1244)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,recipient,sendAmount) (#1245)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,nftFeeAddr1,nftFee1) (#1246)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,nftFeeAddr2,nftFee2) (#1247)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,nftFeeAddr3,nftFee3) (#1248)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,nftFeeAddr4,nftFee4) (#1249)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,nftFeeAddr5,nftFee5) (#1250)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
Apply the check-effects-interactions pattern.

Additional information: link

SatoshiToken._writeCheckpoint(address,uint32,uint256,uint256) (#1623-1641) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (#1633)
Don't use strict equality to determine if an account has enough Ether or tokens.

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.

Contract name (Satoshi_V2) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

SatoshiToken._transfer(address,address,uint256) (#1207-1253) performs a multiplication on the result of a division:
-taxAmount = amount.mul(transferTaxRate).div(10000) (#1228)
-burnAmount = taxAmount.mul(burnRate).div(100) (#1229)
Consider ordering multiplication before division.

Additional information: link

SatoshiToken.addLiquidity(uint256,uint256) (#1308-1321) ignores return value by satoshiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1313-1320)
Ensure that all the return values of the function calls are used.

Additional information: link

SatoshiToken.swapAndLiquify().maxTransferAmount (#1258) shadows:
- SatoshiToken.maxTransferAmount() (#1326-1328) (function)
Rename the local variables that shadow another component.

Additional information: link

SatoshiToken.updateNftFeeRate5(uint16) (#1761-1765) should emit an event for:
- nftFeeRate5 = _nftFeeRate5 (#1764)
Emit an event for critical parameter changes.

Additional information: link

SatoshiToken.updateNftFeeAddr5(address)._nftFeeAddr5 (#1779) lacks a zero-check on :
- nftFeeAddr5 = _nftFeeAddr5 (#1780)
Check that the address is not zero.

Additional information: link

Reentrancy in SatoshiToken.swapAndLiquify() (#1256-1286):
External calls:
- swapTokensForEth(half) (#1276)
- satoshiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1298-1304)
- addLiquidity(otherHalf,newBalance) (#1282)
- satoshiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1313-1320)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1282)
- satoshiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1313-1320)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1282)
- _allowances[owner][spender] = amount (#640)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SatoshiToken.swapAndLiquify() (#1256-1286):
External calls:
- swapTokensForEth(half) (#1276)
- satoshiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1298-1304)
- addLiquidity(otherHalf,newBalance) (#1282)
- satoshiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1313-1320)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1282)
- satoshiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1313-1320)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#641)
- addLiquidity(otherHalf,newBalance) (#1282)
- SwapAndLiquify(half,newBalance,otherHalf) (#1284)
Apply the check-effects-interactions pattern.

Additional information: link

SatoshiToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#1489-1530) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,SATOSHI::delegateBySig: signature expired) (#1528)
Avoid relying on block.timestamp.

Additional information: link

SatoshiToken.getChainId() (#1648-1652) uses assembly
- INLINE ASM (#1650)
Do not use evm assembly.

Additional information: link

SatoshiToken.antiWhale(address,address,uint256) (#1160-1170) compares to a boolean constant:
-_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false (#1163-1164)
Remove the equality to the boolean constant.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.5.0', '>=0.6.0<0.8.0', '>=0.6.2', '>=0.6.4']
- >=0.6.0<0.8.0 (#6)
- >=0.6.0<0.8.0 (#33)
- >=0.6.4 (#101)
- >=0.6.0<0.8.0 (#198)
- >=0.4.0 (#360)
- >=0.6.2 (#658)
- >=0.6.2 (#756)
- >=0.5.0 (#802)
- >=0.5.0 (#857)
- 0.6.12 (#877)
Use one Solidity version.

Additional information: link

SatoshiToken.swapTokensForEth(uint256) (#1289-1305) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.5.0 (#857) 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

Variable SatoshiToken._delegates (#1431) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#24)" inContext (#18-27)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable SatoshiToken.nftFeeRate4 (#1106) is too similar to SatoshiToken.nftFeeRate5 (#1107)
Prevent variables from having similar names.

Additional information: link

SatoshiToken.slitherConstructorConstantVariables() (#1099-1783) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#1120)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

updateNftFeeAddr5(address) should be declared external:
- SatoshiToken.updateNftFeeAddr5(address) (#1779-1781)
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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SAT