King Cardano Token Logo

KADA [King Cardano] Token

About KADA

Listings

Token 2 years

King Cardano is the king of tokens. This is the first auto-claim ADA token with the highest paying yields of up to 9%. Simply hold KADA tokens and get rewarded in ADA on every transaction.

There’s NO waiting or need to claim your rewards. It happens instantly and automatically.

The longer you hold KADA tokens, the more you earn in rewards and the closer you are to becoming the King. Why settle for 7-8% rewards or waiting around for your rewards when we can reward holders instantly with 9% from every BUY & SELL transaction!

Additionally, we the King Cardano protocol leads to a rise in price on EVERY transaction. 3% of each transaction gets bought back in the open market and burned forever, therefore increasing the value on everyone’s coins

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

KINGCARDANO.swapBack() (#721-757) sends eth to arbitrary user
Dangerous calls:
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#746)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in KINGCARDANO._transferFrom(address,address,uint256) (#625-668):
External calls:
- swapBack() (#640)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#728-756)
- distributor.deposit{value: amountBNBReflection}() (#745)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#746)
- buyBackTokens() (#643)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#777-784)
External calls sending eth:
- swapBack() (#640)
- distributor.deposit{value: amountBNBReflection}() (#745)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#746)
- buyBackTokens() (#643)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#777-784)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#647-650)
- amountReceived = takeFee(sender,recipient,amount) (#652)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#707)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#653)
- buyBackTokens() (#643)
- inSwap = true (#576)
- inSwap = false (#578)
Apply the check-effects-interactions pattern.

Additional information: link

SafeToken.withdraw(address,uint256) (#499-502) ignores return value by IBEP20(_token).transfer(safeManager,_amount) (#501)
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.

Reentrancy in DividendDistributor.setShare(address,uint256) (#312-338):
External calls:
- distributeDividend(shareholder) (#318)
- ADA.transfer(shareholder,amount) (#427)
State variables written after the call(s):
- addShareholder(shareholder) (#325)
- shareholderIndexes[shareholder] = shareholders.length (#473)
- removeShareholder(shareholder) (#330)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#481-483)
- addShareholder(shareholder) (#325)
- shareholders.push(shareholder) (#474)
- removeShareholder(shareholder) (#330)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#478-480)
- shareholders.pop() (#484)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#333)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in KINGCARDANO.swapBnbForTokens(uint256) (#770-787):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#777-784)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#786)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#409-417) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#414-416)
Avoid relying on block.timestamp.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#312-338):
External calls:
- distributeDividend(shareholder) (#318)
- ADA.transfer(shareholder,amount) (#427)
State variables written after the call(s):
- shares[shareholder].amount = amount (#334)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#335-337)
Apply the check-effects-interactions pattern.

Additional information: link

KINGCARDANO.swapBack() (#721-757) ignores return value by address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#746)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

KINGCARDANO.swapBack().e (#748) 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

KINGCARDANO.setSwapBackSettings(bool,uint256) (#832-838) should emit an event for:
- swapThreshold = _amount (#837)
Emit an event for critical parameter changes.

Additional information: link

KINGCARDANO.setMarketingWallet(address)._marketing (#828) lacks a zero-check on :
- marketing = _marketing (#829)
Check that the address is not zero.

Additional information: link

Variable 'KINGCARDANO.swapBack().e (#748)' in KINGCARDANO.swapBack() (#721-757) potentially used before declaration: SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#749-751)
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

DividendDistributor.process(uint256) (#381-407) has costly operations inside a loop:
- currentIndex ++ (#404)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#65-68) is never used and should be removed
Remove unused functions.

Additional information: link

KINGCARDANO.swapThreshold (#572) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 5000
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.6 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 KINGCARDANO.swapBack() (#721-757):
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#746)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable KINGCARDANO._totalSupply (#560) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#66)" inContext (#60-69)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#182) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#183)
Prevent variables from having similar names.

Additional information: link

KINGCARDANO.slitherConstructorVariables() (#534-910) uses literals with too many digits:
- distributorGas = 500000 (#568)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

KINGCARDANO.buyBackUpperLimit (#549) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

approve(address,uint256) should be declared external:
- KINGCARDANO.approve(address,uint256) (#896-904)
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.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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 CoinHunt

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 CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for KADA