SonOfAddiction Token Logo

$SOA [SonOfAddiction] Token

About $SOA

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 14 December 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...)

soa.sendETHTomarketing(uint256) (contracts/soa.sol#879-881) sends eth to arbitrary user
Dangerous calls:
- _marketingWalletAddress.transfer(amount) (contracts/soa.sol#880)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in soa._transfer(address,address,uint256) (contracts/soa.sol#809-859):
External calls:
- swapTokensForEth(contractTokenBalance) (contracts/soa.sol#834)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/soa.sol#870-876)
External calls sending eth:
- sendETHTomarketing(address(this).balance) (contracts/soa.sol#838)
- _marketingWalletAddress.transfer(amount) (contracts/soa.sol#880)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _rOwned[address(this)] = _rOwned[address(this)].add(rmarketing) (contracts/soa.sol#966)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/soa.sol#925)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/soa.sol#934)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/soa.sol#945)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/soa.sol#955)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/soa.sol#926)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/soa.sol#936)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/soa.sol#946)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/soa.sol#957)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _rTotal = _rTotal.sub(rFee) (contracts/soa.sol#972)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _tOwned[address(this)] = _tOwned[address(this)].add(tmarketing) (contracts/soa.sol#968)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/soa.sol#944)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/soa.sol#954)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/soa.sol#935)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/soa.sol#956)
- cooldown[sender] = block.timestamp + (60) (contracts/soa.sol#854)
- cooldown[recipient] = block.timestamp + (60) (contracts/soa.sol#857)
Apply the check-effects-interactions pattern.

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 ticker ($SOA) 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.

soa.allowance(address,address).owner (contracts/soa.sol#696) shadows:
- Ownable.owner() (contracts/soa.sol#369-371) (function)
soa._approve(address,address,uint256).owner (contracts/soa.sol#801) shadows:
- Ownable.owner() (contracts/soa.sol#369-371) (function)
Rename the local variables that shadow another component.

Additional information: link

soa._setTaxFee(uint256) (contracts/soa.sol#1029-1032) should emit an event for:
- _taxFee = taxFee (contracts/soa.sol#1031)
soa._setmarketingFee(uint256) (contracts/soa.sol#1034-1037) should emit an event for:
- _marketingFee = marketingFee (contracts/soa.sol#1036)
soa._setMaxTxAmount(uint256) (contracts/soa.sol#1043-1046) should emit an event for:
- _maxTxAmount = maxTxAmount (contracts/soa.sol#1045)
Emit an event for critical parameter changes.

Additional information: link

soa.constructor(address).marketingWalletAddress (contracts/soa.sol#651) lacks a zero-check on :
- _marketingWalletAddress = marketingWalletAddress (contracts/soa.sol#652)
soa._setmarketingWallet(address).marketingWalletAddress (contracts/soa.sol#1039) lacks a zero-check on :
- _marketingWalletAddress = marketingWalletAddress (contracts/soa.sol#1040)
Check that the address is not zero.

Additional information: link

Reentrancy in soa._transfer(address,address,uint256) (contracts/soa.sol#809-859):
External calls:
- swapTokensForEth(contractTokenBalance) (contracts/soa.sol#834)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/soa.sol#870-876)
External calls sending eth:
- sendETHTomarketing(address(this).balance) (contracts/soa.sol#838)
- _marketingWalletAddress.transfer(amount) (contracts/soa.sol#880)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _marketingFee = _previousmarketingFee (contracts/soa.sol#794)
- _marketingFee = 0 (contracts/soa.sol#789)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _previousTaxFee = _taxFee (contracts/soa.sol#785)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _previousmarketingFee = _marketingFee (contracts/soa.sol#786)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/soa.sol#973)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _taxFee = _previousTaxFee (contracts/soa.sol#793)
- _taxFee = 0 (contracts/soa.sol#788)
Reentrancy in soa.constructor(address) (contracts/soa.sol#651-668):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/soa.sol#657-658)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (contracts/soa.sol#664)
- _isExcludedFromFee[address(this)] = true (contracts/soa.sol#665)
- uniswapV2Router = _uniswapV2Router (contracts/soa.sol#661)
Reentrancy in soa.transferFrom(address,address,uint256) (contracts/soa.sol#705-709):
External calls:
- _transfer(sender,recipient,amount) (contracts/soa.sol#706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/soa.sol#870-876)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/soa.sol#706)
- _marketingWalletAddress.transfer(amount) (contracts/soa.sol#880)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/soa.sol#707)
- _allowances[owner][spender] = amount (contracts/soa.sol#805)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in soa._transfer(address,address,uint256) (contracts/soa.sol#809-859):
External calls:
- swapTokensForEth(contractTokenBalance) (contracts/soa.sol#834)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/soa.sol#870-876)
External calls sending eth:
- sendETHTomarketing(address(this).balance) (contracts/soa.sol#838)
- _marketingWalletAddress.transfer(amount) (contracts/soa.sol#880)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/soa.sol#929)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- Transfer(sender,recipient,tTransferAmount) (contracts/soa.sol#949)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- Transfer(sender,recipient,tTransferAmount) (contracts/soa.sol#939)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- Transfer(sender,recipient,tTransferAmount) (contracts/soa.sol#960)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
Reentrancy in soa.constructor(address) (contracts/soa.sol#651-668):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/soa.sol#657-658)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (contracts/soa.sol#667)
Reentrancy in soa.transferFrom(address,address,uint256) (contracts/soa.sol#705-709):
External calls:
- _transfer(sender,recipient,amount) (contracts/soa.sol#706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/soa.sol#870-876)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/soa.sol#706)
- _marketingWalletAddress.transfer(amount) (contracts/soa.sol#880)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/soa.sol#806)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/soa.sol#707)
Apply the check-effects-interactions pattern.

Additional information: link

soa._transfer(address,address,uint256) (contracts/soa.sol#809-859) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(! cooldownEnabled || (cooldown[sender] < block.timestamp && cooldown[recipient] < block.timestamp),Cooldown is enabled. Try again in a few minutes.) (contracts/soa.sol#813)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (contracts/soa.sol#271-280) uses assembly
- INLINE ASM (contracts/soa.sol#278)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/soa.sol#327-348) uses assembly
- INLINE ASM (contracts/soa.sol#340-343)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (contracts/soa.sol#327-348) is never used and should be removed
Address.functionCall(address,bytes) (contracts/soa.sol#307-309) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/soa.sol#312-314) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/soa.sol#317-319) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/soa.sol#322-325) is never used and should be removed
Address.isContract(address) (contracts/soa.sol#271-280) is never used and should be removed
Address.sendValue(address,uint256) (contracts/soa.sol#298-304) is never used and should be removed
Context._msgData() (contracts/soa.sol#33-36) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/soa.sol#231-233) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/soa.sol#247-250) is never used and should be removed
soa._getMaxTxAmount() (contracts/soa.sol#1021-1023) is never used and should be removed
soa._getTaxFee() (contracts/soa.sol#1017-1019) is never used and should be removed
Remove unused functions.

Additional information: link

soa._rTotal (contracts/soa.sol#616) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
soa._previousTaxFee (contracts/soa.sol#625) is set pre-construction with a non-constant function or state variable:
- _taxFee
soa._previousmarketingFee (contracts/soa.sol#626) is set pre-construction with a non-constant function or state variable:
- _marketingFee
soa._maxWalletSize (contracts/soa.sol#627) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 25) / 1000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in Address.sendValue(address,uint256) (contracts/soa.sol#298-304):
- (success) = recipient.call{value: amount}() (contracts/soa.sol#302)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/soa.sol#327-348):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/soa.sol#331)
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() (contracts/soa.sol#427) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/soa.sol#428) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/soa.sol#445) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/soa.sol#465) is not in mixedCase
Contract soa (contracts/soa.sol#599-1048) is not in CapWords
Function soa._getETHBalance() (contracts/soa.sol#1025-1027) is not in mixedCase
Function soa._setTaxFee(uint256) (contracts/soa.sol#1029-1032) is not in mixedCase
Function soa._setmarketingFee(uint256) (contracts/soa.sol#1034-1037) is not in mixedCase
Function soa._setmarketingWallet(address) (contracts/soa.sol#1039-1041) is not in mixedCase
Function soa._setMaxTxAmount(uint256) (contracts/soa.sol#1043-1046) is not in mixedCase
Variable soa._maxWalletSize (contracts/soa.sol#627) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/soa.sol#34)" inContext (contracts/soa.sol#28-37)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in soa._transfer(address,address,uint256) (contracts/soa.sol#809-859):
External calls:
- sendETHTomarketing(address(this).balance) (contracts/soa.sol#838)
- _marketingWalletAddress.transfer(amount) (contracts/soa.sol#880)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _marketingFee = _previousmarketingFee (contracts/soa.sol#794)
- _marketingFee = 0 (contracts/soa.sol#789)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _previousTaxFee = _taxFee (contracts/soa.sol#785)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _previousmarketingFee = _marketingFee (contracts/soa.sol#786)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _rOwned[address(this)] = _rOwned[address(this)].add(rmarketing) (contracts/soa.sol#966)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/soa.sol#925)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/soa.sol#934)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/soa.sol#945)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/soa.sol#955)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/soa.sol#926)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/soa.sol#936)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/soa.sol#946)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/soa.sol#957)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _rTotal = _rTotal.sub(rFee) (contracts/soa.sol#972)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/soa.sol#973)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _tOwned[address(this)] = _tOwned[address(this)].add(tmarketing) (contracts/soa.sol#968)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/soa.sol#944)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/soa.sol#954)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/soa.sol#935)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/soa.sol#956)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- _taxFee = _previousTaxFee (contracts/soa.sol#793)
- _taxFee = 0 (contracts/soa.sol#788)
- cooldown[sender] = block.timestamp + (60) (contracts/soa.sol#854)
- cooldown[recipient] = block.timestamp + (60) (contracts/soa.sol#857)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/soa.sol#929)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- Transfer(sender,recipient,tTransferAmount) (contracts/soa.sol#949)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- Transfer(sender,recipient,tTransferAmount) (contracts/soa.sol#939)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
- Transfer(sender,recipient,tTransferAmount) (contracts/soa.sol#960)
- _tokenTransfer(sender,recipient,amount,takeFee) (contracts/soa.sol#851)
Reentrancy in soa.transferFrom(address,address,uint256) (contracts/soa.sol#705-709):
External calls:
- _transfer(sender,recipient,amount) (contracts/soa.sol#706)
- _marketingWalletAddress.transfer(amount) (contracts/soa.sol#880)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/soa.sol#707)
- _allowances[owner][spender] = amount (contracts/soa.sol#805)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/soa.sol#806)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/soa.sol#707)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/soa.sol#470) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/soa.sol#471)
Variable soa._transferToExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#933) is too similar to soa._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#943)
Variable soa._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/soa.sol#996) is too similar to soa._transferStandard(address,address,uint256).tTransferAmount (contracts/soa.sol#924)
Variable soa._transferStandard(address,address,uint256).rTransferAmount (contracts/soa.sol#924) is too similar to soa._transferStandard(address,address,uint256).tTransferAmount (contracts/soa.sol#924)
Variable soa._getValues(uint256).rTransferAmount (contracts/soa.sol#982) is too similar to soa._transferStandard(address,address,uint256).tTransferAmount (contracts/soa.sol#924)
Variable soa._transferToExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#933) is too similar to soa._transferToExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#933)
Variable soa._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#943) is too similar to soa._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#943)
Variable soa._getValues(uint256).rTransferAmount (contracts/soa.sol#982) is too similar to soa._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#953)
Variable soa._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#943) is too similar to soa._transferToExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#933)
Variable soa._transferToExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#933) is too similar to soa._getTValues(uint256,uint256,uint256).tTransferAmount (contracts/soa.sol#989)
Variable soa._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#953) is too similar to soa._transferStandard(address,address,uint256).tTransferAmount (contracts/soa.sol#924)
Variable soa._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#953) is too similar to soa._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#953)
Variable soa._getValues(uint256).rTransferAmount (contracts/soa.sol#982) is too similar to soa._transferToExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#933)
Variable soa._transferToExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#933) is too similar to soa._transferStandard(address,address,uint256).tTransferAmount (contracts/soa.sol#924)
Variable soa._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#943) is too similar to soa._getTValues(uint256,uint256,uint256).tTransferAmount (contracts/soa.sol#989)
Variable soa._transferToExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#933) is too similar to soa._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#953)
Variable soa.reflectionFromToken(uint256,bool).rTransferAmount (contracts/soa.sol#748) is too similar to soa._transferStandard(address,address,uint256).tTransferAmount (contracts/soa.sol#924)
Variable soa._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#943) is too similar to soa._transferStandard(address,address,uint256).tTransferAmount (contracts/soa.sol#924)
Variable soa._getValues(uint256).rTransferAmount (contracts/soa.sol#982) is too similar to soa._getTValues(uint256,uint256,uint256).tTransferAmount (contracts/soa.sol#989)
Variable soa._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#943) is too similar to soa._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#953)
Variable soa._transferStandard(address,address,uint256).rTransferAmount (contracts/soa.sol#924) is too similar to soa._transferToExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#933)
Variable soa.reflectionFromToken(uint256,bool).rTransferAmount (contracts/soa.sol#748) is too similar to soa._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#953)
Variable soa._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#953) is too similar to soa._transferToExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#933)
Variable soa._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/soa.sol#996) is too similar to soa._getTValues(uint256,uint256,uint256).tTransferAmount (contracts/soa.sol#989)
Variable soa._getValues(uint256).rTransferAmount (contracts/soa.sol#982) is too similar to soa._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#943)
Variable soa._transferStandard(address,address,uint256).rTransferAmount (contracts/soa.sol#924) is too similar to soa._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#943)
Variable soa._getValues(uint256).rTransferAmount (contracts/soa.sol#982) is too similar to soa._getValues(uint256).tTransferAmount (contracts/soa.sol#980)
Variable soa.reflectionFromToken(uint256,bool).rTransferAmount (contracts/soa.sol#748) is too similar to soa._getTValues(uint256,uint256,uint256).tTransferAmount (contracts/soa.sol#989)
Variable soa._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/soa.sol#996) is too similar to soa._transferToExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#933)
Variable soa._transferStandard(address,address,uint256).rTransferAmount (contracts/soa.sol#924) is too similar to soa._getValues(uint256).tTransferAmount (contracts/soa.sol#980)
Variable soa._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/soa.sol#996) is too similar to soa._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#953)
Variable soa._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#953) is too similar to soa._getValues(uint256).tTransferAmount (contracts/soa.sol#980)
Variable soa._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#953) is too similar to soa._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#943)
Variable soa.reflectionFromToken(uint256,bool).rTransferAmount (contracts/soa.sol#748) is too similar to soa._transferToExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#933)
Variable soa._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/soa.sol#996) is too similar to soa._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#943)
Variable soa._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/soa.sol#996) is too similar to soa._getValues(uint256).tTransferAmount (contracts/soa.sol#980)
Variable soa.reflectionFromToken(uint256,bool).rTransferAmount (contracts/soa.sol#748) is too similar to soa._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#943)
Variable soa._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#943) is too similar to soa._getValues(uint256).tTransferAmount (contracts/soa.sol#980)
Variable soa.reflectionFromToken(uint256,bool).rTransferAmount (contracts/soa.sol#748) is too similar to soa._getValues(uint256).tTransferAmount (contracts/soa.sol#980)
Variable soa._transferStandard(address,address,uint256).rTransferAmount (contracts/soa.sol#924) is too similar to soa._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/soa.sol#953)
Variable soa._transferToExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#933) is too similar to soa._getValues(uint256).tTransferAmount (contracts/soa.sol#980)
Variable soa._transferStandard(address,address,uint256).rTransferAmount (contracts/soa.sol#924) is too similar to soa._getTValues(uint256,uint256,uint256).tTransferAmount (contracts/soa.sol#989)
Variable soa._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/soa.sol#953) is too similar to soa._getTValues(uint256,uint256,uint256).tTransferAmount (contracts/soa.sol#989)
Prevent variables from having similar names.

Additional information: link

soa._setMaxTxAmount(uint256) (contracts/soa.sol#1043-1046) uses literals with too many digits:
- require(bool,string)(maxTxAmount >= 100000000e9,maxTxAmount should be greater than 100000000e9) (contracts/soa.sol#1044)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (contracts/soa.sol#353) is never used in soa (contracts/soa.sol#599-1048)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (contracts/soa.sol#353) should be constant
soa._decimals (contracts/soa.sol#621) should be constant
soa._name (contracts/soa.sol#619) should be constant
soa._numOfTokensToExchangeFormarketing (contracts/soa.sol#640) should be constant
soa._symbol (contracts/soa.sol#620) should be constant
soa._tTotal (contracts/soa.sol#615) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/soa.sol#388-391)
name() should be declared external:
- soa.name() (contracts/soa.sol#670-672)
symbol() should be declared external:
- soa.symbol() (contracts/soa.sol#674-676)
decimals() should be declared external:
- soa.decimals() (contracts/soa.sol#678-680)
totalSupply() should be declared external:
- soa.totalSupply() (contracts/soa.sol#682-684)
transfer(address,uint256) should be declared external:
- soa.transfer(address,uint256) (contracts/soa.sol#691-694)
allowance(address,address) should be declared external:
- soa.allowance(address,address) (contracts/soa.sol#696-698)
approve(address,uint256) should be declared external:
- soa.approve(address,uint256) (contracts/soa.sol#700-703)
transferFrom(address,address,uint256) should be declared external:
- soa.transferFrom(address,address,uint256) (contracts/soa.sol#705-709)
increaseAllowance(address,uint256) should be declared external:
- soa.increaseAllowance(address,uint256) (contracts/soa.sol#711-714)
decreaseAllowance(address,uint256) should be declared external:
- soa.decreaseAllowance(address,uint256) (contracts/soa.sol#716-719)
isExcluded(address) should be declared external:
- soa.isExcluded(address) (contracts/soa.sol#721-723)
totalFees() should be declared external:
- soa.totalFees() (contracts/soa.sol#729-731)
deliver(uint256) should be declared external:
- soa.deliver(uint256) (contracts/soa.sol#733-740)
reflectionFromToken(uint256,bool) should be declared external:
- soa.reflectionFromToken(uint256,bool) (contracts/soa.sol#742-751)
isExcludedFromFee(address) should be declared external:
- soa.isExcludedFromFee(address) (contracts/soa.sol#797-799)
_getETHBalance() should be declared external:
- soa._getETHBalance() (contracts/soa.sol#1025-1027)
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.


Number of Binance Smart Chain (BSC) token holders is low.


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