XrpTiger Token Logo

XrpTiger Token

About XrpTiger

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 14 February 2022

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

XrpTiger._splitOtherToken() (#1253-1299) ignores return value by doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1281)
XrpTiger._splitOtherToken() (#1253-1299) ignores return value by doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1292)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

XrpTiger.startTime (#1046) is never initialized. It is used in:
- XrpTiger.isIn3minter() (#1135-1137)
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

XrpTiger.setSwapTokensAtAmount(uint256) (#1119-1121) should emit an event for:
- swapTokensAtAmount = _swapTokensAtAmount (#1120)
XrpTiger.setTokenRewardsFee(uint256) (#1310-1313) should emit an event for:
- tokenRewardsFee = value (#1311)
- totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee) (#1312)
XrpTiger.setLiquiditFee(uint256) (#1315-1318) should emit an event for:
- liquidityFee = value (#1316)
- totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee) (#1317)
XrpTiger.setMarketingFee(uint256) (#1320-1323) should emit an event for:
- marketingFee = value (#1321)
- totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee) (#1322)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (#275) lacks a zero-check on :
- _owner = msgSender (#276)
XrpTiger.constructor(address,address,uint256[3]).tokenOwner (#1068) lacks a zero-check on :
- _tokenOwner = tokenOwner (#1078)
XrpTiger.constructor(address,address,uint256[3]).fundAddress (#1068) lacks a zero-check on :
- _fundAddress = fundAddress (#1079)
Check that the address is not zero.

Additional information: link

XrpTiger._splitOtherToken() (#1253-1299) has external calls inside a loop: doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1281)
XrpTiger._splitOtherToken() (#1253-1299) has external calls inside a loop: doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1292)
Favor pull over push strategy for external calls.

Additional information: link

XrpTiger._splitOtherToken() (#1253-1299) performs a multiplication on the result of a division:
-rate = balanceOf(user).mul(10000).div(totalAmount) (#1290)
-doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1292)
XrpTiger._splitOtherToken() (#1253-1299) performs a multiplication on the result of a division:
-rate = balanceOf(user).mul(10000).div(totalAmount) (#1279)
-doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1281)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in XrpTiger._transfer(address,address,uint256) (#1139-1192):
External calls:
- swapAndLiquifyV3(balanceOf(address(this))) (#1161)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1232-1238)
State variables written after the call(s):
- swapping = false (#1163)
Reentrancy in XrpTiger._transfer(address,address,uint256) (#1139-1192):
External calls:
- swapAndLiquifyV3(balanceOf(address(this))) (#1161)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1232-1238)
- _splitOtherToken() (#1167)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1281)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1292)
State variables written after the call(s):
- super._transfer(from,uniswapV2Pair,amount.mul(liquidityFee).div(100)) (#1174)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#564-567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- super._transfer(from,_fundAddress,amount.mul(marketingFee).div(100)) (#1176)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#564-567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- super._transfer(from,address(this),amount.mul(tokenRewardsFee).div(100)) (#1178)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#564-567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- super._transfer(from,to,amount) (#1184)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#564-567)
- _balances[recipient] = _balances[recipient].add(amount) (#568)
- buyUser.push(to) (#1188)
Apply the check-effects-interactions pattern.

Additional information: link

XrpTiger._splitOtherToken().startIndex (#1259) 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

ERC20.allowance(address,address).owner (#420) shadows:
- Ownable.owner() (#283-285) (function)
ERC20._approve(address,address,uint256).owner (#631) shadows:
- Ownable.owner() (#283-285) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in XrpTiger._transfer(address,address,uint256) (#1139-1192):
External calls:
- swapAndLiquifyV3(balanceOf(address(this))) (#1161)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1232-1238)
- _splitOtherToken() (#1167)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1281)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1292)
State variables written after the call(s):
- havePush[to] = true (#1187)
Reentrancy in XrpTiger.constructor(address,address,uint256[3]) (#1068-1095):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1073-1074)
State variables written after the call(s):
- _approve(address(this),address(0x10ED43C718714eb63d5aA57B78B54704E256024E),10 ** 26) (#1075)
- _allowances[owner][spender] = amount (#638)
- _mint(tokenOwner,total) (#1094)
- _balances[account] = _balances[account].add(amount) (#587)
- _fundAddress = fundAddress (#1079)
- excludeFromFees(tokenOwner,true) (#1088)
- _isExcludedFromFees[account] = excluded (#1107)
- excludeFromFees(address(this),true) (#1089)
- _isExcludedFromFees[account] = excluded (#1107)
- _tokenOwner = tokenOwner (#1078)
- _mint(tokenOwner,total) (#1094)
- _totalSupply = _totalSupply.add(amount) (#586)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1080)
- automatedMarketMakerPairs[pair] = value (#1128)
- doge = IERC20(0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE) (#1090)
- liquidityFee = feeSettings[1] (#1083)
- marketingFee = feeSettings[2] (#1084)
- minBuyAmount = total.div(1000) (#1093)
- swapTokensAtAmount = total.div(10000) (#1092)
- tokenRewardsFee = feeSettings[0] (#1082)
- totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee) (#1085)
- uniswapV2Pair = _uniswapV2Pair (#1077)
- uniswapV2Router = _uniswapV2Router (#1076)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in XrpTiger._transfer(address,address,uint256) (#1139-1192):
External calls:
- swapAndLiquifyV3(balanceOf(address(this))) (#1161)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1232-1238)
- _splitOtherToken() (#1167)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1281)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1292)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#569)
- super._transfer(from,to,amount) (#1184)
- Transfer(sender,recipient,amount) (#569)
- super._transfer(from,address(this),amount.mul(tokenRewardsFee).div(100)) (#1178)
- Transfer(sender,recipient,amount) (#569)
- super._transfer(from,_fundAddress,amount.mul(marketingFee).div(100)) (#1176)
- Transfer(sender,recipient,amount) (#569)
- super._transfer(from,uniswapV2Pair,amount.mul(liquidityFee).div(100)) (#1174)
Reentrancy in XrpTiger.constructor(address,address,uint256[3]) (#1068-1095):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1073-1074)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#639)
- _approve(address(this),address(0x10ED43C718714eb63d5aA57B78B54704E256024E),10 ** 26) (#1075)
- ExcludeFromFees(account,excluded) (#1108)
- excludeFromFees(address(this),true) (#1089)
- ExcludeFromFees(account,excluded) (#1108)
- excludeFromFees(tokenOwner,true) (#1088)
- Transfer(address(0),account,amount) (#588)
- _mint(tokenOwner,total) (#1094)
Apply the check-effects-interactions pattern.

Additional information: link

XrpTiger.isIn3minter() (#1135-1137) uses timestamp for comparisons
Dangerous comparisons:
- startTime.add(180) > block.timestamp (#1136)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#15-19) is never used and should be removed
ERC20._burn(address,uint256) (#602-613) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.11 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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#55) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#57) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#88) is not in mixedCase
Function IUniswapV2Router01.WETH() (#822) is not in mixedCase
Parameter XrpTiger.setSwapTokensAtAmount(uint256)._swapTokensAtAmount (#1119) is not in mixedCase
Parameter XrpTiger.setSwapAndLiquifyEnabled(bool)._enabled (#1123) is not in mixedCase
Function XrpTiger._splitOtherToken() (#1253-1299) is not in mixedCase
Variable XrpTiger._tokenOwner (#1035) is not in mixedCase
Variable XrpTiger._fundAddress (#1036) is not in mixedCase
Variable XrpTiger._receive (#1040) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#16)" inContext (#10-20)
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 (#827) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#828)
Prevent variables from having similar names.

Additional information: link

XrpTiger.constructor(address,address,uint256[3]) (#1068-1095) uses literals with too many digits:
- total = 100000000000 * 10 ** 18 (#1091)
XrpTiger.slitherConstructorVariables() (#1025-1327) uses literals with too many digits:
- _destroyAddress = address(0x000000000000000000000000000000000000dEaD) (#1041)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

XrpTiger._destroyAddress (#1041) is never used in XrpTiger (#1025-1327)
Remove unused state variables.

Additional information: link

XrpTiger._destroyAddress (#1041) should be constant
XrpTiger._receive (#1040) should be constant
XrpTiger.startTime (#1046) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#283-285)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#302-305)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#311-318)
name() should be declared external:
- ERC20.name() (#350-352)
symbol() should be declared external:
- ERC20.symbol() (#358-360)
decimals() should be declared external:
- ERC20.decimals() (#375-377)
totalSupply() should be declared external:
- ERC20.totalSupply() (#382-384)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#407-415)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#420-428)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#437-445)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#460-475)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#489-500)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#516-530)
updateUniswapV2Router(address) should be declared external:
- XrpTiger.updateUniswapV2Router(address) (#1101-1104)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- XrpTiger.excludeMultipleAccountsFromFees(address[],bool) (#1111-1117)
setSwapTokensAtAmount(uint256) should be declared external:
- XrpTiger.setSwapTokensAtAmount(uint256) (#1119-1121)
setSwapAndLiquifyEnabled(bool) should be declared external:
- XrpTiger.setSwapAndLiquifyEnabled(bool) (#1123-1125)
isExcludedFromFees(address) should be declared external:
- XrpTiger.isExcludedFromFees(address) (#1131-1133)
isIn3minter() should be declared external:
- XrpTiger.isIn3minter() (#1135-1137)
swapAndLiquifyV1(uint256) should be declared external:
- XrpTiger.swapAndLiquifyV1(uint256) (#1194-1198)
swapAndLiquifyV4() should be declared external:
- XrpTiger.swapAndLiquifyV4() (#1221-1223)
rescueToken(address,uint256) should be declared external:
- XrpTiger.rescueToken(address,uint256) (#1243-1249)
getBuysize() should be declared external:
- XrpTiger.getBuysize() (#1301-1303)
setBuy(address) should be declared external:
- XrpTiger.setBuy(address) (#1305-1308)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume 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.


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


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 Telegram and Twitter accounts


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

Price for XrpTiger