The live Nobility [new] price today is $0.000326 USD with a 24-hour trading volume of $555,090 USD. Nobility [new] has no change in the last 24 hours. The current CoinMarketCap ranking is #3027, with a live market cap of not available. The circulating supply is not available and a max. supply of 1,000,000,000,000,000 NBL coins.
Nobility - DeFI token that will revolutionize the esports landscape by organizing and providing tournaments with large prize pools, helping content creators earn more from playing the games they love, and more use cases that will fill glaring holes within the community.
Nobility aims to solve the problems involving the current limitations of the esports gaming industry by innovating onto the industry the use of blockchain technology combined with the advantages of decentralized finance to create a fair, balanced and sustainable model for all market participants.
Here are some other articles that you may be interested in:
What Is a Crypto Faucet?
What Are Crypto Debit Cards?
What Is Web 3.0?
What Is Yield Farming?
What Is Crypto Lending?
NOBLILITY.addLiquidity(uint256,uint256) (NobilityBUSD.sol#432-447) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357):
External calls:
- swapAndSendToFee(marketingTokens) (NobilityBUSD.sol#313)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (NobilityBUSD.sol#365)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#403-409)
- swapAndSendDividends(sellTokens) (NobilityBUSD.sol#319)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (NobilityBUSD.sol#452)
- dividendTracker.distributeBUSDDividends(dividends) (NobilityBUSD.sol#455)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
External calls sending eth:
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (NobilityBUSD.sol#339)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (NobilityBUSD.sol#342)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (NobilityBUSD.sol#321)
Apply the check-effects-interactions pattern.
Additional information: link
NOBLILITY.swapAndSendToFee(uint256) (NobilityBUSD.sol#359-366) ignores return value by IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (NobilityBUSD.sol#365)
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 DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92):
External calls:
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#84)
Reentrancy in NOBLILITY.updateDividendTracker(address) (NobilityBUSD.sol#122-137):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (NobilityBUSD.sol#129)
- newDividendTracker.excludeFromDividends(address(this)) (NobilityBUSD.sol#130)
- newDividendTracker.excludeFromDividends(owner()) (NobilityBUSD.sol#131)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (NobilityBUSD.sol#132)
State variables written after the call(s):
- dividendTracker = newDividendTracker (NobilityBUSD.sol#136)
Apply the check-effects-interactions pattern.
Additional information: link
NOBLILITY._transfer(address,address,uint256).iterations (NobilityBUSD.sol#350) is a local variable never initialized
NOBLILITY._transfer(address,address,uint256).claims (NobilityBUSD.sol#350) is a local variable never initialized
NOBLILITY._transfer(address,address,uint256).lastProcessedIndex (NobilityBUSD.sol#350) 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
NOBLILITY.claim() (NobilityBUSD.sol#273-275) ignores return value by dividendTracker.processAccount(msg.sender,false) (NobilityBUSD.sol#274)
NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357) ignores return value by dividendTracker.process(gas) (NobilityBUSD.sol#350-355)
NOBLILITY.addLiquidity(uint256,uint256) (NobilityBUSD.sol#432-447) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (DividendPayingToken.sol#50) shadows:
- ERC20._name (ERC20.sol#43) (state variable)
DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#50) shadows:
- ERC20._symbol (ERC20.sol#44) (state variable)
DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.
Additional information: link
NOBLILITY.setBUSDRewardsFee(uint256) (NobilityBUSD.sol#167-170) should emit an event for:
- BUSDRewardsFee = value (NobilityBUSD.sol#168)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee) (NobilityBUSD.sol#169)
NOBLILITY.setLiquiditFee(uint256) (NobilityBUSD.sol#172-175) should emit an event for:
- liquidityFee = value (NobilityBUSD.sol#173)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee) (NobilityBUSD.sol#174)
NOBLILITY.setMarketingFee(uint256) (NobilityBUSD.sol#177-181) should emit an event for:
- marketingFee = value (NobilityBUSD.sol#178)
- totalFees = BUSDRewardsFee.add(liquidityFee).add(marketingFee) (NobilityBUSD.sol#179)
Emit an event for critical parameter changes.
Additional information: link
NOBLILITY.updateUniswapV2Router(address)._uniswapV2Pair (NobilityBUSD.sol#143-144) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (NobilityBUSD.sol#145)
NOBLILITY.setMarketingWallet(address).wallet (NobilityBUSD.sol#163) lacks a zero-check on :
- _marketingWalletAddress = wallet (NobilityBUSD.sol#164)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#76-92) has external calls inside a loop: success = IERC20(BUSD).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'NOBLILITY._transfer(address,address,uint256).lastProcessedIndex (NobilityBUSD.sol#350)' in NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (NobilityBUSD.sol#351)
Variable 'NOBLILITY._transfer(address,address,uint256).claims (NobilityBUSD.sol#350)' in NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (NobilityBUSD.sol#351)
Variable 'NOBLILITY._transfer(address,address,uint256).iterations (NobilityBUSD.sol#350)' in NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (NobilityBUSD.sol#351)
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 NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357):
External calls:
- swapAndSendToFee(marketingTokens) (NobilityBUSD.sol#313)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (NobilityBUSD.sol#365)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#403-409)
External calls sending eth:
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357):
External calls:
- swapAndSendToFee(marketingTokens) (NobilityBUSD.sol#313)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (NobilityBUSD.sol#365)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#403-409)
- swapAndSendDividends(sellTokens) (NobilityBUSD.sol#319)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (NobilityBUSD.sol#452)
- dividendTracker.distributeBUSDDividends(dividends) (NobilityBUSD.sol#455)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
External calls sending eth:
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (NobilityBUSD.sol#319)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in NOBLILITY.constructor() (NobilityBUSD.sol#84-116):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (NobilityBUSD.sol#91-92)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (NobilityBUSD.sol#95)
- uniswapV2Router = _uniswapV2Router (NobilityBUSD.sol#94)
Reentrancy in NOBLILITY.constructor() (NobilityBUSD.sol#84-116):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (NobilityBUSD.sol#91-92)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (NobilityBUSD.sol#97)
- dividendTracker.excludeFromDividends(pair) (NobilityBUSD.sol#200)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (NobilityBUSD.sol#100)
- dividendTracker.excludeFromDividends(address(this)) (NobilityBUSD.sol#101)
- dividendTracker.excludeFromDividends(owner()) (NobilityBUSD.sol#102)
- dividendTracker.excludeFromDividends(deadWallet) (NobilityBUSD.sol#103)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (NobilityBUSD.sol#104)
State variables written after the call(s):
- _mint(owner(),100000000000 * (10 ** 18)) (NobilityBUSD.sol#115)
- _balances[account] = _balances[account].add(amount) (ERC20.sol#241)
- excludeFromFees(owner(),true) (NobilityBUSD.sol#107)
- _isExcludedFromFees[account] = excluded (NobilityBUSD.sol#150)
- excludeFromFees(_marketingWalletAddress,true) (NobilityBUSD.sol#108)
- _isExcludedFromFees[account] = excluded (NobilityBUSD.sol#150)
- excludeFromFees(address(this),true) (NobilityBUSD.sol#109)
- _isExcludedFromFees[account] = excluded (NobilityBUSD.sol#150)
- _mint(owner(),100000000000 * (10 ** 18)) (NobilityBUSD.sol#115)
- _totalSupply = _totalSupply.add(amount) (ERC20.sol#240)
Reentrancy in NOBILITYDividendTracker.processAccount(address,bool) (NobilityBUSD.sol#657-667):
External calls:
- amount = _withdrawDividendOfUser(account) (NobilityBUSD.sol#658)
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (NobilityBUSD.sol#661)
Reentrancy in NOBLILITY.swapAndLiquify(uint256) (NobilityBUSD.sol#368-389):
External calls:
- swapTokensForEth(half) (NobilityBUSD.sol#380)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#403-409)
- addLiquidity(otherHalf,newBalance) (NobilityBUSD.sol#386)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (NobilityBUSD.sol#386)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (NobilityBUSD.sol#386)
- _allowances[owner][spender] = amount (ERC20.sol#287)
Reentrancy in NOBLILITY.updateUniswapV2Router(address) (NobilityBUSD.sol#139-146):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (NobilityBUSD.sol#143-144)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (NobilityBUSD.sol#145)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in NOBLILITY._setAutomatedMarketMakerPair(address,bool) (NobilityBUSD.sol#195-204):
External calls:
- dividendTracker.excludeFromDividends(pair) (NobilityBUSD.sol#200)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (NobilityBUSD.sol#203)
Reentrancy in NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357):
External calls:
- swapAndSendToFee(marketingTokens) (NobilityBUSD.sol#313)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (NobilityBUSD.sol#365)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#403-409)
External calls sending eth:
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- SwapAndLiquify(half,newBalance,otherHalf) (NobilityBUSD.sol#388)
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
Reentrancy in NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357):
External calls:
- swapAndSendToFee(marketingTokens) (NobilityBUSD.sol#313)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (NobilityBUSD.sol#365)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#403-409)
- swapAndSendDividends(sellTokens) (NobilityBUSD.sol#319)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (NobilityBUSD.sol#452)
- dividendTracker.distributeBUSDDividends(dividends) (NobilityBUSD.sol#455)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
External calls sending eth:
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (NobilityBUSD.sol#319)
- SendDividends(tokens,dividends) (NobilityBUSD.sol#456)
- swapAndSendDividends(sellTokens) (NobilityBUSD.sol#319)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (NobilityBUSD.sol#339)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (NobilityBUSD.sol#342)
Reentrancy in NOBLILITY._transfer(address,address,uint256) (NobilityBUSD.sol#286-357):
External calls:
- swapAndSendToFee(marketingTokens) (NobilityBUSD.sol#313)
- IERC20(BUSD).transfer(_marketingWalletAddress,newBalance) (NobilityBUSD.sol#365)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#403-409)
- swapAndSendDividends(sellTokens) (NobilityBUSD.sol#319)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (NobilityBUSD.sol#452)
- dividendTracker.distributeBUSDDividends(dividends) (NobilityBUSD.sol#455)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
- dividendTracker.setBalance(address(from),balanceOf(from)) (NobilityBUSD.sol#344)
- dividendTracker.setBalance(address(to),balanceOf(to)) (NobilityBUSD.sol#345)
- dividendTracker.process(gas) (NobilityBUSD.sol#350-355)
External calls sending eth:
- swapAndLiquify(swapTokens) (NobilityBUSD.sol#316)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (NobilityBUSD.sol#351)
Reentrancy in NOBLILITY.constructor() (NobilityBUSD.sol#84-116):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (NobilityBUSD.sol#91-92)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (NobilityBUSD.sol#97)
- dividendTracker.excludeFromDividends(pair) (NobilityBUSD.sol#200)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (NobilityBUSD.sol#203)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (NobilityBUSD.sol#97)
Reentrancy in NOBLILITY.constructor() (NobilityBUSD.sol#84-116):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (NobilityBUSD.sol#91-92)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (NobilityBUSD.sol#97)
- dividendTracker.excludeFromDividends(pair) (NobilityBUSD.sol#200)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (NobilityBUSD.sol#100)
- dividendTracker.excludeFromDividends(address(this)) (NobilityBUSD.sol#101)
- dividendTracker.excludeFromDividends(owner()) (NobilityBUSD.sol#102)
- dividendTracker.excludeFromDividends(deadWallet) (NobilityBUSD.sol#103)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (NobilityBUSD.sol#104)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (NobilityBUSD.sol#152)
- excludeFromFees(_marketingWalletAddress,true) (NobilityBUSD.sol#108)
- ExcludeFromFees(account,excluded) (NobilityBUSD.sol#152)
- excludeFromFees(owner(),true) (NobilityBUSD.sol#107)
- ExcludeFromFees(account,excluded) (NobilityBUSD.sol#152)
- excludeFromFees(address(this),true) (NobilityBUSD.sol#109)
- Transfer(address(0),account,amount) (ERC20.sol#242)
- _mint(owner(),100000000000 * (10 ** 18)) (NobilityBUSD.sol#115)
Reentrancy in NOBILITYDividendTracker.processAccount(address,bool) (NobilityBUSD.sol#657-667):
External calls:
- amount = _withdrawDividendOfUser(account) (NobilityBUSD.sol#658)
- success = IERC20(BUSD).transfer(user,_withdrawableDividend) (DividendPayingToken.sol#81)
Event emitted after the call(s):
- Claim(account,amount,automatic) (NobilityBUSD.sol#662)
Reentrancy in NOBLILITY.processDividendTracker(uint256) (NobilityBUSD.sol#268-271):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (NobilityBUSD.sol#269)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (NobilityBUSD.sol#270)
Reentrancy in NOBLILITY.swapAndLiquify(uint256) (NobilityBUSD.sol#368-389):
External calls:
- swapTokensForEth(half) (NobilityBUSD.sol#380)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#403-409)
- addLiquidity(otherHalf,newBalance) (NobilityBUSD.sol#386)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (NobilityBUSD.sol#386)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (NobilityBUSD.sol#438-445)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- addLiquidity(otherHalf,newBalance) (NobilityBUSD.sol#386)
- SwapAndLiquify(half,newBalance,otherHalf) (NobilityBUSD.sol#388)
Reentrancy in NOBLILITY.swapAndSendDividends(uint256) (NobilityBUSD.sol#449-458):
External calls:
- swapTokensForBusd(tokens) (NobilityBUSD.sol#450)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (NobilityBUSD.sol#423-429)
- success = IERC20(BUSD).transfer(address(dividendTracker),dividends) (NobilityBUSD.sol#452)
- dividendTracker.distributeBUSDDividends(dividends) (NobilityBUSD.sol#455)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (NobilityBUSD.sol#456)
Reentrancy in NOBLILITY.updateDividendTracker(address) (NobilityBUSD.sol#122-137):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (NobilityBUSD.sol#129)
- newDividendTracker.excludeFromDividends(address(this)) (NobilityBUSD.sol#130)
- newDividendTracker.excludeFromDividends(owner()) (NobilityBUSD.sol#131)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (NobilityBUSD.sol#132)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (NobilityBUSD.sol#134)
Apply the check-effects-interactions pattern.
Additional information: link
NOBILITYDividendTracker.getAccount(address) (NobilityBUSD.sol#521-564) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (NobilityBUSD.sol#561-563)
NOBILITYDividendTracker.canAutoClaim(uint256) (NobilityBUSD.sol#585-591) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (NobilityBUSD.sol#586)
- block.timestamp.sub(lastClaimTime) >= claimWait (NobilityBUSD.sol#590)
Avoid relying on block.timestamp.
Additional information: link
NOBLILITY.totalFees (NobilityBUSD.sol#35) is set pre-construction with a non-constant function or state variable:
- BUSDRewardsFee.add(liquidityFee).add(marketingFee)
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
Parameter DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#98) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#105) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#112) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) is not in mixedCase
Variable DividendPayingToken.BUSD (DividendPayingToken.sol#24) is not in mixedCase
Constant DividendPayingToken.magnitude (DividendPayingToken.sol#30) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (IUniswapV2Pair.sol#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (IUniswapV2Pair.sol#38) is not in mixedCase
Function IUniswapV2Router01.WETH() (IUniswapV2Router.sol#7) is not in mixedCase
Variable NOBLILITY.BUSD (NobilityBUSD.sol#26) is not in mixedCase
Variable NOBLILITY._isBlacklisted (NobilityBUSD.sol#30) is not in mixedCase
Variable NOBLILITY.BUSDRewardsFee (NobilityBUSD.sol#32) is not in mixedCase
Variable NOBLILITY._marketingWalletAddress (NobilityBUSD.sol#37) is not in mixedCase
Parameter NOBILITYDividendTracker.getAccount(address)._account (NobilityBUSD.sol#521) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (IUniswapV2Router.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (IUniswapV2Router.sol#13)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to NOBILITYDividendTracker.getAccount(address).withdrawableDividends (NobilityBUSD.sol#526)
Prevent variables from having similar names.
Additional information: link
NOBLILITY.constructor() (NobilityBUSD.sol#84-116) uses literals with too many digits:
- _mint(owner(),100000000000 * (10 ** 18)) (NobilityBUSD.sol#115)
NOBLILITY.updateGasForProcessing(uint256) (NobilityBUSD.sol#207-212) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,NOBILITY: gasForProcessing must be between 200,000 and 500,000) (NobilityBUSD.sol#208)
NOBLILITY.slitherConstructorVariables() (NobilityBUSD.sol#14-459) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (NobilityBUSD.sol#24)
NOBLILITY.slitherConstructorVariables() (NobilityBUSD.sol#14-459) uses literals with too many digits:
- swapTokensAtAmount = 2000000 * (10 ** 18) (NobilityBUSD.sol#28)
NOBLILITY.slitherConstructorVariables() (NobilityBUSD.sol#14-459) uses literals with too many digits:
- gasForProcessing = 300000 (NobilityBUSD.sol#41)
NOBILITYDividendTracker.constructor() (NobilityBUSD.sol#481-484) uses literals with too many digits:
- minimumTokenBalanceForDividends = 200000 * (10 ** 18) (NobilityBUSD.sol#483)
NOBILITYDividendTracker.getAccountAtIndex(uint256) (NobilityBUSD.sol#566-583) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (NobilityBUSD.sol#577)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.
Additional information: link
NOBLILITY.deadWallet (NobilityBUSD.sol#24) should be constant
NOBLILITY.swapTokensAtAmount (NobilityBUSD.sol#28) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
distributeBUSDDividends(uint256) should be declared external:
- DividendPayingToken.distributeBUSDDividends(uint256) (DividendPayingToken.sol#55-66)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (DividendPayingToken.sol#70-72)
- NOBILITYDividendTracker.withdrawDividend() (NobilityBUSD.sol#490-492)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (DividendPayingToken.sol#98-100)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (DividendPayingToken.sol#112-114)
name() should be declared external:
- ERC20.name() (ERC20.sol#63-65)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#71-73)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#88-90)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#114-117)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#122-124)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#133-136)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#151-159)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#173-176)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#192-195)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (IterableMapping.sol#13-15)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (IterableMapping.sol#17-22)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (IterableMapping.sol#24-26)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (IterableMapping.sol#30-32)
updateDividendTracker(address) should be declared external:
- NOBLILITY.updateDividendTracker(address) (NobilityBUSD.sol#122-137)
updateUniswapV2Router(address) should be declared external:
- NOBLILITY.updateUniswapV2Router(address) (NobilityBUSD.sol#139-146)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- NOBLILITY.excludeMultipleAccountsFromFees(address[],bool) (NobilityBUSD.sol#155-161)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- NOBLILITY.setAutomatedMarketMakerPair(address,bool) (NobilityBUSD.sol#184-188)
updateGasForProcessing(uint256) should be declared external:
- NOBLILITY.updateGasForProcessing(uint256) (NobilityBUSD.sol#207-212)
isExcludedFromFees(address) should be declared external:
- NOBLILITY.isExcludedFromFees(address) (NobilityBUSD.sol#226-228)
withdrawableDividendOf(address) should be declared external:
- NOBLILITY.withdrawableDividendOf(address) (NobilityBUSD.sol#230-232)
dividendTokenBalanceOf(address) should be declared external:
- NOBLILITY.dividendTokenBalanceOf(address) (NobilityBUSD.sol#234-236)
getAccountAtIndex(uint256) should be declared external:
- NOBILITYDividendTracker.getAccountAtIndex(uint256) (NobilityBUSD.sol#566-583)
process(uint256) should be declared external:
- NOBILITYDividendTracker.process(uint256) (NobilityBUSD.sol#610-655)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
Use the external attribute for functions never called from the contract.
Additional information: link
Context._msgData() (Context.sol#20-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (DividendPayingToken.sol#132-138) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#142-145) is never used and should be removed
SafeMathInt.abs(int256) (SafeMathInt.sol#82-85) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMathInt.sol#53-59) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.6.2 (Context.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingToken.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenInterface.sol#3) allows old versions
Pragma version^0.6.2 (DividendPayingTokenOptionalInterface.sol#3) allows old versions
Pragma version^0.6.2 (ERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20.sol#3) allows old versions
Pragma version^0.6.2 (IERC20Metadata.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Factory.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Pair.sol#3) allows old versions
Pragma version^0.6.2 (IUniswapV2Router.sol#3) allows old versions
Pragma version^0.6.2 (IterableMapping.sol#2) allows old versions
Pragma version^0.6.2 (NobilityBUSD.sol#3) allows old versions
Pragma version^0.6.2 (Ownable.sol#1) allows old versions
Pragma version^0.6.2 (SafeMath.sol#3) allows old versions
Pragma version^0.6.2 (SafeMathInt.sol#28) allows old versions
Pragma version^0.6.2 (SafeMathUint.sol#3) 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
Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Contract has 11% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Token is deployed only at one blockchain
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Last post in Twitter was more than 30 days ago