The PokerFi Token aims to revolutionize transactions in online and live poker.
It is a Token linked to the BEP20 network, binance smart chain. In the smart contract has an innovative system of passive income proportional to the number of tokens the wallet has, paid in dollars. You buy pokerfi, store them in your wallet, and for each transaction you will be paid a 6% fee, where 3% is automatically distributed every 12 hours to all wallets that have equal to or more than 35,000 coins.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract name (PokerFI.Finance) 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.
BEP20Token._transfer(address,address,uint256) (#341-447) performs a multiplication on the result of a division:
-taxFee = taxFee.div(6) (#430)
-tax2 = taxFee (#432)
-tax2 = tax2.mul(2) (#434)
BEP20Token._transfer(address,address,uint256) (#341-447) performs a multiplication on the result of a division:
-taxFee = taxFee.div(6) (#430)
-tax3 = taxFee (#433)
-tax3 = tax3.mul(3) (#435)
Consider ordering multiplication before division.
Additional information: link
BEP20Token._transfer(address,address,uint256).isHold (#346) 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
BEP20Token.allowance(address,address).owner (#317) shadows:
- Ownable.owner() (#111-113) (function)
BEP20Token._approve(address,address,uint256).owner (#450) shadows:
- Ownable.owner() (#111-113) (function)
Rename the local variables that shadow another component.
Additional information: link
BEP20Token.initialDistribution(address,address).dist3 (#198) lacks a zero-check on :
- _walletREPURCHASE = dist3 (#201)
BEP20Token.initialDistribution(address,address).dist4 (#198) lacks a zero-check on :
- _walletMARKETING = dist4 (#202)
BEP20Token.initialSetup(address,address,address).dist1 (#211) lacks a zero-check on :
- _walletAWARD = dist1 (#214)
BEP20Token.initialSetup(address,address,address).dist2 (#211) lacks a zero-check on :
- _walletLIQUIDITY = dist2 (#215)
BEP20Token.initialSetup(address,address,address).dist3 (#211) lacks a zero-check on :
- _walletDISTRIBUTION = dist3 (#216)
BEP20Token.gamePlaySetup(address).dist1 (#220) lacks a zero-check on :
- _walletGAMEPLAY = dist1 (#222)
BEP20Token.gameBurnSetup(address).dist1 (#225) lacks a zero-check on :
- _walletBURN = dist1 (#227)
Check that the address is not zero.
Additional information: link
BEP20Token._transfer(address,address,uint256) (#341-447) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _firstDayDate + 7776000,Investor Wallet blocked 3 months...) (#379)
- require(bool,string)(block.timestamp >= _firstDayDate + 365 * 864000,DEV Wallet blocked 10 years...) (#382)
- require(bool,string)(block.timestamp >= _firstDayDate + 365 * 864000,DEV Wallet blocked 10 years...) (#383)
- require(bool,string)(block.timestamp >= _firstDayDate + 365 * 864000,DEV Wallet blocked 10 years...) (#384)
- require(bool,string)(block.timestamp >= _firstDayDate + 365 * 864000,DEV Wallet blocked 10 years...) (#385)
- require(bool,string)(block.timestamp >= _firstDayDate + 365 * 864000,Marketing Wallet blocked...) (#388-391)
- require(bool,string)(block.timestamp >= _firstDayDate + 365 * 864000,Repurchase Wallet blocked...) (#394-397)
Avoid relying on block.timestamp.
Additional information: link
BEP20Token.initialDistribution(address,address) (#198-208) compares to a boolean constant:
-require(bool,string)(_alreadyDistributed == false,Executed only once) (#200)
BEP20Token.initialSetup(address,address,address) (#211-218) compares to a boolean constant:
-require(bool,string)(_alreadySetuped == false,Executed only once) (#213)
BEP20Token._transfer(address,address,uint256) (#341-447) compares to a boolean constant:
-_preSaleActivated == true (#415)
BEP20Token._transfer(address,address,uint256) (#341-447) compares to a boolean constant:
-_preSaleActivated == false (#423)
BEP20Token._transfer(address,address,uint256) (#341-447) compares to a boolean constant:
-isHold == true (#378)
Remove the equality to the boolean constant.
Additional information: link
BEP20Token._burnFrom(address,uint256) (#464-467) is never used and should be removed
Context._msgData() (#50-53) is never used and should be removed
SafeMath.mod(uint256,uint256) (#90-92) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#93-96) is never used and should be removed
Remove unused functions.
Additional information: link
Variable Ownable._owner (#101) is not in mixedCase
Variable BEP20Token._firstDayDate (#151) is not in mixedCase
Variable BEP20Token._walletAWARD (#154) is not in mixedCase
Variable BEP20Token._walletLIQUIDITY (#155) is not in mixedCase
Variable BEP20Token._walletDISTRIBUTION (#156) is not in mixedCase
Variable BEP20Token._walletREPURCHASE (#159) is not in mixedCase
Variable BEP20Token._walletMARKETING (#160) is not in mixedCase
Variable BEP20Token._walletBURN (#163) is not in mixedCase
Variable BEP20Token._walletGAMEPLAY (#166) is not in mixedCase
Variable BEP20Token._texasHoldemTournament (#167) is not in mixedCase
Variable BEP20Token._pokerTournament (#168) is not in mixedCase
Variable BEP20Token._pokerRakeback (#169) is not in mixedCase
Variable BEP20Token._pokerCashback (#170) is not in mixedCase
Variable BEP20Token._pokerPayBUSD (#171) is not in mixedCase
Variable BEP20Token._texasHoldemTournamentU (#172) is not in mixedCase
Variable BEP20Token._pokerTournamentU (#173) is not in mixedCase
Variable BEP20Token._pokerRakebackU (#174) is not in mixedCase
Variable BEP20Token._pokerCashbackU (#175) is not in mixedCase
Variable BEP20Token._pokerPayBUSDU (#176) is not in mixedCase
Variable BEP20Token._alreadySetuped (#179) is not in mixedCase
Variable BEP20Token._alreadyDistributed (#180) is not in mixedCase
Variable BEP20Token._preSaleActivated (#183) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#51)" inContext (#42-54)
Remove redundant statements if they congest code but offer no value.
Additional information: link
BEP20Token.constructor() (#185-196) uses literals with too many digits:
- _totalSupply = 10000000000000000000 (#189)
BEP20Token.constructor() (#185-196) uses literals with too many digits:
- _balances[msg.sender] = 9450000000000000000 (#190)
BEP20Token.initialDistribution(address,address) (#198-208) uses literals with too many digits:
- _balances[_walletREPURCHASE] = 200000000000000000 (#203)
BEP20Token.initialDistribution(address,address) (#198-208) uses literals with too many digits:
- _balances[_walletMARKETING] = 350000000000000000 (#204)
BEP20Token.initialDistribution(address,address) (#198-208) uses literals with too many digits:
- Transfer(address(0),_walletREPURCHASE,200000000000000000) (#205)
BEP20Token.initialDistribution(address,address) (#198-208) uses literals with too many digits:
- Transfer(address(0),_walletMARKETING,350000000000000000) (#206)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#120-124)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#126-129)
initialDistribution(address,address) should be declared external:
- BEP20Token.initialDistribution(address,address) (#198-208)
initialSetup(address,address,address) should be declared external:
- BEP20Token.initialSetup(address,address,address) (#211-218)
gamePlaySetup(address) should be declared external:
- BEP20Token.gamePlaySetup(address) (#220-223)
gameBurnSetup(address) should be declared external:
- BEP20Token.gameBurnSetup(address) (#225-228)
initPreSale() should be declared external:
- BEP20Token.initPreSale() (#230-233)
finishPreSale() should be declared external:
- BEP20Token.finishPreSale() (#235-238)
sendToLiquidity(uint256) should be declared external:
- BEP20Token.sendToLiquidity(uint256) (#240-244)
burnPokerFi(uint256) should be declared external:
- BEP20Token.burnPokerFi(uint256) (#246-250)
pokerPayBUSD(string,uint256) should be declared external:
- BEP20Token.pokerPayBUSD(string,uint256) (#252-258)
pokerCashback(string,uint256) should be declared external:
- BEP20Token.pokerCashback(string,uint256) (#260-266)
pokerRakeback(string,uint256) should be declared external:
- BEP20Token.pokerRakeback(string,uint256) (#268-274)
pokerTournament(string,uint256) should be declared external:
- BEP20Token.pokerTournament(string,uint256) (#276-282)
texasHoldemTournament(string,uint256) should be declared external:
- BEP20Token.texasHoldemTournament(string,uint256) (#284-290)
totalBalanceContract() should be declared external:
- BEP20Token.totalBalanceContract() (#292-294)
increaseAllowance(address,uint256) should be declared external:
- BEP20Token.increaseAllowance(address,uint256) (#331-334)
decreaseAllowance(address,uint256) should be declared external:
- BEP20Token.decreaseAllowance(address,uint256) (#336-339)
Use the external attribute for functions never called from the contract.
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
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account