GADGET WAR Token Logo

GWAR [GADGET WAR] Token

About GWAR

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Gadgetwar is a multi-dimensional play-to-earn game, built on the BEP20 BSC Smart Chain, which fuses the most robust and exciting gameplay and NFT experience.

Created with the goal of expanding and satisfying the growing interest for Crypto Gaming, Gadget War is set to take the Metaverse by storm with its comprehensive gaming ecosystem!

Social

Laser Scorebeta Last Audit: 17 February 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links


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

GWAR_TOKEN.at(address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#403-418) is declared view but contains assembly code
GWAR_TOKEN.isContract(address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#419-429) is declared view but contains assembly code
Ensure the attributes of contracts compiled prior to Solidity 0.5.0 are correct.

Additional information: link

GWAR_TOKEN.viewUserBalances(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#748-756) is declared view but changes state variables:
- GWAR_TOKEN._balanceOf (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#118)
Ensure that attributes of contracts compiled prior to Solidity 0.5.0 are correct.

Additional information: link

GWAR_TOKEN.getClaimableAmount(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#695-732) performs a multiplication on the result of a division:
-daysPassed = (block.timestamp.sub(releaseTime)).div(86400) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#716)
-totalClaimableAmount += ((tAlloc * tempAlloc.regularReleasePercent) / (10 ** (_decimals + 2))) * daysPassed (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#717-719)
Consider ordering multiplication before division.

Additional information: link

GWAR_TOKEN.defineAllocation(bytes32,uint256,uint256,uint256,uint256,uint256,uint256).temp (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#545) 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

GWAR_TOKEN.allowance(address,address).owner (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#180) shadows:
- owned.owner (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#67) (state variable)
Rename the local variables that shadow another component.

Additional information: link

owned.transferOwnership(address)._newOwner (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#82) lacks a zero-check on :
- newOwner = _newOwner (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#83)
Check that the address is not zero.

Additional information: link

GWAR_TOKEN._beforeTokenTransfer(address,address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#793-808) has external calls inside a loop: (allow,message) = liquidityRestrictor.assureLiquidityRestrictions(from,to) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#800-801)
GWAR_TOKEN._beforeTokenTransfer(address,address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#793-808) has external calls inside a loop: require(bool)(antisnipe.assureCanTransfer(msg.sender,from,to,amount)) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#806)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in GWAR_TOKEN._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#187-207):
External calls:
- _beforeTokenTransfer(_from,_to,_value) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#192)
- (allow,message) = liquidityRestrictor.assureLiquidityRestrictions(from,to) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#800-801)
- require(bool)(antisnipe.assureCanTransfer(msg.sender,from,to,amount)) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#806)
State variables written after the call(s):
- _balanceOf[_from] = _balanceOf[_from].sub(_value) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#202)
- _balanceOf[_to] = _balanceOf[_to].add(_value) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#203)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GWAR_TOKEN._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#187-207):
External calls:
- _beforeTokenTransfer(_from,_to,_value) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#192)
- (allow,message) = liquidityRestrictor.assureLiquidityRestrictions(from,to) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#800-801)
- require(bool)(antisnipe.assureCanTransfer(msg.sender,from,to,amount)) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#806)
Event emitted after the call(s):
- Transfer(_from,_to,_value) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#206)
Reentrancy in GWAR_TOKEN.buyToken() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#765-779):
External calls:
- _transfer(owner,msg.sender,totalToken) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#776)
- (allow,message) = liquidityRestrictor.assureLiquidityRestrictions(from,to) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#800-801)
- require(bool)(antisnipe.assureCanTransfer(msg.sender,from,to,amount)) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#806)
Event emitted after the call(s):
- buyTokenEv(msg.sender,totalToken,msg.value) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#777)
Reentrancy in GWAR_TOKEN.claimAllocation(uint256,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#664-693):
External calls:
- _transfer(owner,msg.sender,_claimAmount) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#690)
- (allow,message) = liquidityRestrictor.assureLiquidityRestrictions(from,to) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#800-801)
- require(bool)(antisnipe.assureCanTransfer(msg.sender,from,to,amount)) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#806)
Event emitted after the call(s):
- claimAllocationEv(allocationTypeIndex,_claimAmount,msg.sender) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#691)
Apply the check-effects-interactions pattern.

Additional information: link

GWAR_TOKEN.claimAllocation(uint256,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#664-693) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_claimAmount <= amountClaimable,Invalid Amount) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#681)
GWAR_TOKEN.getClaimableAmount(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#695-732) uses timestamp for comparisons
Dangerous comparisons:
- releaseTime >= block.timestamp (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#708)
- releaseTime < block.timestamp (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#714)
- daysPassed > 0 (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#717)
- totalClaimableAmount > tAlloc (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#721)
Avoid relying on block.timestamp.

Additional information: link

GWAR_TOKEN.at(address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#403-418) uses assembly
- INLINE ASM (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#404-418)
GWAR_TOKEN.isContract(address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#419-429) uses assembly
- INLINE ASM (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#424-427)
Do not use evm assembly.

Additional information: link

GWAR_TOKEN.changeSafeguardStatus() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#377-383) compares to a boolean constant:
-safeguard == false (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#378)
GWAR_TOKEN.changeWhitelistingStatus() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#442-448) compares to a boolean constant:
-whitelistingStatus == false (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#443)
GWAR_TOKEN.whitelistUser(address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#455-459) compares to a boolean constant:
-require(bool)(whitelistingStatus == true) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#456)
GWAR_TOKEN.whitelistManyUsers(address[]) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#466-473) compares to a boolean constant:
-require(bool)(whitelistingStatus == true) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#467)
Remove the equality to the boolean constant.

Additional information: link

SafeMath.mul(uint256,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#34-41) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.4.25 (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#6) allows old versions
solc-0.4.25 is not recommended for deployment
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

Contract owned (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#66-97) is not in CapWords
Parameter owned.transferOwnership(address)._newOwner (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#82) is not in mixedCase
Contract GWAR_TOKEN (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#103-832) is not in CapWords
Struct GWAR_TOKEN.allocationType (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#498-508) is not in CapWords
Event GWAR_TOKENdefineAllocationEv(bytes32,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#524-533) is not in CapWords
Event GWAR_TOKENclaimAllocationEv(uint256,uint256,address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#658-662) is not in CapWords
Event GWAR_TOKENbuyTokenEv(address,uint256,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#763) is not in CapWords
Parameter GWAR_TOKEN.transfer(address,uint256)._to (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#217) is not in mixedCase
Parameter GWAR_TOKEN.transfer(address,uint256)._value (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#217) is not in mixedCase
Parameter GWAR_TOKEN.transferFrom(address,address,uint256)._from (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#233) is not in mixedCase
Parameter GWAR_TOKEN.transferFrom(address,address,uint256)._to (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#234) is not in mixedCase
Parameter GWAR_TOKEN.transferFrom(address,address,uint256)._value (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#235) is not in mixedCase
Parameter GWAR_TOKEN.approve(address,uint256)._spender (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#251) is not in mixedCase
Parameter GWAR_TOKEN.approve(address,uint256)._value (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#251) is not in mixedCase
Function GWAR_TOKEN.increase_allowance(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#273-278) is not in mixedCase
Function GWAR_TOKEN.decrease_allowance(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#289-294) is not in mixedCase
Parameter GWAR_TOKEN.burn(uint256)._value (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#315) is not in mixedCase
Parameter GWAR_TOKEN.burnFrom(address,uint256)._from (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#333) is not in mixedCase
Parameter GWAR_TOKEN.burnFrom(address,uint256)._value (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#333) is not in mixedCase
Parameter GWAR_TOKEN.defineAllocation(bytes32,uint256,uint256,uint256,uint256,uint256,uint256).Name (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#536) is not in mixedCase
Parameter GWAR_TOKEN.defineAllocation(bytes32,uint256,uint256,uint256,uint256,uint256,uint256)._startTime (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#537) is not in mixedCase
Parameter GWAR_TOKEN.defineAllocation(bytes32,uint256,uint256,uint256,uint256,uint256,uint256)._totalAllocation (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#538) is not in mixedCase
Parameter GWAR_TOKEN.defineAllocation(bytes32,uint256,uint256,uint256,uint256,uint256,uint256)._initialLockTime (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#539) is not in mixedCase
Parameter GWAR_TOKEN.defineAllocation(bytes32,uint256,uint256,uint256,uint256,uint256,uint256)._timeGapAfterFirstRelease (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#540) is not in mixedCase
Parameter GWAR_TOKEN.claimAllocation(uint256,uint256)._claimAmount (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#664) is not in mixedCase
Parameter GWAR_TOKEN.userBalances(address,uint256)._user (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#735) is not in mixedCase
Parameter GWAR_TOKEN.viewUserBalances(address,uint256)._user (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#748) is not in mixedCase
Parameter GWAR_TOKEN.updateTokenPrice(uint256)._tokenPrice (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#758) is not in mixedCase
Constant GWAR_TOKEN._name (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#110) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GWAR_TOKEN._symbol (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#111) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GWAR_TOKEN._decimals (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#112) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GWAR_TOKEN._allocationBalance (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#518) is not in mixedCase
Variable GWAR_TOKEN._claimedAmount (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#519) is not in mixedCase
Variable GWAR_TOKEN._boughtByUser (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#520) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable GWAR_TOKEN.extcodehash(address).accountHash1 (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#394) is too similar to GWAR_TOKEN.extcodehash(address).accountHash2 (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#395)
Prevent variables from having similar names.

Additional information: link

GWAR_TOKEN.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#103-832) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#113)
GWAR_TOKEN.slitherConstructorVariables() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#103-832) uses literals with too many digits:
- tokenPrice = 10000000000000000 * (10 ** _decimals) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#522)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

transferOwnership(address) should be declared external:
- owned.transferOwnership(address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#82-84)
dropOwnership() should be declared external:
- owned.dropOwnership() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#86-88)
acceptOwnership() should be declared external:
- owned.acceptOwnership() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#91-96)
name() should be declared external:
- GWAR_TOKEN.name() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#145-147)
symbol() should be declared external:
- GWAR_TOKEN.symbol() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#152-154)
decimals() should be declared external:
- GWAR_TOKEN.decimals() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#159-161)
balanceOf(address) should be declared external:
- GWAR_TOKEN.balanceOf(address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#173-175)
allowance(address,address) should be declared external:
- GWAR_TOKEN.allowance(address,address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#180-182)
transferFrom(address,address,uint256) should be declared external:
- GWAR_TOKEN.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#232-241)
approve(address,uint256) should be declared external:
- GWAR_TOKEN.approve(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#251-262)
increase_allowance(address,uint256) should be declared external:
- GWAR_TOKEN.increase_allowance(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#273-278)
decrease_allowance(address,uint256) should be declared external:
- GWAR_TOKEN.decrease_allowance(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#289-294)
burn(uint256) should be declared external:
- GWAR_TOKEN.burn(uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#315-323)
burnFrom(address,uint256) should be declared external:
- GWAR_TOKEN.burnFrom(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#333-342)
freezeAccount(address,bool) should be declared external:
- GWAR_TOKEN.freezeAccount(address,bool) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#349-352)
manualWithdrawTokens(uint256) should be declared external:
- GWAR_TOKEN.manualWithdrawTokens(uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#361-364)
manualWithdrawCoin(uint256) should be declared external:
- GWAR_TOKEN.manualWithdrawCoin(uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#367-369)
changeSafeguardStatus() should be declared external:
- GWAR_TOKEN.changeSafeguardStatus() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#377-383)
changeWhitelistingStatus() should be declared external:
- GWAR_TOKEN.changeWhitelistingStatus() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#442-448)
whitelistUser(address) should be declared external:
- GWAR_TOKEN.whitelistUser(address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#455-459)
whitelistManyUsers(address[]) should be declared external:
- GWAR_TOKEN.whitelistManyUsers(address[]) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#466-473)
airdropACTIVE(address[],uint256[]) should be declared external:
- GWAR_TOKEN.airdropACTIVE(address[],uint256[]) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#481-494)
defineAllocation(bytes32,uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- GWAR_TOKEN.defineAllocation(bytes32,uint256,uint256,uint256,uint256,uint256,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#535-567)
editAllocationReleaseLimit(uint256,uint256,uint256) should be declared external:
- GWAR_TOKEN.editAllocationReleaseLimit(uint256,uint256,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#569-580)
deleteAllocation(uint256) should be declared external:
- GWAR_TOKEN.deleteAllocation(uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#582-597)
allocateTokens(uint256,address[],uint256[]) should be declared external:
- GWAR_TOKEN.allocateTokens(uint256,address[],uint256[]) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#599-627)
moveAllocation(uint256,address,address) should be declared external:
- GWAR_TOKEN.moveAllocation(uint256,address,address) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#629-645)
allocationDefined_() should be declared external:
- GWAR_TOKEN.allocationDefined_() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#648-651)
startPublicSale() should be declared external:
- GWAR_TOKEN.startPublicSale() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#653-656)
claimAllocation(uint256,uint256) should be declared external:
- GWAR_TOKEN.claimAllocation(uint256,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#664-693)
viewUserBalances(address,uint256) should be declared external:
- GWAR_TOKEN.viewUserBalances(address,uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#748-756)
updateTokenPrice(uint256) should be declared external:
- GWAR_TOKEN.updateTokenPrice(uint256) (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#758-761)
buyToken() should be declared external:
- GWAR_TOKEN.buyToken() (crytic-export/etherscan-contracts/0x63129aa653e414a174202d5d6670038e409d64d8.bscscan.com-GWAR_TOKEN.sol#765-779)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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.


Token is deployed only at one blockchain


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to crawl data from the website


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

Additional information: link


Unable to find token contract audit


Unable to verify token contract address on the website


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 Twitter 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


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


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

Price for GWAR

News for GWAR