GENIETOKEN Token Logo

$GENIETOKEN [GENIE] Token

About $GENIETOKEN

Listings

Token 2 years
white paper

More than just a rewards token!

10% BNB Rewards

plus an Auto-Lottery (200 million tokens required) The Auto Lottery will keep paying out.

Lottery has already paid to out a lucky holder's wallet.

NFTs Giveways, NFTs Games in development and more.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

GENIETOKEN.swapAndSendDividends(uint256) (#1602-1614) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(lotteryContract).call{value: lotteryBNB}() (#1607)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

GENIETOKEN._awardRandomEligibleHolder() (#1534-1539) uses a weak PRNG: "rndVal = random(100,1000000,address(lotteryContract).balance) % _listOfHolders.length (#1536)"
Do not use block.timestamp, now or blockhash as a source of randomness

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1080-1096):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1085)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1088)
Apply the check-effects-interactions pattern.

Additional information: link

GENIETOKEN.swapAndSendDividends(uint256).success (#1606) is written in both
(success,None) = address(lotteryContract).call{value: lotteryBNB}() (#1607)
(success,None) = address(dividendTracker).call{value: dividends}() (#1609)
Fix or remove the writes.

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 ticker ($GENIETOKEN) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

GENIETOKEN.swapAndSendDividends(uint256) (#1602-1614) performs a multiplication on the result of a division:
-lotteryBNB = address(this).balance.div(totalFees - liquidityFee).mul(lotteryFee) (#1605)
Consider ordering multiplication before division.

Additional information: link

GENIETOKEN._transfer(address,address,uint256).lastProcessedIndex (#1485) 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

GENIETOKEN.addLiquidity(uint256,uint256) (#1585-1600) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1591-1598)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._symbol (#1037) shadows:
- ERC20._symbol (#683) (state variable)
Rename the local variables that shadow another component.

Additional information: link

GENIETOKEN.updateMaxSellAmount(uint256) (#1302-1304) should emit an event for:
- maxSellTransactionAmount = amount * 10 ** 9 (#1303)
Emit an event for critical parameter changes.

Additional information: link

LotteryContract.withdraw(address).reciever (#1827) lacks a zero-check on :
- (success) = reciever.call{gas: 3000,value: address(this).balance}() (#1829)
Check that the address is not zero.

Additional information: link

Variable 'GENIETOKEN._transfer(address,address,uint256).claims (#1485)' in GENIETOKEN._transfer(address,address,uint256) (#1406-1503) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1486)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in GENIETOKEN.swapAndLiquify(uint256) (#1541-1562):
External calls:
- swapTokensForEth(half) (#1553)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1575-1581)
- addLiquidity(otherHalf,newBalance) (#1559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1591-1598)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1591-1598)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1559)
- _allowances[owner][spender] = amount (#926)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LotteryContract.withdraw(address) (#1827-1834):
External calls:
- (success) = reciever.call{gas: 3000,value: address(this).balance}() (#1829)
Event emitted after the call(s):
- withdrawBNB(reciever,balance) (#1831)
Apply the check-effects-interactions pattern.

Additional information: link

DividendTracker.process() (#1768-1801) uses timestamp for comparisons
Dangerous comparisons:
- canAutoClaim(lastClaimTimes[account]) && withdrawableDividendOf(account) > 0 (#1789)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (#171-178) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.6.2 (#1179) allows old versions
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

Low level call in LotteryContract.withdraw(address) (#1827-1834):
- (success) = reciever.call{gas: 3000,value: address(this).balance}() (#1829)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Event LotteryContractwithdrawBNB(address,uint256) (#1819) is not in CapWords
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#242)" inContext (#236-245)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1081) is too similar to DividendTracker.getAccount(address).withdrawableDividends (#1682)
Prevent variables from having similar names.

Additional information: link

DividendTracker.process() (#1768-1801) uses literals with too many digits:
- gasleft()() > 100000 && iterations < numberOfTokenHolders (#1780)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#166) is never used in SafeMathInt (#164-222)
Remove unused state variables.

Additional information: link

GENIETOKEN.totalFees (#1205) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

withdraw(address) should be declared external:
- LotteryContract.withdraw(address) (#1827-1834)
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


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.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

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


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for $GENIETOKEN