SEEK TOKEN Token Logo

SEEK2 [SEEK] Token

ALERT: honeypot scam

About SEEK2

Listings

Not Found
Token 2 years
white paper

Help us to rid the space of fraud and corruption of any type. Worlds first project to offer a “Bounty” for
Information that leads to stopping scammers RugSeekers.online
@SEEK_Token

Social

Laser Scorebeta Last Audit: 22 July 2022

report
Token seems to be a scam (type: honeypot scam).


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

Reentrancy in SEEK2._claimBNBTo(address,address) (SEEK.sol#205-216):
External calls:
- (sent) = recipient.call{value: (totalRewards)}() (SEEK.sol#212)
State variables written after the call(s):
- _isWithdrawing = false (SEEK.sol#214)
Reentrancy in SEEK2._transfer(address,address,uint256) (SEEK.sol#101-123):
External calls:
- _swapContractTokens(swapThreshold,false) (SEEK.sol#114)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (SEEK.sol#278-285)
External calls sending eth:
- _swapContractTokens(swapThreshold,false) (SEEK.sol#114)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
State variables written after the call(s):
- _sellTokens(sender,recipient,amount) (SEEK.sol#115)
- _balances[account] = newBalance (SEEK.sol#157)
- _sellTokens(sender,recipient,amount) (SEEK.sol#115)
- _holders[account].rewardsPaid = _profitPerToken * _balances[account] (SEEK.sol#193)
- _holders[account].rewardsToBePaid += reward (SEEK.sol#195)
- _sellTokens(sender,recipient,amount) (SEEK.sol#115)
- _totalTokensHeld -= amount (SEEK.sol#147)
Reentrancy in SEEK2.claimAnyToken(address) (SEEK.sol#465-474):
External calls:
- _swapBNBForTokens(msg.sender,tokenAddress,amountWei) (SEEK.sol#469)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountWei}(0,path,recipient,block.timestamp) (SEEK.sol#293-297)
State variables written after the call(s):
- _deductRewards(msg.sender,amountWei) (SEEK.sol#472)
- _holders[account].rewardsPaid = _profitPerToken * _balances[account] (SEEK.sol#193)
- _holders[account].rewardsToBePaid += reward (SEEK.sol#195)
- _holders[account].rewardsToBePaid -= amountWei (SEEK.sol#189)
Reentrancy in SEEK2.ownerWithdrawBountyBNB(uint256) (SEEK.sol#446-451):
External calls:
- (success) = msg.sender.call{value: (amountWei)}() (SEEK.sol#448)
State variables written after the call(s):
- _totalBountyBNB -= amountWei (SEEK.sol#450)
Reentrancy in SEEK2.ownerWithdrawMarketingBNB(uint256) (SEEK.sol#434-439):
External calls:
- (success) = msg.sender.call{value: (amountWei)}() (SEEK.sol#436)
State variables written after the call(s):
- _totalMarketingBNB -= amountWei (SEEK.sol#438)
Reentrancy in SEEK2.ownerWithdrawOperationsBNB(uint256) (SEEK.sol#440-445):
External calls:
- (success) = msg.sender.call{value: (amountWei)}() (SEEK.sol#442)
State variables written after the call(s):
- _totalOperationsBNB -= amountWei (SEEK.sol#444)
Reentrancy in SEEK2.transferFrom(address,address,uint256) (SEEK.sol#519-526):
External calls:
- _transfer(sender,recipient,amount) (SEEK.sol#521)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (SEEK.sol#278-285)
- (sent) = recipient.call{value: (totalRewards)}() (SEEK.sol#212)
External calls sending eth:
- _transfer(sender,recipient,amount) (SEEK.sol#521)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
- (sent) = recipient.call{value: (totalRewards)}() (SEEK.sol#212)
State variables written after the call(s):
- _approve(sender,msg.sender,allowance_ - amount) (SEEK.sol#523)
- _allowances[owner][spender] = amount (SEEK.sol#506)
Apply the check-effects-interactions pattern.

Additional information: link

SEEK2.ownerWithdrawStrandedToken(address) (SEEK.sol#429-433) ignores return value by token.transfer(msg.sender,token.balanceOf(address(this))) (SEEK.sol#432)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in SEEK2._addLiquidity(uint256,uint256) (SEEK.sol#242-256):
External calls:
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
State variables written after the call(s):
- _addingLiquidity = false (SEEK.sol#255)
Reentrancy in SEEK2._removeLiquidityPercent(uint8) (SEEK.sol#257-272):
External calls:
- lpToken.approve(address(_pancakeRouter),amount) (SEEK.sol#260)
State variables written after the call(s):
- _removingLiquidity = true (SEEK.sol#261)
Reentrancy in SEEK2._removeLiquidityPercent(uint8) (SEEK.sol#257-272):
External calls:
- lpToken.approve(address(_pancakeRouter),amount) (SEEK.sol#260)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (SEEK.sol#262-270)
State variables written after the call(s):
- _removingLiquidity = false (SEEK.sol#271)
Reentrancy in SEEK2._swapBNBForTokens(address,address,uint256) (SEEK.sol#287-299):
External calls:
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountWei}(0,path,recipient,block.timestamp) (SEEK.sol#293-297)
State variables written after the call(s):
- _isWithdrawing = false (SEEK.sol#298)
Reentrancy in SEEK2._swapContractTokens(uint16,bool) (SEEK.sol#220-241):
External calls:
- _swapTokensForBNB(totalSwap) (SEEK.sol#235)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (SEEK.sol#278-285)
- _addLiquidity(liquidityTokens,LPBNB) (SEEK.sol#238)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
External calls sending eth:
- _addLiquidity(liquidityTokens,LPBNB) (SEEK.sol#238)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
State variables written after the call(s):
- _addLiquidity(liquidityTokens,LPBNB) (SEEK.sol#238)
- _addingLiquidity = true (SEEK.sol#244)
- _addingLiquidity = false (SEEK.sol#255)
- _distributeBNB(remainingBNB) (SEEK.sol#240)
- _profitPerToken += (rewards * (2 ** 64)) / _totalTokensHeld (SEEK.sol#177)
- _distributeBNB(remainingBNB) (SEEK.sol#240)
- _totalBountyBNB += bounty (SEEK.sol#175)
- _distributeBNB(remainingBNB) (SEEK.sol#240)
- _totalMarketingBNB += (marketing + rewards + operations + bounty) (SEEK.sol#171)
- _totalMarketingBNB += marketing (SEEK.sol#173)
- _distributeBNB(remainingBNB) (SEEK.sol#240)
- _totalOperationsBNB += operations (SEEK.sol#174)
- _distributeBNB(remainingBNB) (SEEK.sol#240)
- _totalRewardsBNB += rewards (SEEK.sol#176)
Reentrancy in SEEK2.claimAnyToken(address) (SEEK.sol#465-474):
External calls:
- _swapBNBForTokens(msg.sender,tokenAddress,amountWei) (SEEK.sol#469)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountWei}(0,path,recipient,block.timestamp) (SEEK.sol#293-297)
State variables written after the call(s):
- _totalRewardBNBPaid += amountWei (SEEK.sol#473)
Reentrancy in SEEK2.constructor() (SEEK.sol#88-97):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (SEEK.sol#90)
State variables written after the call(s):
- _approve(address(this),address(_pancakeRouter),type()(uint256).max) (SEEK.sol#91)
- _allowances[owner][spender] = amount (SEEK.sol#506)
- _automatedMarketMakers[_pancakePairAddress] = true (SEEK.sol#92)
- _updateBalance(address(this),_initialSupply) (SEEK.sol#95)
- _balances[account] = newBalance (SEEK.sol#157)
- _holders[msg.sender].excludeFromFees = _holders[address(this)].excludeFromFees = true (SEEK.sol#93)
- _holders[address(this)].excludeFromRewards = _holders[_pancakePairAddress].excludeFromRewards = _holders[burnWallet].excludeFromRewards = true (SEEK.sol#94)
- _updateBalance(address(this),_initialSupply) (SEEK.sol#95)
- _holders[account].rewardsPaid = _profitPerToken * _balances[account] (SEEK.sol#193)
- _holders[account].rewardsToBePaid += reward (SEEK.sol#195)
Reentrancy in SEEK2.ownerReleaseLiquidity() (SEEK.sol#344-352):
External calls:
- _removeLiquidityPercent(100) (SEEK.sol#349)
- lpToken.approve(address(_pancakeRouter),amount) (SEEK.sol#260)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (SEEK.sol#262-270)
State variables written after the call(s):
- _totalMarketingBNB += newBNB (SEEK.sol#351)
Reentrancy in SEEK2.ownerRemoveLiquidityPercent(uint8,bool) (SEEK.sol#327-342):
External calls:
- _removeLiquidityPercent(percent) (SEEK.sol#335)
- lpToken.approve(address(_pancakeRouter),amount) (SEEK.sol#260)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (SEEK.sol#262-270)
State variables written after the call(s):
- _distributeBNB(newBNB) (SEEK.sol#338)
- _profitPerToken += (rewards * (2 ** 64)) / _totalTokensHeld (SEEK.sol#177)
- _distributeBNB(newBNB) (SEEK.sol#338)
- _totalBountyBNB += bounty (SEEK.sol#175)
- _distributeBNB(newBNB) (SEEK.sol#338)
- _totalMarketingBNB += (marketing + rewards + operations + bounty) (SEEK.sol#171)
- _totalMarketingBNB += marketing (SEEK.sol#173)
- _totalMarketingBNB += newBNB (SEEK.sol#340)
- _distributeBNB(newBNB) (SEEK.sol#338)
- _totalOperationsBNB += operations (SEEK.sol#174)
- _distributeBNB(newBNB) (SEEK.sol#338)
- _totalRewardsBNB += rewards (SEEK.sol#176)
Apply the check-effects-interactions pattern.

Additional information: link

SEEK2._sellTokens(address,address,uint256) (SEEK.sol#135-148) performs a multiplication on the result of a division:
-taxedTokens = amount * _sellTax * 100 / 10000 (SEEK.sol#138)
-burnTokens = taxedTokens * _burnTax * 100 / 10000 (SEEK.sol#140)
SEEK2._swapContractTokens(uint16,bool) (SEEK.sol#220-241) performs a multiplication on the result of a division:
-toSwap = _swapThreshold * _balances[_pancakePairAddress] / 1000 (SEEK.sol#222)
-totalLiquidityTokens = toSwap * _liquidityTax / 100 (SEEK.sol#229)
Consider ordering multiplication before division.

Additional information: link

SEEK2._addLiquidity(uint256,uint256) (SEEK.sol#242-256) ignores return value by _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
SEEK2._removeLiquidityPercent(uint8) (SEEK.sol#257-272) ignores return value by lpToken.approve(address(_pancakeRouter),amount) (SEEK.sol#260)
SEEK2._removeLiquidityPercent(uint8) (SEEK.sol#257-272) ignores return value by _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (SEEK.sol#262-270)
Ensure that all the return values of the function calls are used.

Additional information: link

SEEK2._approve(address,address,uint256).owner (SEEK.sol#504) shadows:
- Ownable.owner() (Libraries.sol#54-56) (function)
Rename the local variables that shadow another component.

Additional information: link

SEEK2.ownerWithdrawMarketingBNB(uint256) (SEEK.sol#434-439) should emit an event for:
- _totalMarketingBNB -= amountWei (SEEK.sol#438)
SEEK2.ownerWithdrawOperationsBNB(uint256) (SEEK.sol#440-445) should emit an event for:
- _totalOperationsBNB -= amountWei (SEEK.sol#444)
SEEK2.ownerWithdrawBountyBNB(uint256) (SEEK.sol#446-451) should emit an event for:
- _totalBountyBNB -= amountWei (SEEK.sol#450)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in SEEK2._claimBNBTo(address,address) (SEEK.sol#205-216):
External calls:
- (sent) = recipient.call{value: (totalRewards)}() (SEEK.sol#212)
Event emitted after the call(s):
- ClaimBNBTo(from,recipient,totalRewards) (SEEK.sol#215)
Reentrancy in SEEK2._transfer(address,address,uint256) (SEEK.sol#101-123):
External calls:
- _swapContractTokens(swapThreshold,false) (SEEK.sol#114)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (SEEK.sol#278-285)
External calls sending eth:
- _swapContractTokens(swapThreshold,false) (SEEK.sol#114)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
Event emitted after the call(s):
- Transfer(sender,recipient,newAmount) (SEEK.sol#146)
- _sellTokens(sender,recipient,amount) (SEEK.sol#115)
Reentrancy in SEEK2.claimPromoToken() (SEEK.sol#475-481):
External calls:
- claimAnyToken(promoToken) (SEEK.sol#478)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountWei}(0,path,recipient,block.timestamp) (SEEK.sol#293-297)
Event emitted after the call(s):
- ClaimPromoToken(msg.sender,newBalance) (SEEK.sol#480)
Reentrancy in SEEK2.compound() (SEEK.sol#482-491):
External calls:
- claimAnyToken(address(this)) (SEEK.sol#488)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountWei}(0,path,recipient,block.timestamp) (SEEK.sol#293-297)
Event emitted after the call(s):
- Compound(msg.sender,newBalance) (SEEK.sol#490)
Reentrancy in SEEK2.constructor() (SEEK.sol#88-97):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (SEEK.sol#90)
Event emitted after the call(s):
- Approval(owner,spender,amount) (SEEK.sol#507)
- _approve(address(this),address(_pancakeRouter),type()(uint256).max) (SEEK.sol#91)
- Transfer(address(0),address(this),_initialSupply) (SEEK.sol#96)
Reentrancy in SEEK2.ownerCreateLP() (SEEK.sol#303-310):
External calls:
- _addLiquidity(contractBalance,msg.value) (SEEK.sol#307)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
Event emitted after the call(s):
- OwnerCreateLP(contractBalance,msg.value) (SEEK.sol#309)
Reentrancy in SEEK2.ownerRemoveLiquidityPercent(uint8,bool) (SEEK.sol#327-342):
External calls:
- _removeLiquidityPercent(percent) (SEEK.sol#335)
- lpToken.approve(address(_pancakeRouter),amount) (SEEK.sol#260)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (SEEK.sol#262-270)
Event emitted after the call(s):
- TeamRemoveLiquidity(percent,rewardBoost) (SEEK.sol#341)
Reentrancy in SEEK2.ownerTriggerSwapContractTokens(uint16,bool) (SEEK.sol#390-394):
External calls:
- _swapContractTokens(_swapThreshold,ignoreLimits) (SEEK.sol#392)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (SEEK.sol#278-285)
External calls sending eth:
- _swapContractTokens(_swapThreshold,ignoreLimits) (SEEK.sol#392)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
Event emitted after the call(s):
- TeamSwapContractTokens(swapThreshold,ignoreLimits) (SEEK.sol#393)
Reentrancy in SEEK2.transferFrom(address,address,uint256) (SEEK.sol#519-526):
External calls:
- _transfer(sender,recipient,amount) (SEEK.sol#521)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (SEEK.sol#278-285)
- (sent) = recipient.call{value: (totalRewards)}() (SEEK.sol#212)
External calls sending eth:
- _transfer(sender,recipient,amount) (SEEK.sol#521)
- _pancakeRouter.addLiquidityETH{value: amountBNB}(address(this),amountTokens,0,0,address(this),block.timestamp) (SEEK.sol#245-254)
- (sent) = recipient.call{value: (totalRewards)}() (SEEK.sol#212)
Event emitted after the call(s):
- Approval(owner,spender,amount) (SEEK.sol#507)
- _approve(sender,msg.sender,allowance_ - amount) (SEEK.sol#523)
- Transfer(sender,recipient,amount) (SEEK.sol#524)
Apply the check-effects-interactions pattern.

Additional information: link

SEEK2.ownerRemoveLiquidityPercent(uint8,bool) (SEEK.sol#327-342) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= _liquidityUnlockTime) (SEEK.sol#329)
SEEK2.ownerReleaseLiquidity() (SEEK.sol#344-352) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= _liquidityUnlockTime + 2592000) (SEEK.sol#346)
SEEK2.liquidityUnlockTimeLeft() (SEEK.sol#574-576) uses timestamp for comparisons
Dangerous comparisons:
- _liquidityUnlockTime > block.timestamp (SEEK.sol#575)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (Libraries.sol#110-119) uses assembly
- INLINE ASM (Libraries.sol#117)
Address._verifyCallResult(bool,bytes,string) (Libraries.sol#255-272) uses assembly
- INLINE ASM (Libraries.sol#264-267)
Do not use evm assembly.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (Libraries.sol#255-272) is never used and should be removed
Address.functionCall(address,bytes) (Libraries.sol#163-165) is never used and should be removed
Address.functionCall(address,bytes,string) (Libraries.sol#173-175) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (Libraries.sol#188-190) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (Libraries.sol#198-205) is never used and should be removed
Address.functionDelegateCall(address,bytes) (Libraries.sol#237-239) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (Libraries.sol#247-253) is never used and should be removed
Address.functionStaticCall(address,bytes) (Libraries.sol#213-215) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (Libraries.sol#223-229) is never used and should be removed
Address.isContract(address) (Libraries.sol#110-119) is never used and should be removed
Address.sendValue(address,uint256) (Libraries.sol#137-143) is never used and should be removed
EnumerableSet._add(EnumerableSet.Set,bytes32) (Libraries.sol#445-455) is never used and should be removed
EnumerableSet._at(EnumerableSet.Set,uint256) (Libraries.sol#521-524) is never used and should be removed
EnumerableSet._contains(EnumerableSet.Set,bytes32) (Libraries.sol#500-502) is never used and should be removed
EnumerableSet._length(EnumerableSet.Set) (Libraries.sol#507-509) is never used and should be removed
EnumerableSet._remove(EnumerableSet.Set,bytes32) (Libraries.sol#463-495) is never used and should be removed
EnumerableSet.add(EnumerableSet.AddressSet,address) (Libraries.sol#592-594) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (Libraries.sol#538-540) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (Libraries.sol#646-648) is never used and should be removed
EnumerableSet.at(EnumerableSet.AddressSet,uint256) (Libraries.sol#630-632) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (Libraries.sol#576-578) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (Libraries.sol#684-686) is never used and should be removed
EnumerableSet.contains(EnumerableSet.AddressSet,address) (Libraries.sol#609-611) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (Libraries.sol#555-557) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (Libraries.sol#663-665) is never used and should be removed
EnumerableSet.length(EnumerableSet.AddressSet) (Libraries.sol#616-618) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (Libraries.sol#562-564) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (Libraries.sol#670-672) is never used and should be removed
EnumerableSet.remove(EnumerableSet.AddressSet,address) (Libraries.sol#602-604) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (Libraries.sol#548-550) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (Libraries.sol#656-658) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (Libraries.sol#137-143):
- (success) = recipient.call{value: amount}() (Libraries.sol#141)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (Libraries.sol#198-205):
- (success,returndata) = target.call{value: value}(data) (Libraries.sol#203)
Low level call in Address.functionStaticCall(address,bytes,string) (Libraries.sol#223-229):
- (success,returndata) = target.staticcall(data) (Libraries.sol#227)
Low level call in Address.functionDelegateCall(address,bytes,string) (Libraries.sol#247-253):
- (success,returndata) = target.delegatecall(data) (Libraries.sol#251)
Low level call in SEEK2._claimBNBTo(address,address) (SEEK.sol#205-216):
- (sent) = recipient.call{value: (totalRewards)}() (SEEK.sol#212)
Low level call in SEEK2.withdrawBNB() (SEEK.sol#322-326):
- (success) = msg.sender.call{value: (address(this).balance)}() (SEEK.sol#324)
Low level call in SEEK2.ownerWithdrawMarketingBNB(uint256) (SEEK.sol#434-439):
- (success) = msg.sender.call{value: (amountWei)}() (SEEK.sol#436)
Low level call in SEEK2.ownerWithdrawOperationsBNB(uint256) (SEEK.sol#440-445):
- (success) = msg.sender.call{value: (amountWei)}() (SEEK.sol#442)
Low level call in SEEK2.ownerWithdrawBountyBNB(uint256) (SEEK.sol#446-451):
- (success) = msg.sender.call{value: (amountWei)}() (SEEK.sol#448)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeERC20.DOMAIN_SEPARATOR() (Libraries.sol#31) is not in mixedCase
Function IPancakeERC20.PERMIT_TYPEHASH() (Libraries.sol#32) is not in mixedCase
Function IPancakeRouter01.WETH() (Libraries.sol#372) is not in mixedCase
Parameter SEEK2.ownerSetPromoToken(address,uint256,bool)._promoToken (SEEK.sol#357) is not in mixedCase
Parameter SEEK2.ownerTriggerSwapContractTokens(uint16,bool)._swapThreshold (SEEK.sol#390) is not in mixedCase
Parameter SEEK2.ownerUpdateAMM(address,bool).AMMAddress (SEEK.sol#400) is not in mixedCase
Parameter SEEK2.ownerUpdateSwapThreshold(uint16)._swapThreshold (SEEK.sol#406) is not in mixedCase
Constant SEEK2._initialSupply (SEEK.sol#11) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SEEK2._maxTax (SEEK.sol#37) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SEEK2._pancakeRouterAddress (SEEK.sol#49) is not in mixedCase
Variable SEEK2._pancakePairAddress (SEEK.sol#50) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (Libraries.sol#291) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (Libraries.sol#292)
Prevent variables from having similar names.

Additional information: link

SEEK2.slitherConstructorVariables() (SEEK.sol#10-599) uses literals with too many digits:
- burnWallet = 0x000000000000000000000000000000000000dEaD (SEEK.sol#51)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SEEK2._fixedLPLockTime (SEEK.sol#25) should be constant
SEEK2._pancakeRouterAddress (SEEK.sol#49) should be constant
SEEK2.burnWallet (SEEK.sol#51) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Libraries.sol#73-76)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Libraries.sol#82-86)
ownerCreateLP() should be declared external:
- SEEK2.ownerCreateLP() (SEEK.sol#303-310)
ownerWithdrawAirDrop() should be declared external:
- SEEK2.ownerWithdrawAirDrop() (SEEK.sol#311-314)
ownerEnableTrading(bool) should be declared external:
- SEEK2.ownerEnableTrading(bool) (SEEK.sol#315-317)
ownerLockLP() should be declared external:
- SEEK2.ownerLockLP() (SEEK.sol#318-320)
withdrawBNB() should be declared external:
- SEEK2.withdrawBNB() (SEEK.sol#322-326)
ownerReleaseLiquidity() should be declared external:
- SEEK2.ownerReleaseLiquidity() (SEEK.sol#344-352)
ownerSwitch20PercentEnabled(bool) should be declared external:
- SEEK2.ownerSwitch20PercentEnabled(bool) (SEEK.sol#353-356)
ownerSetPromoToken(address,uint256,bool) should be declared external:
- SEEK2.ownerSetPromoToken(address,uint256,bool) (SEEK.sol#357-363)
ownerExtendLPLock(uint256) should be declared external:
- SEEK2.ownerExtendLPLock(uint256) (SEEK.sol#364-368)
ownerChangeTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) should be declared external:
- SEEK2.ownerChangeTaxes(uint8,uint8,uint8,uint8,uint8,uint8,uint8,uint8) (SEEK.sol#369-389)
ownerTriggerSwapContractTokens(uint16,bool) should be declared external:
- SEEK2.ownerTriggerSwapContractTokens(uint16,bool) (SEEK.sol#390-394)
ownerBoostContract(bool) should be declared external:
- SEEK2.ownerBoostContract(bool) (SEEK.sol#395-399)
ownerUpdateAMM(address,bool) should be declared external:
- SEEK2.ownerUpdateAMM(address,bool) (SEEK.sol#400-405)
ownerUpdateSwapThreshold(uint16) should be declared external:
- SEEK2.ownerUpdateSwapThreshold(uint16) (SEEK.sol#406-410)
ownerBlacklist(address,bool) should be declared external:
- SEEK2.ownerBlacklist(address,bool) (SEEK.sol#411-413)
ownerExcludeFromFees(address,bool) should be declared external:
- SEEK2.ownerExcludeFromFees(address,bool) (SEEK.sol#414-416)
ownerSetExcludedFromRewards(address,bool) should be declared external:
- SEEK2.ownerSetExcludedFromRewards(address,bool) (SEEK.sol#417-424)
ownerSetSwapEnabled(bool) should be declared external:
- SEEK2.ownerSetSwapEnabled(bool) (SEEK.sol#425-428)
ownerWithdrawStrandedToken(address) should be declared external:
- SEEK2.ownerWithdrawStrandedToken(address) (SEEK.sol#429-433)
ownerWithdrawMarketingBNB(uint256) should be declared external:
- SEEK2.ownerWithdrawMarketingBNB(uint256) (SEEK.sol#434-439)
ownerWithdrawOperationsBNB(uint256) should be declared external:
- SEEK2.ownerWithdrawOperationsBNB(uint256) (SEEK.sol#440-445)
ownerWithdrawBountyBNB(uint256) should be declared external:
- SEEK2.ownerWithdrawBountyBNB(uint256) (SEEK.sol#446-451)
ownerResetOneTimeExcluded() should be declared external:
- SEEK2.ownerResetOneTimeExcluded() (SEEK.sol#452-454)
resetFlags() should be declared external:
- SEEK2.resetFlags() (SEEK.sol#455-457)
finishAirDrop() should be declared external:
- SEEK2.finishAirDrop() (SEEK.sol#458-461)
claimPromoToken() should be declared external:
- SEEK2.claimPromoToken() (SEEK.sol#475-481)
compound() should be declared external:
- SEEK2.compound() (SEEK.sol#482-491)
claimBNBTo(address) should be declared external:
- SEEK2.claimBNBTo(address) (SEEK.sol#492-494)
claimBNB() should be declared external:
- SEEK2.claimBNB() (SEEK.sol#495-497)
includeMeToRewards() should be declared external:
- SEEK2.includeMeToRewards() (SEEK.sol#498-500)
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.


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 Blog account (Reddit or Medium)


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is not listed at Mobula.Finance

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for SEEK2

News for SEEK2