WINNEReSports.addLiquidity(uint256,uint256) (#1505-1518) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in WINNEReSports._transfer(address,address,uint256) (#1424-1462):
External calls:
- swapAndLiquify(contractTokenBalance) (#1449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1496-1502)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1351)
- _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity) (#1360)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1580)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1558)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1559)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1198)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1604)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1605)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1582)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1200)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _rTotal = _rTotal.sub(rFee) (#1243)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1353)
- _tOwned[_charityAddress] = _tOwned[_charityAddress].add(tCharity) (#1362-1364)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1603)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1197)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1581)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1199)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
WINNEReSports.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256) (#945-1016) contains a tautology or contradiction:
- require(bool,string)(liquidityFeeBps_ >= 0,Invalid liquidity fee) (#958)
WINNEReSports.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256) (#945-1016) contains a tautology or contradiction:
- require(bool,string)(charityFeeBps_ >= 0,Invalid charity fee) (#959)
WINNEReSports.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256) (#945-1016) contains a tautology or contradiction:
- require(bool,string)(taxFeeBps_ >= 0,Invalid tax fee) (#957)
Fix the incorrect comparison by changing the value type or the comparison.
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 ownership is not renounced (belongs to a wallet)
WINNEReSports.addLiquidity(uint256,uint256) (#1505-1518) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
Ensure that all the return values of the function calls are used.
Additional information: link
WINNEReSports.allowance(address,address).owner (#1048) shadows:
- Ownable.owner() (#139-141) (function)
WINNEReSports._approve(address,address,uint256).owner (#1413) shadows:
- Ownable.owner() (#139-141) (function)
Rename the local variables that shadow another component.
Additional information: link
WINNEReSports.setTaxFeePercent(uint256) (#1215-1221) should emit an event for:
- _taxFee = taxFeeBps (#1216)
WINNEReSports.setLiquidityFeePercent(uint256) (#1223-1232) should emit an event for:
- _liquidityFee = liquidityFeeBps (#1227)
Emit an event for critical parameter changes.
Additional information: link
WINNEReSports.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256).serviceFeeReceiver_ (#954) lacks a zero-check on :
- address(serviceFeeReceiver_).transfer(serviceFee_) (#1015)
Check that the address is not zero.
Additional information: link
Reentrancy in WINNEReSports._transfer(address,address,uint256) (#1424-1462):
External calls:
- swapAndLiquify(contractTokenBalance) (#1449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1496-1502)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _charityFee = _previousCharityFee (#1405)
- _charityFee = 0 (#1399)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _liquidityFee = _previousLiquidityFee (#1404)
- _liquidityFee = 0 (#1398)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _previousCharityFee = _charityFee (#1395)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _previousLiquidityFee = _liquidityFee (#1394)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _previousTaxFee = _taxFee (#1393)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1244)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- _taxFee = _previousTaxFee (#1403)
- _taxFee = 0 (#1397)
Reentrancy in WINNEReSports.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256) (#945-1016):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#996-997)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#1003)
- _isExcludedFromFee[address(this)] = true (#1004)
- uniswapV2Router = _uniswapV2Router (#1000)
Reentrancy in WINNEReSports.swapAndLiquify(uint256) (#1464-1485):
External calls:
- swapTokensForEth(half) (#1476)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1496-1502)
- addLiquidity(otherHalf,newBalance) (#1482)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1482)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1482)
- _allowances[owner][spender] = amount (#1420)
Reentrancy in WINNEReSports.transferFrom(address,address,uint256) (#1066-1081):
External calls:
- _transfer(sender,recipient,amount) (#1071)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1496-1502)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1071)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1072-1079)
- _allowances[owner][spender] = amount (#1420)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in WINNEReSports._transfer(address,address,uint256) (#1424-1462):
External calls:
- swapAndLiquify(contractTokenBalance) (#1449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1496-1502)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
Event emitted after the call(s):
- Transfer(_msgSender(),_charityAddress,tCharity) (#1365)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- Transfer(sender,recipient,tTransferAmount) (#1563)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- Transfer(sender,recipient,tTransferAmount) (#1586)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- Transfer(sender,recipient,tTransferAmount) (#1609)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
- Transfer(sender,recipient,tTransferAmount) (#1204)
- _tokenTransfer(from,to,amount,takeFee) (#1461)
Reentrancy in WINNEReSports.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256) (#945-1016):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#996-997)
Event emitted after the call(s):
- TokenCreated(owner(),address(this),TokenType.liquidityGenerator,VERSION) (#1008-1013)
- Transfer(address(0),owner(),_tTotal) (#1006)
Reentrancy in WINNEReSports.swapAndLiquify(uint256) (#1464-1485):
External calls:
- swapTokensForEth(half) (#1476)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1496-1502)
- addLiquidity(otherHalf,newBalance) (#1482)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1482)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1421)
- addLiquidity(otherHalf,newBalance) (#1482)
- SwapAndLiquify(half,newBalance,otherHalf) (#1484)
Reentrancy in WINNEReSports.transferFrom(address,address,uint256) (#1066-1081):
External calls:
- _transfer(sender,recipient,amount) (#1071)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1496-1502)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1071)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1510-1517)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1421)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1072-1079)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#429-439) uses assembly
- INLINE ASM (#435-437)
Address.verifyCallResult(bool,bytes,string) (#598-618) uses assembly
- INLINE ASM (#610-613)
Do not use evm assembly.
Additional information: link
WINNEReSports.includeInReward(address) (#1170-1181) has costly operations inside a loop:
- _excluded.pop() (#1177)
Use a local variable to hold the loop computation result.
Additional information: link
Address.functionCall(address,bytes) (#482-484) is never used and should be removed
Address.functionCall(address,bytes,string) (#492-498) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#511-517) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#525-536) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#571-573) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#581-590) is never used and should be removed
Address.functionStaticCall(address,bytes) (#544-546) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#554-563) is never used and should be removed
Address.isContract(address) (#429-439) is never used and should be removed
Address.sendValue(address,uint256) (#457-462) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#598-618) is never used and should be removed
Context._msgData() (#101-104) is never used and should be removed
Ownable._setOwner(address) (#176-180) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#367-376) is never used and should be removed
SafeMath.mod(uint256,uint256) (#327-329) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#393-402) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#198-204) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#240-245) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#252-257) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#223-233) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#211-216) is never used and should be removed
Remove unused functions.
Additional information: link
WINNEReSports._previousTaxFee (#914) is set pre-construction with a non-constant function or state variable:
- _taxFee
WINNEReSports._previousLiquidityFee (#917) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
WINNEReSports._previousCharityFee (#920) is set pre-construction with a non-constant function or state variable:
- _charityFee
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) (#457-462):
- (success) = recipient.call{value: amount}() (#460)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#525-536):
- (success,returndata) = target.call{value: value}(data) (#534)
Low level call in Address.functionStaticCall(address,bytes,string) (#554-563):
- (success,returndata) = target.staticcall(data) (#561)
Low level call in Address.functionDelegateCall(address,bytes,string) (#581-590):
- (success,returndata) = target.delegatecall(data) (#588)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Router01.WETH() (#627) is not in mixedCase
Parameter WINNEReSports.setSwapAndLiquifyEnabled(bool)._enabled (#1234) is not in mixedCase
Parameter WINNEReSports.calculateTaxFee(uint256)._amount (#1369) is not in mixedCase
Parameter WINNEReSports.calculateLiquidityFee(uint256)._amount (#1373) is not in mixedCase
Parameter WINNEReSports.calculateCharityFee(uint256)._amount (#1381) is not in mixedCase
Variable WINNEReSports._taxFee (#913) is not in mixedCase
Variable WINNEReSports._liquidityFee (#916) is not in mixedCase
Variable WINNEReSports._charityFee (#919) is not in mixedCase
Variable WINNEReSports._charityAddress (#924) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#102)" inContext (#96-105)
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 (#632) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#633)
Variable WINNEReSports._charityAddress (#924) is too similar to WINNEReSports.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256).charityAddress_ (#950)
Variable WINNEReSports.reflectionFromToken(uint256,bool).rTransferAmount (#1142) is too similar to WINNEReSports._transferBothExcluded(address,address,uint256).tTransferAmount (#1192)
Variable WINNEReSports.reflectionFromToken(uint256,bool).rTransferAmount (#1142) is too similar to WINNEReSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1598)
Variable WINNEReSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1596) is too similar to WINNEReSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1598)
Variable WINNEReSports.reflectionFromToken(uint256,bool).rTransferAmount (#1142) is too similar to WINNEReSports._getValues(uint256).tTransferAmount (#1261)
Variable WINNEReSports._transferBothExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to WINNEReSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1598)
Variable WINNEReSports._transferBothExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to WINNEReSports._transferBothExcluded(address,address,uint256).tTransferAmount (#1192)
Variable WINNEReSports._transferStandard(address,address,uint256).rTransferAmount (#1551) is too similar to WINNEReSports._transferStandard(address,address,uint256).tTransferAmount (#1553)
Variable WINNEReSports._transferBothExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to WINNEReSports._getValues(uint256).tTransferAmount (#1261)
Variable WINNEReSports._getValues(uint256).rTransferAmount (#1266) is too similar to WINNEReSports._getTValues(uint256).tTransferAmount (#1297-1299)
Variable WINNEReSports.reflectionFromToken(uint256,bool).rTransferAmount (#1142) is too similar to WINNEReSports._getTValues(uint256).tTransferAmount (#1297-1299)
Variable WINNEReSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1596) is too similar to WINNEReSports._getTValues(uint256).tTransferAmount (#1297-1299)
Variable WINNEReSports._transferBothExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to WINNEReSports._getTValues(uint256).tTransferAmount (#1297-1299)
Variable WINNEReSports._getValues(uint256).rTransferAmount (#1266) is too similar to WINNEReSports._transferStandard(address,address,uint256).tTransferAmount (#1553)
Variable WINNEReSports._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1322-1324) is too similar to WINNEReSports._transferStandard(address,address,uint256).tTransferAmount (#1553)
Variable WINNEReSports.reflectionFromToken(uint256,bool).rTransferAmount (#1142) is too similar to WINNEReSports._transferStandard(address,address,uint256).tTransferAmount (#1553)
Variable WINNEReSports._getValues(uint256).rTransferAmount (#1266) is too similar to WINNEReSports._transferToExcluded(address,address,uint256).tTransferAmount (#1575)
Variable WINNEReSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1596) is too similar to WINNEReSports._transferStandard(address,address,uint256).tTransferAmount (#1553)
Variable WINNEReSports._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1322-1324) is too similar to WINNEReSports._transferToExcluded(address,address,uint256).tTransferAmount (#1575)
Variable WINNEReSports.reflectionFromToken(uint256,bool).rTransferAmount (#1142) is too similar to WINNEReSports._transferToExcluded(address,address,uint256).tTransferAmount (#1575)
Variable WINNEReSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1596) is too similar to WINNEReSports._transferToExcluded(address,address,uint256).tTransferAmount (#1575)
Variable WINNEReSports._transferBothExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to WINNEReSports._transferStandard(address,address,uint256).tTransferAmount (#1553)
Variable WINNEReSports._transferBothExcluded(address,address,uint256).rTransferAmount (#1190) is too similar to WINNEReSports._transferToExcluded(address,address,uint256).tTransferAmount (#1575)
Variable WINNEReSports._transferToExcluded(address,address,uint256).rTransferAmount (#1573) is too similar to WINNEReSports._transferStandard(address,address,uint256).tTransferAmount (#1553)
Variable WINNEReSports._transferToExcluded(address,address,uint256).rTransferAmount (#1573) is too similar to WINNEReSports._transferToExcluded(address,address,uint256).tTransferAmount (#1575)
Variable WINNEReSports._getValues(uint256).rTransferAmount (#1266) is too similar to WINNEReSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1598)
Variable WINNEReSports._charityFee (#919) is too similar to WINNEReSports._getTValues(uint256).tCharityFee (#1296)
Variable WINNEReSports._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1322-1324) is too similar to WINNEReSports._getValues(uint256).tTransferAmount (#1261)
Variable WINNEReSports._transferStandard(address,address,uint256).rTransferAmount (#1551) is too similar to WINNEReSports._transferToExcluded(address,address,uint256).tTransferAmount (#1575)
Variable WINNEReSports._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1322-1324) is too similar to WINNEReSports._getTValues(uint256).tTransferAmount (#1297-1299)
Variable WINNEReSports._getValues(uint256).rTransferAmount (#1266) is too similar to WINNEReSports._transferBothExcluded(address,address,uint256).tTransferAmount (#1192)
Variable WINNEReSports._transferStandard(address,address,uint256).rTransferAmount (#1551) is too similar to WINNEReSports._transferBothExcluded(address,address,uint256).tTransferAmount (#1192)
Variable WINNEReSports._transferToExcluded(address,address,uint256).rTransferAmount (#1573) is too similar to WINNEReSports._transferBothExcluded(address,address,uint256).tTransferAmount (#1192)
Variable WINNEReSports._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1322-1324) is too similar to WINNEReSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1598)
Variable WINNEReSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1596) is too similar to WINNEReSports._transferBothExcluded(address,address,uint256).tTransferAmount (#1192)
Variable WINNEReSports._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1322-1324) is too similar to WINNEReSports._transferBothExcluded(address,address,uint256).tTransferAmount (#1192)
Variable WINNEReSports._getValues(uint256).rTransferAmount (#1266) is too similar to WINNEReSports._getValues(uint256).tTransferAmount (#1261)
Variable WINNEReSports._transferStandard(address,address,uint256).rTransferAmount (#1551) is too similar to WINNEReSports._getValues(uint256).tTransferAmount (#1261)
Variable WINNEReSports._transferToExcluded(address,address,uint256).rTransferAmount (#1573) is too similar to WINNEReSports._getValues(uint256).tTransferAmount (#1261)
Variable WINNEReSports._transferStandard(address,address,uint256).rTransferAmount (#1551) is too similar to WINNEReSports._getTValues(uint256).tTransferAmount (#1297-1299)
Variable WINNEReSports._transferToExcluded(address,address,uint256).rTransferAmount (#1573) is too similar to WINNEReSports._getTValues(uint256).tTransferAmount (#1297-1299)
Variable WINNEReSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1596) is too similar to WINNEReSports._getValues(uint256).tTransferAmount (#1261)
Variable WINNEReSports._transferToExcluded(address,address,uint256).rTransferAmount (#1573) is too similar to WINNEReSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1598)
Variable WINNEReSports._transferStandard(address,address,uint256).rTransferAmount (#1551) is too similar to WINNEReSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1598)
Prevent variables from having similar names.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#158-161)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#167-174)
name() should be declared external:
- WINNEReSports.name() (#1018-1020)
symbol() should be declared external:
- WINNEReSports.symbol() (#1022-1024)
decimals() should be declared external:
- WINNEReSports.decimals() (#1026-1028)
totalSupply() should be declared external:
- WINNEReSports.totalSupply() (#1030-1032)
transfer(address,uint256) should be declared external:
- WINNEReSports.transfer(address,uint256) (#1039-1046)
allowance(address,address) should be declared external:
- WINNEReSports.allowance(address,address) (#1048-1055)
approve(address,uint256) should be declared external:
- WINNEReSports.approve(address,uint256) (#1057-1064)
transferFrom(address,address,uint256) should be declared external:
- WINNEReSports.transferFrom(address,address,uint256) (#1066-1081)
increaseAllowance(address,uint256) should be declared external:
- WINNEReSports.increaseAllowance(address,uint256) (#1083-1094)
decreaseAllowance(address,uint256) should be declared external:
- WINNEReSports.decreaseAllowance(address,uint256) (#1096-1110)
isExcludedFromReward(address) should be declared external:
- WINNEReSports.isExcludedFromReward(address) (#1112-1114)
totalFees() should be declared external:
- WINNEReSports.totalFees() (#1116-1118)
deliver(uint256) should be declared external:
- WINNEReSports.deliver(uint256) (#1120-1130)
reflectionFromToken(uint256,bool) should be declared external:
- WINNEReSports.reflectionFromToken(uint256,bool) (#1132-1145)
excludeFromReward(address) should be declared external:
- WINNEReSports.excludeFromReward(address) (#1160-1168)
excludeFromFee(address) should be declared external:
- WINNEReSports.excludeFromFee(address) (#1207-1209)
includeInFee(address) should be declared external:
- WINNEReSports.includeInFee(address) (#1211-1213)
setSwapAndLiquifyEnabled(bool) should be declared external:
- WINNEReSports.setSwapAndLiquifyEnabled(bool) (#1234-1237)
isExcludedFromFee(address) should be declared external:
- WINNEReSports.isExcludedFromFee(address) (#1408-1410)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts