Aegis Launchpad Token Logo

AGSPAD [Aegis Launchpad] Token

About AGSPAD

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

Aegis raises the bar by being the first launchpad with innovative cross-chain functionality and insurance, allowing for organic fundraising across multiple blockchains, while safeguarding clients in case of unfavorable outcomes or unforeseen circumstances.

Social

Laser Scorebeta Last Audit: 29 October 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

AegisLaunchpad.insuranceFund(address) (#1318-1322) sends eth to arbitrary user
Dangerous calls:
- (success) = recipient.call{value: address(this).balance}() (#1319)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AegisLaunchpad._transfer(address,address,uint256) (#1324-1350):
External calls:
- BP.protect(from,to,amount) (#1327)
- swap(contractTokenBalance) (#1342)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
External calls sending eth:
- swap(contractTokenBalance) (#1342)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _insuranceFee = _insuranceFee (#1304)
- _insuranceFee = 0 (#1298)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _liquidityFee = _previousLiquidityFee (#1303)
- _liquidityFee = 0 (#1297)
- _liquidityFee = oldLiquidityFee (#1432)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidityAndRewards) (#1271)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1445)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1462)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1132)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1481)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1446)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1464)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1482)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1134)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _rTotal = _rTotal.sub(rFee) (#1216)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidityAndRewards) (#1273)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1131)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1480)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1463)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1133)
Apply the check-effects-interactions pattern.

Additional information: link

AegisLaunchpad._totalClaimed (#906) is never initialized. It is used in:
- AegisLaunchpad.totalClaimed() (#1507-1509)
AegisLaunchpad._claimed (#932) is never initialized. It is used in:
- AegisLaunchpad.rewards(address) (#1492-1498)
- AegisLaunchpad.claimed(address) (#1500-1502)
Ownable._lockTime (#434) is never initialized. It is used in:
- Ownable.getUnlockTime() (#490-492)
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


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)

AegisLaunchpad.setPairAddress(address).pairAddress (#1206) lacks a zero-check on :
- pancakeswapV2Pair = pairAddress (#1208)
AegisLaunchpad.insuranceFund(address).recipient (#1318) lacks a zero-check on :
- (success) = recipient.call{value: address(this).balance}() (#1319)
Check that the address is not zero.

Additional information: link

AegisLaunchpad.includeInReward(address) (#1108-1119) has costly operations inside a loop:
- _excluded.pop() (#1115)
Use a local variable to hold the loop computation result.

Additional information: link

AegisLaunchpad.swap(uint256) (#1352-1369) performs a multiplication on the result of a division:
-tokensForLiquidity = contractTokenBalance.mul(_liquidityFee).div(totalFee).div(2) (#1354)
-bnbForLiquidity = acquiredBNB.mul(tokensForLiquidity).div(tokensToSell) (#1362)
Consider ordering multiplication before division.

Additional information: link

AegisLaunchpad.addLiquidity(uint256,uint256) (#1392-1409) ignores return value by pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
Ensure that all the return values of the function calls are used.

Additional information: link

AegisLaunchpad.allowance(address,address).owner (#1014) shadows:
- Ownable.owner() (#453-455) (function)
AegisLaunchpad._approve(address,address,uint256).owner (#1311) shadows:
- Ownable.owner() (#453-455) (function)
Rename the local variables that shadow another component.

Additional information: link

AegisLaunchpad.setTaxFeePromille(uint256) (#1149-1152) should emit an event for:
- _taxFee = taxFee (#1151)
AegisLaunchpad.setLiquidityFeePromille(uint256) (#1154-1157) should emit an event for:
- _liquidityFee = liquidityFee (#1156)
Emit an event for critical parameter changes.

Additional information: link

AegisLaunchpad._symbol (#909) should be constant
Ownable._previousOwner (#433) should be constant
AegisLaunchpad._name (#908) should be constant
AegisLaunchpad._decimals (#910) should be constant
Ownable._lockTime (#434) should be constant
AegisLaunchpad._routerAddress (#945) should be constant
AegisLaunchpad._tTotal (#903) should be constant
AegisLaunchpad._totalClaimed (#906) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in AegisLaunchpad.swap(uint256) (#1352-1369):
External calls:
- swapTokensForBNB(tokensToSell) (#1359)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
State variables written after the call(s):
- _InsurancePool = _InsurancePool.add(bnbForRewards) (#1365)
Reentrancy in AegisLaunchpad.insuranceFund(address) (#1318-1322):
External calls:
- (success) = recipient.call{value: address(this).balance}() (#1319)
State variables written after the call(s):
- _InsurancePool = 0 (#1321)
Reentrancy in AegisLaunchpad.transferFrom(address,address,uint256) (#1023-1034):
External calls:
- _transfer(sender,recipient,amount) (#1024)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
- BP.protect(from,to,amount) (#1327)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1024)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1025-1032)
- _allowances[owner][spender] = amount (#1314)
Reentrancy in AegisLaunchpad.swap(uint256) (#1352-1369):
External calls:
- swapTokensForBNB(tokensToSell) (#1359)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1367)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
External calls sending eth:
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1367)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1367)
- _allowances[owner][spender] = amount (#1314)
Reentrancy in AegisLaunchpad._transfer(address,address,uint256) (#1324-1350):
External calls:
- BP.protect(from,to,amount) (#1327)
- swap(contractTokenBalance) (#1342)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
External calls sending eth:
- swap(contractTokenBalance) (#1342)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
State variables written after the call(s):
- swap(contractTokenBalance) (#1342)
- _allowances[owner][spender] = amount (#1314)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _previousInsuranceFee = _insuranceFee (#1295)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _previousLiquidityFee = _liquidityFee (#1294)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _previousTaxFee = _taxFee (#1293)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1217)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- _taxFee = _previousTaxFee (#1302)
- _taxFee = 0 (#1296)
- _taxFee = oldTaxFee (#1431)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AegisLaunchpad.swap(uint256) (#1352-1369):
External calls:
- swapTokensForBNB(tokensToSell) (#1359)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1367)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
External calls sending eth:
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1367)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1315)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1367)
- Log(external call failed) (#1406)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1367)
- SwapAndLiquify(tokensForLiquidity,bnbForLiquidity) (#1368)
Reentrancy in AegisLaunchpad.addLiquidity(uint256,uint256) (#1392-1409):
External calls:
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
Event emitted after the call(s):
- Log(external call failed) (#1406)
Reentrancy in AegisLaunchpad.swapTokensForBNB(uint256) (#1371-1390):
External calls:
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
Event emitted after the call(s):
- Log(external call failed) (#1388)
Reentrancy in AegisLaunchpad._transfer(address,address,uint256) (#1324-1350):
External calls:
- BP.protect(from,to,amount) (#1327)
- swap(contractTokenBalance) (#1342)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
External calls sending eth:
- swap(contractTokenBalance) (#1342)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1315)
- swap(contractTokenBalance) (#1342)
- Log(external call failed) (#1406)
- swap(contractTokenBalance) (#1342)
- Log(external call failed) (#1388)
- swap(contractTokenBalance) (#1342)
- SwapAndLiquify(tokensForLiquidity,bnbForLiquidity) (#1368)
- swap(contractTokenBalance) (#1342)
- Transfer(sender,recipient,tTransferAmount) (#1449)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- Transfer(sender,recipient,tTransferAmount) (#1485)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- Transfer(sender,recipient,tTransferAmount) (#1467)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
- Transfer(sender,recipient,tTransferAmount) (#1137)
- _tokenTransfer(from,to,amount,takeFee) (#1349)
Reentrancy in AegisLaunchpad.transferFrom(address,address,uint256) (#1023-1034):
External calls:
- _transfer(sender,recipient,amount) (#1024)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
- BP.protect(from,to,amount) (#1327)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1376-1389)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1024)
- pancakeswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,claimer(),block.timestamp) (#1394-1407)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1315)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1025-1032)
Apply the check-effects-interactions pattern.

Additional information: link

AegisLaunchpad.multiBlacklist(address[]) (#1159-1165) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= blacklistTime,BLACKLISTTIME: INVALID) (#1160)
Claimable.unlockclaimer() (#569-577) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTimeclaimer,Contract is locked until 7 days) (#574)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#285-296) uses assembly
- INLINE ASM (#292-294)
Address._functionCallWithValue(address,bytes,uint256,string) (#394-415) uses assembly
- INLINE ASM (#407-410)
Do not use evm assembly.

Additional information: link

AegisLaunchpad.setBotProtectionDisableForever() (#1194-1197) compares to a boolean constant:
-require(bool)(BPDisabledForever == false) (#1195)
Remove the equality to the boolean constant.

Additional information: link

Address.sendValue(address,uint256) (#314-326) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#371-378) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#239-242) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#386-392) is never used and should be removed
Context._msgData() (#252-255) is never used and should be removed
SafeMath.mod(uint256,uint256) (#223-225) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#394-415) is never used and should be removed
AegisLaunchpad.calculateLiquidityFee(uint256) (#1280-1282) is never used and should be removed
Address.isContract(address) (#285-296) is never used and should be removed
Address.functionCall(address,bytes,string) (#356-358) is never used and should be removed
Address.functionCall(address,bytes) (#346-348) is never used and should be removed
Remove unused functions.

Additional information: link

AegisLaunchpad._previousInsuranceFee (#919) is set pre-construction with a non-constant function or state variable:
- _insuranceFee
AegisLaunchpad._previousTaxFee (#913) is set pre-construction with a non-constant function or state variable:
- _taxFee
AegisLaunchpad._rTotal (#904) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
AegisLaunchpad._previousLiquidityFee (#916) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#314-326):
- (success) = recipient.call{value: amount}() (#321)
Low level call in AegisLaunchpad.insuranceFund(address) (#1318-1322):
- (success) = recipient.call{value: address(this).balance}() (#1319)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#394-415):
- (success,returndata) = target.call{value: weiValue}(data) (#397-398)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable AegisLaunchpad._routerAddress (#945) is not in mixedCase
Variable AegisLaunchpad._taxFee (#912) is not in mixedCase
Parameter AegisLaunchpad.calculateTaxFee(uint256)._amount (#1276) is not in mixedCase
Parameter AegisLaunchpad.calculateLiquidityFee(uint256)._amount (#1280) is not in mixedCase
Parameter AegisLaunchpad.setWhaleProtectionEnabled(bool)._enabled (#1199) is not in mixedCase
Variable AegisLaunchpad._numTokensSellToAddToLiquidity (#920) is not in mixedCase
Variable AegisLaunchpad._InsurancePool (#922) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#647) is not in mixedCase
Variable AegisLaunchpad._insuranceFee (#918) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#661) is not in mixedCase
Event ClaimableclaimerTransferred(address,address) (#507-510) is not in CapWords
Parameter AegisLaunchpad.setBpEnabled(bool)._enabled (#1190) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#645) is not in mixedCase
Parameter AegisLaunchpad.calculateLiquidityAndRewardsFee(uint256)._amount (#1284) is not in mixedCase
Variable AegisLaunchpad.BP (#947) is not in mixedCase
Parameter AegisLaunchpad.setSwapAndLiquifyEnabled(bool)._enabled (#1178) is not in mixedCase
Variable AegisLaunchpad._liquidityFee (#915) is not in mixedCase
Variable AegisLaunchpad.BPDisabledForever (#949) is not in mixedCase
Function IUniswapV2Router01.WETH() (#697) is not in mixedCase
Parameter AegisLaunchpad.setBPAddrss(address)._bp (#1185) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#253)" inContext (#246-257)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable AegisLaunchpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tTransferAmount (#1440)
Variable AegisLaunchpad._transferStandard(address,address,uint256).rTransferAmount (#1438) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1126)
Variable AegisLaunchpad.reflectionFromToken(uint256,bool).rTransferAmount (#1084) is too similar to AegisLaunchpad._getTValues(uint256).tTransferAmount (#1236)
Variable AegisLaunchpad.reflectionFromToken(uint256,bool).rTransferAmount (#1084) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tTransferAmount (#1457)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rLiquidityAndRewards (#1243) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tLiquidityAndRewards (#1128)
Variable AegisLaunchpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1124) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tTransferAmount (#1457)
Variable AegisLaunchpad._transferToExcluded(address,address,uint256).rTransferAmount (#1455) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1126)
Variable AegisLaunchpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1124) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1126)
Variable AegisLaunchpad._transferStandard(address,address,uint256).rTransferAmount (#1438) is too similar to AegisLaunchpad._getTValues(uint256).tTransferAmount (#1236)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rLiquidityAndRewards (#1243) is too similar to AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).tLiquidityAndRewards (#1240)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rLiquidityAndRewards (#1243) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tLiquidityAndRewards (#1442)
Variable AegisLaunchpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1124) is too similar to AegisLaunchpad._getTValues(uint256).tTransferAmount (#1236)
Variable AegisLaunchpad.reflectionFromToken(uint256,bool).rTransferAmount (#1084) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1126)
Variable AegisLaunchpad._takeLiquidityAndRewards(uint256).rLiquidityAndRewards (#1270) is too similar to AegisLaunchpad._takeLiquidityAndRewards(uint256).tLiquidityAndRewards (#1268)
Variable AegisLaunchpad._transferToExcluded(address,address,uint256).rTransferAmount (#1455) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tTransferAmount (#1440)
Variable AegisLaunchpad._getValues(uint256).rTransferAmount (#1222) is too similar to AegisLaunchpad._getTValues(uint256).tTransferAmount (#1236)
Variable AegisLaunchpad.reflectionFromToken(uint256,bool).rTransferAmount (#1084) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tTransferAmount (#1440)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1244) is too similar to AegisLaunchpad._getValues(uint256).tTransferAmount (#1221)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rLiquidityAndRewards (#1243) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tLiquidityAndRewards (#1459)
Variable AegisLaunchpad._transferToExcluded(address,address,uint256).rTransferAmount (#1455) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tTransferAmount (#1457)
Variable AegisLaunchpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable AegisLaunchpad._getValues(uint256).rTransferAmount (#1222) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable AegisLaunchpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1124) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tTransferAmount (#1440)
Variable AegisLaunchpad._getValues(uint256).rTransferAmount (#1222) is too similar to AegisLaunchpad._getValues(uint256).tTransferAmount (#1221)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1244) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tTransferAmount (#1457)
Variable AegisLaunchpad._getValues(uint256).rTransferAmount (#1222) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tTransferAmount (#1440)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1244) is too similar to AegisLaunchpad._getTValues(uint256).tTransferAmount (#1236)
Variable AegisLaunchpad._transferStandard(address,address,uint256).rTransferAmount (#1438) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable AegisLaunchpad.reflectionFromToken(uint256,bool).rTransferAmount (#1084) is too similar to AegisLaunchpad._getValues(uint256).tTransferAmount (#1221)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rLiquidityAndRewards (#1243) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tLiquidityAndRewards (#1477)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rLiquidityAndRewards (#1243) is too similar to AegisLaunchpad._getValues(uint256).tLiquidityAndRewards (#1221)
Variable AegisLaunchpad._takeLiquidityAndRewards(uint256).rLiquidityAndRewards (#1270) is too similar to AegisLaunchpad._getValues(uint256).tLiquidityAndRewards (#1221)
Variable AegisLaunchpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tTransferAmount (#1457)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1244) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1126)
Variable AegisLaunchpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to AegisLaunchpad._getTValues(uint256).tTransferAmount (#1236)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rLiquidityAndRewards (#1243) is too similar to AegisLaunchpad._takeLiquidityAndRewards(uint256).tLiquidityAndRewards (#1268)
Variable AegisLaunchpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1126)
Variable AegisLaunchpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1124) is too similar to AegisLaunchpad._getValues(uint256).tTransferAmount (#1221)
Variable AegisLaunchpad._transferStandard(address,address,uint256).rTransferAmount (#1438) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tTransferAmount (#1440)
Variable AegisLaunchpad._transferStandard(address,address,uint256).rTransferAmount (#1438) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tTransferAmount (#1457)
Variable AegisLaunchpad._transferToExcluded(address,address,uint256).rTransferAmount (#1455) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#702) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#703)
Variable AegisLaunchpad._transferToExcluded(address,address,uint256).rTransferAmount (#1455) is too similar to AegisLaunchpad._getTValues(uint256).tTransferAmount (#1236)
Variable AegisLaunchpad._getValues(uint256).rTransferAmount (#1222) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1126)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1244) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable AegisLaunchpad._takeLiquidityAndRewards(uint256).rLiquidityAndRewards (#1270) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tLiquidityAndRewards (#1477)
Variable AegisLaunchpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to AegisLaunchpad._getValues(uint256).tTransferAmount (#1221)
Variable AegisLaunchpad._transferStandard(address,address,uint256).rTransferAmount (#1438) is too similar to AegisLaunchpad._getValues(uint256).tTransferAmount (#1221)
Variable AegisLaunchpad._takeLiquidityAndRewards(uint256).rLiquidityAndRewards (#1270) is too similar to AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).tLiquidityAndRewards (#1240)
Variable AegisLaunchpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1124) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rLiquidityAndRewards (#1243) is too similar to AegisLaunchpad._getTValues(uint256).tLiquidityAndRewards (#1235)
Variable AegisLaunchpad._getValues(uint256).rTransferAmount (#1222) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tTransferAmount (#1457)
Variable AegisLaunchpad._transferToExcluded(address,address,uint256).rTransferAmount (#1455) is too similar to AegisLaunchpad._getValues(uint256).tTransferAmount (#1221)
Variable AegisLaunchpad.reflectionFromToken(uint256,bool).rTransferAmount (#1084) is too similar to AegisLaunchpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable AegisLaunchpad._takeLiquidityAndRewards(uint256).rLiquidityAndRewards (#1270) is too similar to AegisLaunchpad._transferBothExcluded(address,address,uint256).tLiquidityAndRewards (#1128)
Variable AegisLaunchpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1244) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tTransferAmount (#1440)
Variable AegisLaunchpad._takeLiquidityAndRewards(uint256).rLiquidityAndRewards (#1270) is too similar to AegisLaunchpad._getTValues(uint256).tLiquidityAndRewards (#1235)
Variable AegisLaunchpad._takeLiquidityAndRewards(uint256).rLiquidityAndRewards (#1270) is too similar to AegisLaunchpad._transferToExcluded(address,address,uint256).tLiquidityAndRewards (#1459)
Variable AegisLaunchpad._takeLiquidityAndRewards(uint256).rLiquidityAndRewards (#1270) is too similar to AegisLaunchpad._transferStandard(address,address,uint256).tLiquidityAndRewards (#1442)
Prevent variables from having similar names.

Additional information: link

AegisLaunchpad.rewards(address) (#1492-1498) uses literals with too many digits:
- total = _tTotal.sub(balanceOf(0x000000000000000000000000000000000000dEaD)) (#1493)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#433) is never used in AegisLaunchpad (#899-1512)
Remove unused state variables.

Additional information: link

totalFees() should be declared external:
- AegisLaunchpad.totalFees() (#1062-1064)
totalRewards() should be declared external:
- AegisLaunchpad.totalRewards() (#1488-1490)
excludeFromFee(address) should be declared external:
- AegisLaunchpad.excludeFromFee(address) (#1140-1142)
decimals() should be declared external:
- AegisLaunchpad.decimals() (#995-997)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#472-475)
totalSupply() should be declared external:
- AegisLaunchpad.totalSupply() (#999-1001)
decreaseAllowance(address,uint256) should be declared external:
- AegisLaunchpad.decreaseAllowance(address,uint256) (#1045-1055)
increaseAllowance(address,uint256) should be declared external:
- AegisLaunchpad.increaseAllowance(address,uint256) (#1036-1043)
isExcludedFromFee(address) should be declared external:
- AegisLaunchpad.isExcludedFromFee(address) (#1307-1309)
allowance(address,address) should be declared external:
- AegisLaunchpad.allowance(address,address) (#1014-1016)
lockclaimer(uint256) should be declared external:
- Claimable.lockclaimer(uint256) (#562-567)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AegisLaunchpad.setSwapAndLiquifyEnabled(bool) (#1178-1181)
transferFrom(address,address,uint256) should be declared external:
- AegisLaunchpad.transferFrom(address,address,uint256) (#1023-1034)
totalClaimed() should be declared external:
- AegisLaunchpad.totalClaimed() (#1507-1509)
transfer(address,uint256) should be declared external:
- AegisLaunchpad.transfer(address,uint256) (#1009-1012)
symbol() should be declared external:
- AegisLaunchpad.symbol() (#991-993)
rewards(address) should be declared external:
- AegisLaunchpad.rewards(address) (#1492-1498)
insuranceFund(address) should be declared external:
- AegisLaunchpad.insuranceFund(address) (#1318-1322)
claimed(address) should be declared external:
- AegisLaunchpad.claimed(address) (#1500-1502)
renounceclaimership() should be declared external:
- Claimable.renounceclaimership() (#540-543)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#481-488)
reflectionFromToken(uint256,bool) should be declared external:
- AegisLaunchpad.reflectionFromToken(uint256,bool) (#1078-1087)
setPairAddress(address) should be declared external:
- AegisLaunchpad.setPairAddress(address) (#1206-1209)
excludeFromReward(address) should be declared external:
- AegisLaunchpad.excludeFromReward(address) (#1098-1106)
unlockclaimer() should be declared external:
- Claimable.unlockclaimer() (#569-577)
getUnlockTimeclaimer() should be declared external:
- Claimable.getUnlockTimeclaimer() (#558-560)
deliver(uint256) should be declared external:
- AegisLaunchpad.deliver(uint256) (#1066-1076)
name() should be declared external:
- AegisLaunchpad.name() (#987-989)
setWhaleProtectionEnabled(bool) should be declared external:
- AegisLaunchpad.setWhaleProtectionEnabled(bool) (#1199-1202)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#490-492)
transferclaimership(address) should be declared external:
- Claimable.transferclaimership(address) (#549-556)
approve(address,uint256) should be declared external:
- AegisLaunchpad.approve(address,uint256) (#1018-1021)
isExcludedFromReward(address) should be declared external:
- AegisLaunchpad.isExcludedFromReward(address) (#1057-1059)
includeInFee(address) should be declared external:
- AegisLaunchpad.includeInFee(address) (#1144-1146)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 2% buy tax and 1% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find PancakeSwap trading pair to compute volume.


Last post in Twitter was more than 180 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has relatively low CoinGecko rank

Price for AGSPAD

News for AGSPAD