XRPG Token Logo

XRPG Token

About XRPG

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 7 January 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...)

XRPG.swapBack() (#557-609) sends eth to arbitrary user
Dangerous calls:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in XRPG._transferFrom(address,address,uint256) (#431-486):
External calls:
- swapBack() (#466)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#592)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
External calls sending eth:
- swapBack() (#466)
- distributor.deposit{value: amountBNBReflection}() (#592)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
State variables written after the call(s):
- _balances[sender] = _balances[sender] - amount (#468)
- _balances[recipient] = _balances[recipient] + amountReceived (#471)
- amountReceived = takeFee(recipient,amount) (#470)
- _balances[address(this)] = _balances[address(this)] + (feeAmount) (#544)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#260-271) ignores return value by RWRD.transfer(shareholder,amount) (#266)
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.

XRPG._maxBuyTxAmount (#350) is set pre-construction with a non-constant function or state variable:
- _totalSupply / (100) * (2)
XRPG._maxSellTxAmount (#351) is set pre-construction with a non-constant function or state variable:
- _totalSupply / (100) * (1)
XRPG._maxWalletToken (#352) is set pre-construction with a non-constant function or state variable:
- _totalSupply / (100) * (2)
XRPG.swapThreshold (#369) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000 * 1
XRPG.maxSwapSize (#370) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100 * 1
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 XRPG.swapBack() (#557-609):
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

DividendDistributor.process(uint256) (#229-253) has costly operations inside a loop:
- currentIndex = 0 (#241)
DividendDistributor.distributeDividend(address) (#260-271) has costly operations inside a loop:
- totalDistributed = totalDistributed + amount (#265)
DividendDistributor.process(uint256) (#229-253) has costly operations inside a loop:
- currentIndex ++ (#250)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in XRPG._transferFrom(address,address,uint256) (#431-486):
External calls:
- swapBack() (#466)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#592)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
- distributor.setShare(sender,balanceOf(sender)) (#475)
- distributor.setShare(recipient,balanceOf(recipient)) (#479)
- distributor.process(distributorGas) (#482)
External calls sending eth:
- swapBack() (#466)
- distributor.deposit{value: amountBNBReflection}() (#592)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#484)
Reentrancy in XRPG._transferFrom(address,address,uint256) (#431-486):
External calls:
- swapBack() (#466)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#592)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
External calls sending eth:
- swapBack() (#466)
- distributor.deposit{value: amountBNBReflection}() (#592)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#545)
- amountReceived = takeFee(recipient,amount) (#470)
Reentrancy in XRPG.constructor() (#376-398):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#378)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#397)
Reentrancy in XRPG.swapBack() (#557-609):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#592)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#592)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#593)
- (charitySuccess) = address(charityFeeReceiver).call{gas: 30000,value: amountBNBcharity}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#607)
Apply the check-effects-interactions pattern.

Additional information: link

XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (100) * (1) (#499)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (1000) * (5) (#504)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (1000) * (5) (#500)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (10000) * (25) (#505)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (1000) * (5) (#506)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (10000) * (25) (#509)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (100) * (1) (#501)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (100) * (2) (#514)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (10000) * (25) (#510)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (100) * (1) (#515)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (10000) * (25) (#511)
XRPG.checkTxLimit() (#496-518) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (100) * (2) (#516)
XRPG.takeFee(address,uint256) (#540-548) performs a multiplication on the result of a division:
-feeAmount = amount / 100 * (totalFee) (#542)
XRPG.swapBack() (#557-609) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell / (totalFee) * (liquidityFee) / (2) (#566)
XRPG.setSwapBackSettings(bool,uint256,uint256) (#662-666) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / (10000) * (_percentage_min_base10000) (#664)
XRPG.setSwapBackSettings(bool,uint256,uint256) (#662-666) performs a multiplication on the result of a division:
-maxSwapSize = _totalSupply / (10000) * (_percentage_max_base10000) (#665)
XRPG.setMaxWalletPercent_base1000(uint256) (#701-704) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (1000) * (maxWallPercent_base1000) (#703)
XRPG.setMaxBuyTxPercent_base1000(uint256) (#706-709) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (1000) * (maxBuyTXPercentage_base1000) (#708)
XRPG.setMaxSellTxPercent_base1000(uint256) (#711-714) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (1000) * (maxSellTXPercentage_base1000) (#713)
XRPG.slitherConstructorVariables() (#308-729) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (100) * (2) (#350)
XRPG.slitherConstructorVariables() (#308-729) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (100) * (1) (#351)
XRPG.slitherConstructorVariables() (#308-729) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (100) * (2) (#352)
XRPG.slitherConstructorVariables() (#308-729) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / 1000 * 1 (#369)
XRPG.slitherConstructorVariables() (#308-729) performs a multiplication on the result of a division:
-maxSwapSize = _totalSupply / 100 * 1 (#370)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#260-271):
External calls:
- RWRD.transfer(shareholder,amount) (#266)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised + (amount) (#268)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#269)
Reentrancy in DividendDistributor.process(uint256) (#229-253):
External calls:
- distributeDividend(shareholders[currentIndex]) (#245)
- RWRD.transfer(shareholder,amount) (#266)
State variables written after the call(s):
- currentIndex ++ (#250)
Reentrancy in DividendDistributor.setShare(address,uint256) (#193-207):
External calls:
- distributeDividend(shareholder) (#195)
- RWRD.transfer(shareholder,amount) (#266)
State variables written after the call(s):
- shares[shareholder].amount = amount (#205)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#206)
Apply the check-effects-interactions pattern.

Additional information: link

XRPG.swapBack() (#557-609) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#599-606)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#188-191) should emit an event for:
- minPeriod = _minPeriod (#189)
- minDistribution = _minDistribution (#190)
XRPG.setBuyFees(uint256,uint256,uint256,uint256) (#640-646) should emit an event for:
- BuyliquidityFee = _liquidityFee (#641)
- BuyreflectionFee = _reflectionFee (#642)
- BuymarketingFee = _marketingFee (#643)
- BuycharityFee = _charityFee (#644)
- BuytotalFee = _liquidityFee + (_reflectionFee) + (_marketingFee) + (_charityFee) (#645)
XRPG.setSellFees(uint256,uint256,uint256,uint256) (#648-654) should emit an event for:
- SellliquidityFee = _liquidityFee (#649)
- SellreflectionFee = _reflectionFee (#650)
- SellmarketingFee = _marketingFee (#651)
- SellcharityFee = _charityFee (#652)
- SelltotalFee = _liquidityFee + (_reflectionFee) + (_marketingFee) + (_charityFee) (#653)
XRPG.setSwapBackSettings(bool,uint256,uint256) (#662-666) should emit an event for:
- swapThreshold = _totalSupply / (10000) * (_percentage_min_base10000) (#664)
- maxSwapSize = _totalSupply / (10000) * (_percentage_max_base10000) (#665)
XRPG.setMaxWalletPercent_base1000(uint256) (#701-704) should emit an event for:
- _maxWalletToken = _totalSupply / (1000) * (maxWallPercent_base1000) (#703)
XRPG.setMaxBuyTxPercent_base1000(uint256) (#706-709) should emit an event for:
- _maxBuyTxAmount = _totalSupply / (1000) * (maxBuyTXPercentage_base1000) (#708)
XRPG.setMaxSellTxPercent_base1000(uint256) (#711-714) should emit an event for:
- _maxSellTxAmount = _totalSupply / (1000) * (maxSellTXPercentage_base1000) (#713)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#63) lacks a zero-check on :
- owner = adr (#64)
XRPG.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#656) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#657)
XRPG.setFeeReceivers(address,address,address)._marketingFeeReceiver (#656) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#658)
XRPG.setFeeReceivers(address,address,address)._charityFeeReceiver (#656) lacks a zero-check on :
- charityFeeReceiver = _charityFeeReceiver (#659)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#260-271) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#266)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in XRPG.constructor() (#376-398):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#378)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#379)
- _balances[msg.sender] = _totalSupply (#396)
- autoLiquidityReceiver = 0x5DfD860A3DbcCCdebA5aF1B3902c0e2A01E6A8E4 (#392)
- canAddLiquidityBeforeLaunch[msg.sender] = true (#386)
- charityFeeReceiver = 0x8789505cb8CfD732714338F3664a2C5f1bC22A8B (#394)
- distributor = new DividendDistributor(address(router)) (#381)
- isDividendExempt[pair] = true (#388)
- isDividendExempt[address(this)] = true (#389)
- isDividendExempt[DEAD] = true (#390)
- isFeeExempt[msg.sender] = true (#383)
- isTxLimitExempt[msg.sender] = true (#384)
- marketingFeeReceiver = 0xae4f6D955bFAE8fEB1CB8d0Fca493A58EfdEa2F2 (#393)
Reentrancy in DividendDistributor.deposit() (#209-227):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#216-221)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare + (dividendsPerShareAccuracyFactor * (amount) / (totalShares)) (#226)
- totalDividends = totalDividends + (amount) (#225)
Reentrancy in DividendDistributor.distributeDividend(address) (#260-271):
External calls:
- RWRD.transfer(shareholder,amount) (#266)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#267)
Reentrancy in DividendDistributor.setShare(address,uint256) (#193-207):
External calls:
- distributeDividend(shareholder) (#195)
- RWRD.transfer(shareholder,amount) (#266)
State variables written after the call(s):
- addShareholder(shareholder) (#199)
- shareholderIndexes[shareholder] = shareholders.length (#293)
- removeShareholder(shareholder) (#201)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#299)
- addShareholder(shareholder) (#199)
- shareholders.push(shareholder) (#294)
- removeShareholder(shareholder) (#201)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#298)
- shareholders.pop() (#300)
- totalShares = totalShares - (shares[shareholder].amount) + (amount) (#204)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#255-258) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#256-257)
XRPG.checkTxLimit() (#496-518) uses timestamp for comparisons
Dangerous comparisons:
- time_since_start < 240 (#498)
- time_since_start < 120 (#503)
- time_since_start < 60 (#508)
Avoid relying on block.timestamp.

Additional information: link

Function IDEXRouter.WETH() (#82) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#188) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#188) is not in mixedCase
Variable DividendDistributor._token (#141) is not in mixedCase
Variable DividendDistributor.RWRD (#149) is not in mixedCase
Variable DividendDistributor.WBNB (#150) is not in mixedCase
Parameter XRPG.tradingStatus(bool)._status (#633) is not in mixedCase
Parameter XRPG.setBuyFees(uint256,uint256,uint256,uint256)._liquidityFee (#640) is not in mixedCase
Parameter XRPG.setBuyFees(uint256,uint256,uint256,uint256)._reflectionFee (#640) is not in mixedCase
Parameter XRPG.setBuyFees(uint256,uint256,uint256,uint256)._marketingFee (#640) is not in mixedCase
Parameter XRPG.setBuyFees(uint256,uint256,uint256,uint256)._charityFee (#640) is not in mixedCase
Parameter XRPG.setSellFees(uint256,uint256,uint256,uint256)._liquidityFee (#648) is not in mixedCase
Parameter XRPG.setSellFees(uint256,uint256,uint256,uint256)._reflectionFee (#648) is not in mixedCase
Parameter XRPG.setSellFees(uint256,uint256,uint256,uint256)._marketingFee (#648) is not in mixedCase
Parameter XRPG.setSellFees(uint256,uint256,uint256,uint256)._charityFee (#648) is not in mixedCase
Parameter XRPG.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#656) is not in mixedCase
Parameter XRPG.setFeeReceivers(address,address,address)._marketingFeeReceiver (#656) is not in mixedCase
Parameter XRPG.setFeeReceivers(address,address,address)._charityFeeReceiver (#656) is not in mixedCase
Parameter XRPG.setSwapBackSettings(bool,uint256,uint256)._enabled (#662) is not in mixedCase
Parameter XRPG.setSwapBackSettings(bool,uint256,uint256)._percentage_min_base10000 (#662) is not in mixedCase
Parameter XRPG.setSwapBackSettings(bool,uint256,uint256)._percentage_max_base10000 (#662) is not in mixedCase
Parameter XRPG.setDistributionCriteria(uint256,uint256)._minPeriod (#692) is not in mixedCase
Parameter XRPG.setDistributionCriteria(uint256,uint256)._minDistribution (#692) is not in mixedCase
Function XRPG.setMaxWalletPercent_base1000(uint256) (#701-704) is not in mixedCase
Parameter XRPG.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#701) is not in mixedCase
Function XRPG.setMaxBuyTxPercent_base1000(uint256) (#706-709) is not in mixedCase
Parameter XRPG.setMaxBuyTxPercent_base1000(uint256).maxBuyTXPercentage_base1000 (#706) is not in mixedCase
Function XRPG.setMaxSellTxPercent_base1000(uint256) (#711-714) is not in mixedCase
Parameter XRPG.setMaxSellTxPercent_base1000(uint256).maxSellTXPercentage_base1000 (#711) is not in mixedCase
Variable XRPG.WBNB (#310) is not in mixedCase
Variable XRPG.DEAD (#311) is not in mixedCase
Variable XRPG.ZERO (#312) is not in mixedCase
Constant XRPG._name (#314) is not in UPPER_CASE_WITH_UNDERSCORES
Constant XRPG._symbol (#315) is not in UPPER_CASE_WITH_UNDERSCORES
Constant XRPG._decimals (#316) is not in UPPER_CASE_WITH_UNDERSCORES
Variable XRPG._totalSupply (#317) is not in mixedCase
Variable XRPG._balances (#319) is not in mixedCase
Variable XRPG.BuyCooldownTimer (#320) is not in mixedCase
Variable XRPG.SellCooldownTimer (#321) is not in mixedCase
Variable XRPG._allowances (#322) is not in mixedCase
Variable XRPG.BuyliquidityFee (#335) is not in mixedCase
Variable XRPG.BuyreflectionFee (#336) is not in mixedCase
Variable XRPG.BuymarketingFee (#337) is not in mixedCase
Variable XRPG.BuycharityFee (#338) is not in mixedCase
Variable XRPG.BuytotalFee (#339) is not in mixedCase
Variable XRPG.SellliquidityFee (#341) is not in mixedCase
Variable XRPG.SellreflectionFee (#342) is not in mixedCase
Variable XRPG.SellmarketingFee (#343) is not in mixedCase
Variable XRPG.SellcharityFee (#344) is not in mixedCase
Variable XRPG.SelltotalFee (#345) is not in mixedCase
Variable XRPG._maxBuyTxAmount (#350) is not in mixedCase
Variable XRPG._maxSellTxAmount (#351) is not in mixedCase
Variable XRPG._maxWalletToken (#352) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#87) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#88)
Variable XRPG.setSwapBackSettings(bool,uint256,uint256)._percentage_max_base10000 (#662) is too similar to XRPG.setSwapBackSettings(bool,uint256,uint256)._percentage_min_base10000 (#662)
Prevent variables from having similar names.

Additional information: link

XRPG.setDistributorSettings(uint256) (#696-699) uses literals with too many digits:
- require(bool)(gas < 900000) (#697)
XRPG.slitherConstructorVariables() (#308-729) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#311)
XRPG.slitherConstructorVariables() (#308-729) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#312)
XRPG.slitherConstructorVariables() (#308-729) uses literals with too many digits:
- distributorGas = 500000 (#366)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

XRPG.ZERO (#312) is never used in XRPG (#308-729)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#150) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#163) should be constant
XRPG.DEAD (#311) should be constant
XRPG.WBNB (#310) should be constant
XRPG.ZERO (#312) should be constant
XRPG._totalSupply (#317) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#47-49)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#51-53)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#63-67)
tradingStatus(bool) should be declared external:
- XRPG.tradingStatus(bool) (#633-638)
rescueToken(address,uint256) should be declared external:
- XRPG.rescueToken(address,uint256) (#717-719)
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 scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for XRPG