AKRAWORD Token Logo

AKRA [AKRAWORD] Token

ALERT: honeypot scam

About AKRA

Listings

Not Found
Token 3 years

ARKAWORD

https://t.co/5mas0r19jo

Social

Laser Scorebeta Last Audit: 4 February 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links


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

AKRAWORD.addLiquidity(uint256,uint256) (#646-659) sends eth to arbitrary user
Dangerous calls:
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AKRAWORD._transfer(address,address,uint256) (#560-602):
External calls:
- swapAndLiquify(contractTokenBalance) (#594)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#594)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#601)
- _rOwned[to] = _rOwned[to].add(rAmount) (#807)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#714)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#742)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#715)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#728)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#757)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#758)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#730)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- _rTotal = _rTotal.sub(rFee) (#766)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- _tOwned[to] = _tOwned[to].add(tAmount) (#809)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#756)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#727)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#743)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#729)
Apply the check-effects-interactions pattern.

Additional information: link

AKRAWORD.withdrawToken(address,uint256) (#555-557) ignores return value by IBEP20(tokenAddress).transfer(owner(),amount) (#556)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.

AKRAWORD.reflectionFromToken(uint256,bool).tFee_scope_0 (#465) is a local variable never initialized
AKRAWORD.reflectionFromToken(uint256,bool).tMarketing_scope_2 (#465) is a local variable never initialized
AKRAWORD.reflectionFromToken(uint256,bool).tLiquidity_scope_1 (#465) 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

AKRAWORD.addLiquidity(uint256,uint256) (#646-659) ignores return value by _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
Ensure that all the return values of the function calls are used.

Additional information: link

AKRAWORD.allowance(address,address).owner (#425) shadows:
- Ownable.owner() (#92-94) (function)
AKRAWORD._approve(address,address,uint256).owner (#432) shadows:
- Ownable.owner() (#92-94) (function)
Rename the local variables that shadow another component.

Additional information: link

AKRAWORD.setTransferFee(uint256,uint256,uint256) (#511-515) should emit an event for:
- _taxFeeTransfer = taxFee (#512)
- _liquidityFeeTransfer = liquidityFee (#513)
- _marketingFeeTransfer = marketingFee (#514)
AKRAWORD.setBuyFee(uint256,uint256,uint256) (#516-520) should emit an event for:
- _taxFeeBuy = taxFee (#517)
- _liquidityFeeBuy = liquidityFee (#518)
- _marketingFeeBuy = marketingFee (#519)
AKRAWORD.setSellFee(uint256,uint256,uint256) (#521-525) should emit an event for:
- _taxFeeSell = taxFee (#522)
- _liquidityFeeSell = liquidityFee (#523)
- _marketingFeeSell = marketingFee (#524)
AKRAWORD.setCashbackPercent(uint256) (#526-528) should emit an event for:
- _sellPercentageOfLiquidityForCashback = cashbackPercent (#527)
AKRAWORD.setMaxTxPercent(uint256) (#529-531) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(100) (#530)
AKRAWORD.setMinTokenBalance(uint256) (#532-534) should emit an event for:
- _minTokenBalance = minTokenBalance (#533)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor(address).initialOwner (#87) lacks a zero-check on :
- _owner = initialOwner (#88)
AKRAWORD.constructor(address,address).marketingWallet (#393) lacks a zero-check on :
- _marketingWallet = marketingWallet (#394)
AKRAWORD.setMarketingWallet(address).marketingWallet (#505) lacks a zero-check on :
- _marketingWallet = marketingWallet (#506)
AKRAWORD.setUniswapPair(address).p (#549) lacks a zero-check on :
- _uniswapV2Pair = p (#550)
Check that the address is not zero.

Additional information: link

Variable 'AKRAWORD.reflectionFromToken(uint256,bool).tFee (#458)' in AKRAWORD.reflectionFromToken(uint256,bool) (#454-471) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#465)
Variable 'AKRAWORD.reflectionFromToken(uint256,bool).tMarketing (#458)' in AKRAWORD.reflectionFromToken(uint256,bool) (#454-471) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#465)
Variable 'AKRAWORD.reflectionFromToken(uint256,bool).tLiquidity (#458)' in AKRAWORD.reflectionFromToken(uint256,bool) (#454-471) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#465)
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 AKRAWORD._transfer(address,address,uint256) (#560-602):
External calls:
- swapAndLiquify(contractTokenBalance) (#594)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#594)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#601)
- _liquidityFeeTransfer = 0 (#671)
- _liquidityFeeTransfer = _liquidityFeeBuy (#676)
- _liquidityFeeTransfer = _liquidityFeeSell (#681)
- _liquidityFeeTransfer = previousLiquidityFee (#705)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- _marketingFeeTransfer = 0 (#672)
- _marketingFeeTransfer = _marketingFeeBuy (#677)
- _marketingFeeTransfer = _marketingFeeSell (#682)
- _marketingFeeTransfer = previousMarketingFee (#706)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- _tFeeTotal = _tFeeTotal.add(tFee) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- _taxFeeTransfer = 0 (#670)
- _taxFeeTransfer = _taxFeeBuy (#675)
- _taxFeeTransfer = _taxFeeSell (#680)
- _taxFeeTransfer = previousTaxFee (#704)
Reentrancy in AKRAWORD.constructor(address,address) (#393-409):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#400)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#404)
- _isExcludedFromFee[address(this)] = true (#405)
- _isExcludedFromFee[_marketingWallet] = true (#406)
- _uniswapV2Router = uniswapV2Router (#401)
Reentrancy in AKRAWORD.swapAndLiquify(uint256) (#603-628):
External calls:
- swapTokensForBnb(half) (#617)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
- addLiquidity(otherHalf,bnbForLiquidity) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiquidity) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#625)
- _allowances[owner][spender] = amount (#436)
Reentrancy in AKRAWORD.transferFrom(address,address,uint256) (#439-443):
External calls:
- _transfer(sender,recipient,amount) (#440)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- _transfer(sender,recipient,amount) (#440)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#441)
- _allowances[owner][spender] = amount (#436)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AKRAWORD._transfer(address,address,uint256) (#560-602):
External calls:
- swapAndLiquify(contractTokenBalance) (#594)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#594)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
Event emitted after the call(s):
- Transfer(from,to,tAmount) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- Transfer(sender,recipient,tTransferAmount) (#720)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- Transfer(sender,recipient,tTransferAmount) (#749)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- Transfer(sender,recipient,tTransferAmount) (#763)
- _tokenTransfer(from,to,amount,takeFee) (#601)
- Transfer(sender,recipient,tTransferAmount) (#735)
- _tokenTransfer(from,to,amount,takeFee) (#601)
Reentrancy in AKRAWORD.constructor(address,address) (#393-409):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#400)
Event emitted after the call(s):
- Transfer(address(0),cOwner,_tTotal) (#408)
Reentrancy in AKRAWORD.swapAndLiquify(uint256) (#603-628):
External calls:
- swapTokensForBnb(half) (#617)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
- addLiquidity(otherHalf,bnbForLiquidity) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiquidity) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#437)
- addLiquidity(otherHalf,bnbForLiquidity) (#625)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#627)
Reentrancy in AKRAWORD.transferFrom(address,address,uint256) (#439-443):
External calls:
- _transfer(sender,recipient,amount) (#440)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#638-644)
External calls sending eth:
- _transfer(sender,recipient,amount) (#440)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#651-658)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#437)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#441)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#123-128) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#125)
Avoid relying on block.timestamp.

Additional information: link

AKRAWORD.includeInReward(address) (#487-499) has costly operations inside a loop:
- _excluded.pop() (#495)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#71-74) is never used and should be removed
Remove unused functions.

Additional information: link

AKRAWORD._rTotal (#347) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
AKRAWORD._maxTxAmount (#371) is set pre-construction with a non-constant function or state variable:
- _tTotal / 2
AKRAWORD._minTokenBalance (#372) is set pre-construction with a non-constant function or state variable:
- _tTotal / 2000
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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#162) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#163) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#180) is not in mixedCase
Function IUniswapV2Router01.WETH() (#200) is not in mixedCase
Variable AKRAWORD._marketingWallet (#343) is not in mixedCase
Variable AKRAWORD._taxFeeTransfer (#355) is not in mixedCase
Variable AKRAWORD._liquidityFeeTransfer (#356) is not in mixedCase
Variable AKRAWORD._marketingFeeTransfer (#357) is not in mixedCase
Variable AKRAWORD._taxFeeBuy (#360) is not in mixedCase
Variable AKRAWORD._liquidityFeeBuy (#361) is not in mixedCase
Variable AKRAWORD._marketingFeeBuy (#362) is not in mixedCase
Variable AKRAWORD._taxFeeSell (#365) is not in mixedCase
Variable AKRAWORD._liquidityFeeSell (#366) is not in mixedCase
Variable AKRAWORD._marketingFeeSell (#367) is not in mixedCase
Variable AKRAWORD._sellPercentageOfLiquidityForCashback (#369) is not in mixedCase
Variable AKRAWORD._maxTxAmount (#371) is not in mixedCase
Variable AKRAWORD._minTokenBalance (#372) is not in mixedCase
Variable AKRAWORD._swapAndLiquifyEnabled (#375) is not in mixedCase
Variable AKRAWORD._uniswapV2Router (#377) is not in mixedCase
Variable AKRAWORD._uniswapV2Pair (#378) 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 (#205) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#206)
Variable AKRAWORD._transferToExcluded(address,address,uint256).rTransferAmount (#740) is too similar to AKRAWORD._transferToExcluded(address,address,uint256).tTransferAmount (#738)
Variable AKRAWORD._transferFromExcluded(address,address,uint256).rTransferAmount (#754) is too similar to AKRAWORD._transferStandard(address,address,uint256).tTransferAmount (#710)
Variable AKRAWORD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#783) is too similar to AKRAWORD._transferToExcluded(address,address,uint256).tTransferAmount (#738)
Variable AKRAWORD._transferToExcluded(address,address,uint256).rTransferAmount (#740) is too similar to AKRAWORD._getTValues(uint256).tTransferAmount (#773)
Variable AKRAWORD._transferFromExcluded(address,address,uint256).rTransferAmount (#754) is too similar to AKRAWORD._transferToExcluded(address,address,uint256).tTransferAmount (#738)
Variable AKRAWORD._transferBothExcluded(address,address,uint256).rTransferAmount (#725) is too similar to AKRAWORD._transferStandard(address,address,uint256).tTransferAmount (#710)
Variable AKRAWORD.reflectionFromToken(uint256,bool).rTransferAmount (#467) is too similar to AKRAWORD._transferToExcluded(address,address,uint256).tTransferAmount (#738)
Variable AKRAWORD._transferBothExcluded(address,address,uint256).rTransferAmount (#725) is too similar to AKRAWORD._transferToExcluded(address,address,uint256).tTransferAmount (#738)
Variable AKRAWORD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#783) is too similar to AKRAWORD._getTValues(uint256).tTransferAmount (#773)
Variable AKRAWORD._transferStandard(address,address,uint256).rTransferAmount (#712) is too similar to AKRAWORD._transferToExcluded(address,address,uint256).tTransferAmount (#738)
Variable AKRAWORD._transferFromExcluded(address,address,uint256).rTransferAmount (#754) is too similar to AKRAWORD._getTValues(uint256).tTransferAmount (#773)
Variable AKRAWORD._transferToExcluded(address,address,uint256).rTransferAmount (#740) is too similar to AKRAWORD._transferStandard(address,address,uint256).tTransferAmount (#710)
Variable AKRAWORD._transferToExcluded(address,address,uint256).rTransferAmount (#740) is too similar to AKRAWORD._transferBothExcluded(address,address,uint256).tTransferAmount (#723)
Variable AKRAWORD._transferBothExcluded(address,address,uint256).rTransferAmount (#725) is too similar to AKRAWORD._getTValues(uint256).tTransferAmount (#773)
Variable AKRAWORD.reflectionFromToken(uint256,bool).rTransferAmount (#467) is too similar to AKRAWORD._getTValues(uint256).tTransferAmount (#773)
Variable AKRAWORD._transferStandard(address,address,uint256).rTransferAmount (#712) is too similar to AKRAWORD._getTValues(uint256).tTransferAmount (#773)
Variable AKRAWORD._transferToExcluded(address,address,uint256).rTransferAmount (#740) is too similar to AKRAWORD._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable AKRAWORD._transferStandard(address,address,uint256).rTransferAmount (#712) is too similar to AKRAWORD._transferStandard(address,address,uint256).tTransferAmount (#710)
Variable AKRAWORD._transferBothExcluded(address,address,uint256).rTransferAmount (#725) is too similar to AKRAWORD._transferBothExcluded(address,address,uint256).tTransferAmount (#723)
Variable AKRAWORD._transferBothExcluded(address,address,uint256).rTransferAmount (#725) is too similar to AKRAWORD._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable AKRAWORD._transferStandard(address,address,uint256).rTransferAmount (#712) is too similar to AKRAWORD._transferBothExcluded(address,address,uint256).tTransferAmount (#723)
Variable AKRAWORD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#783) is too similar to AKRAWORD._transferStandard(address,address,uint256).tTransferAmount (#710)
Variable AKRAWORD._transferStandard(address,address,uint256).rTransferAmount (#712) is too similar to AKRAWORD._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable AKRAWORD.reflectionFromToken(uint256,bool).rTransferAmount (#467) is too similar to AKRAWORD._transferStandard(address,address,uint256).tTransferAmount (#710)
Variable AKRAWORD._transferFromExcluded(address,address,uint256).rTransferAmount (#754) is too similar to AKRAWORD._transferBothExcluded(address,address,uint256).tTransferAmount (#723)
Variable AKRAWORD._transferFromExcluded(address,address,uint256).rTransferAmount (#754) is too similar to AKRAWORD._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable AKRAWORD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#783) is too similar to AKRAWORD._transferBothExcluded(address,address,uint256).tTransferAmount (#723)
Variable AKRAWORD.reflectionFromToken(uint256,bool).rTransferAmount (#467) is too similar to AKRAWORD._transferBothExcluded(address,address,uint256).tTransferAmount (#723)
Variable AKRAWORD._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#783) is too similar to AKRAWORD._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Variable AKRAWORD.reflectionFromToken(uint256,bool).rTransferAmount (#467) is too similar to AKRAWORD._transferFromExcluded(address,address,uint256).tTransferAmount (#752)
Prevent variables from having similar names.

Additional information: link

AKRAWORD.slitherConstructorVariables() (#333-816) uses literals with too many digits:
- _tTotal = 10000000000000 * 10 ** 18 (#346)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

AKRAWORD._tTotal (#346) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#101-104)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#106-110)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#112-114)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#116-121)
unlock() should be declared external:
- Ownable.unlock() (#123-128)
totalSupply() should be declared external:
- AKRAWORD.totalSupply() (#414-416)
transfer(address,uint256) should be declared external:
- AKRAWORD.transfer(address,uint256) (#421-424)
allowance(address,address) should be declared external:
- AKRAWORD.allowance(address,address) (#425-427)
approve(address,uint256) should be declared external:
- AKRAWORD.approve(address,uint256) (#428-431)
transferFrom(address,address,uint256) should be declared external:
- AKRAWORD.transferFrom(address,address,uint256) (#439-443)
increaseAllowance(address,uint256) should be declared external:
- AKRAWORD.increaseAllowance(address,uint256) (#444-447)
decreaseAllowance(address,uint256) should be declared external:
- AKRAWORD.decreaseAllowance(address,uint256) (#448-451)
reflectionFromToken(uint256,bool) should be declared external:
- AKRAWORD.reflectionFromToken(uint256,bool) (#454-471)
excludeFromReward(address) should be declared external:
- AKRAWORD.excludeFromReward(address) (#478-486)
totalFees() should be declared external:
- AKRAWORD.totalFees() (#500-502)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AKRAWORD.setSwapAndLiquifyEnabled(bool) (#535-538)
isExcludedFromFee(address) should be declared external:
- AKRAWORD.isExcludedFromFee(address) (#539-541)
isExcludedFromReward(address) should be declared external:
- AKRAWORD.isExcludedFromReward(address) (#542-544)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


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

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

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 AKRA

News for AKRA