Kadabra Coin Token Logo

KADABRA [Kadabra Coin] Token

About KADABRA

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

Reentrancy in KadabraToken._transfer(address,address,uint256) (#1177-1217):
External calls:
- swapAndLiquify(contractTokenBalance) (#1204)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1076-1083)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1054-1060)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1204)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1076-1083)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1216)
- _rOwned[sender] = _rOwned[sender].sub(vals.rAmount) (#1102)
- _rOwned[sender] = _rOwned[sender].sub(vals.rAmount) (#1166)
- _rOwned[sender] = _rOwned[sender].sub(vals.rAmount) (#1131)
- _rOwned[sender] = _rOwned[sender].sub(vals.rAmount) (#1117)
- _rOwned[recipient] = _rOwned[recipient].add(vals.rTransferAmount) (#1167)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1013)
- _rOwned[recipient] = _rOwned[recipient].add(vals.rTransferAmount) (#1104)
- _rOwned[recipient] = _rOwned[recipient].add(vals.rTransferAmount) (#1118)
- _rOwned[recipient] = _rOwned[recipient].add(vals.rTransferAmount) (#1133)
- _tokenTransfer(from,to,amount,takeFee) (#1216)
- _rTotal = _rTotal.sub(rFee) (#914)
- _rTotal = _rTotal.sub(rBurn) (#920)
- _tokenTransfer(from,to,amount,takeFee) (#1216)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1130)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1116)
- _tOwned[recipient] = _tOwned[recipient].add(vals.tTransferAmount) (#1103)
- _tOwned[recipient] = _tOwned[recipient].add(vals.tTransferAmount) (#1132)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1015)
- _tokenTransfer(from,to,amount,takeFee) (#1216)
- _tTotal = _tTotal.sub(tBurn) (#921)
Apply the check-effects-interactions pattern.

Additional information: link

KadabraToken._getTValues(uint256) (#954-968) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#960)
Consider ordering multiplication before division.

Additional information: link

KadabraToken._getValues(uint256).vals (#942) 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

KadabraToken.addLiquidity(uint256,uint256) (#1071-1084) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1076-1083)
Ensure that all the return values of the function calls are used.

Additional information: link

KadabraToken._approve(address,address,uint256).owner (#1063) shadows:
- Ownable.owner() (#444-446) (function)
Rename the local variables that shadow another component.

Additional information: link

KadabraToken.setTaxFeePercent(uint256) (#1086-1088) should emit an event for:
- _taxFee = taxFee (#1087)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in KadabraToken.transferFrom(address,address,uint256) (#818-822):
External calls:
- _transfer(sender,recipient,amount) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1076-1083)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1054-1060)
External calls sending eth:
- _transfer(sender,recipient,amount) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1076-1083)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#820)
- _allowances[owner][spender] = amount (#1067)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in KadabraToken.transferFrom(address,address,uint256) (#818-822):
External calls:
- _transfer(sender,recipient,amount) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1076-1083)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1054-1060)
External calls sending eth:
- _transfer(sender,recipient,amount) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1076-1083)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1068)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#820)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#301-322) uses assembly
- INLINE ASM (#314-317)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#182-185) is never used and should be removed
Remove unused functions.

Additional information: link

KadabraToken.numTokensSellToAddToLiquidity (#746) is set pre-construction with a non-constant function or state variable:
- _tTotal.mul(_liquidityFee).div(100)
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

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 Address._functionCallWithValue(address,bytes,uint256,string) (#301-322):
- (success,returndata) = target.call{value: weiValue}(data) (#305)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable KadabraToken._maxTxAmount (#745) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#341)" inContext (#335-344)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable KadabraToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#984) is too similar to KadabraToken._getTValues(uint256).tTransferAmount (#957)
Prevent variables from having similar names.

Additional information: link

KadabraToken._symbol (#725) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

includeInFee(address) should be declared external:
- KadabraToken.includeInFee(address) (#1219-1221)
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 KADABRA