$NYT.blackLists (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#122) is never initialized. It is used in:
- $NYT.transfer(address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#123-146)
- $NYT.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#183-210)
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
Token is flagged by TokenSniffer due to presence of exploit in contract code
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Contract ticker ($NYT) 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.
$NYT.setMaxSellOutNum(uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#232-234) should emit an event for:
- maxSellOutNum = num (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#233)
$NYT.setMaxSellToken(uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#235-237) should emit an event for:
- maxSellToken = num * 1000000000000000 ** uint256(decimals) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#236)
Emit an event for critical parameter changes.
Additional information: link
Address.isContract(address) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#54-59) uses assembly
- INLINE ASM (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#57)
Address._functionCallWithValue(address,bytes,uint256,string) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#78-93) uses assembly
- INLINE ASM (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#85-88)
Do not use evm assembly.
Additional information: link
$NYT.transfer(address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#123-146) compares to a boolean constant:
-require(bool)(blackLists[from] == false && blackLists[_to] == false) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#128)
$NYT.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#183-210) compares to a boolean constant:
-require(bool)(blackLists[from] == false && blackLists[_to] == false) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#189)
Remove the equality to the boolean constant.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#78-93) is never used and should be removed
Address.functionCall(address,bytes) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#65-67) is never used and should be removed
Address.functionCall(address,bytes,string) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#68-70) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#71-73) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#74-77) is never used and should be removed
Address.sendValue(address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#60-64) is never used and should be removed
SafeMath.div(uint256,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#32-35) is never used and should be removed
SafeMath.mul(uint256,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#24-31) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.6.0 (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#21) 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 Address.sendValue(address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#60-64):
- (success) = recipient.call{value: amount}() (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#62)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#78-93):
- (success,returndata) = target.call{value: weiValue}(data) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#80)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Contract $NYT (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#95-242) is not in CapWords
Parameter $NYT.transfer(address,uint256)._to (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#123) is not in mixedCase
Parameter $NYT.transfer(address,uint256)._value (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#123) is not in mixedCase
Parameter $NYT.check(address,address)._to (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#147) is not in mixedCase
Parameter $NYT.balanceOf(address)._owner (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#174) is not in mixedCase
Parameter $NYT.transferFrom(address,address,uint256)._from (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#183) is not in mixedCase
Parameter $NYT.transferFrom(address,address,uint256)._to (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#183) is not in mixedCase
Parameter $NYT.transferFrom(address,address,uint256)._value (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#183) is not in mixedCase
Parameter $NYT.approve(address,uint256)._spender (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#217) is not in mixedCase
Parameter $NYT.approve(address,uint256)._value (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#217) is not in mixedCase
Parameter $NYT.allowance(address,address)._owner (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#222) is not in mixedCase
Parameter $NYT.allowance(address,address)._spender (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#222) is not in mixedCase
Function $NYT.Approve(address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#238-240) is not in mixedCase
Parameter $NYT.Approve(address,uint256)._value (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#238) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
$NYT.check(address,address) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#147-162) uses literals with too many digits:
- maxSellOutNum == 1000000000000000 && maxSellToken == 1000000000000000 (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#150)
$NYT.check(address,address) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#147-162) uses literals with too many digits:
- maxSellOutNum > 1000000000000000 (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#153)
$NYT.check(address,address) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#147-162) uses literals with too many digits:
- maxSellToken > 1000000000000000 (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#156)
$NYT.setMaxSellToken(uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#235-237) uses literals with too many digits:
- maxSellToken = num * 1000000000000000 ** uint256(decimals) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#236)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
$NYT.poolAddress (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#106) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
transfer(address,uint256) should be declared external:
- $NYT.transfer(address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#123-146)
balanceOf(address) should be declared external:
- $NYT.balanceOf(address) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#174-176)
transferOwnership(address) should be declared external:
- $NYT.transferOwnership(address) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#177-181)
transferFrom(address,address,uint256) should be declared external:
- $NYT.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#183-210)
approve(address,uint256) should be declared external:
- $NYT.approve(address,uint256) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#217-221)
allowance(address,address) should be declared external:
- $NYT.allowance(address,address) (crytic-export/etherscan-contracts/0xb0fce11559ccf3bf697f09f78740dbe5d66b8c94.bscscan.com-$NYT.sol#222-224)
Use the external attribute for functions never called from the contract.
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.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
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
Unable to find Telegram and Twitter accounts