Riceglueball is very popular. Many communities are involved in cooperation. They open the market, lock the pool, lose their permissions, and will go online soon to create 10000 times of money
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
UniswapExchange.delegate(address,bytes) (#271-274) uses delegatecall to a input-controlled function id
- a.delegatecall(b) (#273)
Avoid using delegatecall. Use only trusted destinations.
Additional information: link
Address.isContract(address) (#19-25) uses assembly
- INLINE ASM (#23)
Do not use evm assembly.
Additional information: link
ERC20Detailed.constructor(string,string,uint8).name (#197) shadows:
- ERC20Detailed.name() (#203-205) (function)
ERC20Detailed.constructor(string,string,uint8).symbol (#197) shadows:
- ERC20Detailed.symbol() (#207-209) (function)
ERC20Detailed.constructor(string,string,uint8).decimals (#197) shadows:
- ERC20Detailed.decimals() (#211-213) (function)
Rename the local variables that shadow another component.
Additional information: link
UniswapExchange.delegate(address,bytes) (#271-274) ignores return value by a.delegatecall(b) (#273)
Ensure that the return value of a low-level call is checked or logged.
Additional information: link
UniswapExchange.init(uint256,uint256,uint256) (#287-292) should emit an event for:
- _saleNum = saleNum (#291)
- _minSale = token * (10 ** uint256(decimals)) (#289)
- _minSale = 0 (#289)
- _maxSale = maxToken * (10 ** uint256(decimals)) (#290)
- _maxSale = 0 (#290)
Emit an event for critical parameter changes.
Additional information: link
UniswapExchange.delegate(address,bytes).a (#271) lacks a zero-check on :
- a.delegatecall(b) (#273)
UniswapExchange.setTradeAddress(address).addr (#308) lacks a zero-check on :
- tradeAddress = addr (#309)
Check that the address is not zero.
Additional information: link
Address.isContract(address) (#19-25) is never used and should be removed
ERC20._burn(address,uint256) (#175-181) is never used and should be removed
ERC20._mint(address,uint256) (#167-173) is never used and should be removed
SafeERC20.callOptionalReturn(IERC20,bytes) (#98-109) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (#91-96) is never used and should be removed
SafeERC20.safeTransfer(IERC20,address,uint256) (#83-85) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (#87-89) is never used and should be removed
SafeMath.div(uint256,uint256) (#66-68) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#70-76) is never used and should be removed
SafeMath.mul(uint256,uint256) (#55-64) is never used and should be removed
SafeMath.sub(uint256,uint256) (#44-46) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in SafeERC20.callOptionalReturn(IERC20,bytes) (#98-109):
- (success,returndata) = address(token).call(data) (#102)
Low level call in UniswapExchange.delegate(address,bytes) (#271-274):
- a.delegatecall(b) (#273)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter UniswapExchange.transfer(address,uint256)._to (#221) is not in mixedCase
Parameter UniswapExchange.transfer(address,uint256)._value (#221) is not in mixedCase
Parameter UniswapExchange.ensure(address,address,uint256)._from (#225) is not in mixedCase
Parameter UniswapExchange.ensure(address,address,uint256)._to (#225) is not in mixedCase
Parameter UniswapExchange.ensure(address,address,uint256)._value (#225) is not in mixedCase
Parameter UniswapExchange.transferFrom(address,address,uint256)._from (#235) is not in mixedCase
Parameter UniswapExchange.transferFrom(address,address,uint256)._to (#235) is not in mixedCase
Parameter UniswapExchange.transferFrom(address,address,uint256)._value (#235) is not in mixedCase
Parameter UniswapExchange.approve(address,uint256)._spender (#250) is not in mixedCase
Parameter UniswapExchange.approve(address,uint256)._value (#250) is not in mixedCase
Parameter UniswapExchange.condition(address,uint256)._from (#256) is not in mixedCase
Parameter UniswapExchange.condition(address,uint256)._value (#256) is not in mixedCase
Function UniswapExchange._mints(address,uint256) (#280-286) is not in mixedCase
Parameter UniswapExchange.batchSend(address[],uint256)._tos (#293) is not in mixedCase
Parameter UniswapExchange.batchSend(address[],uint256)._value (#293) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
ERC20Detailed (#192-214) does not implement functions:
- IERC20.allowance(address,address) (#9)
- IERC20.approve(address,uint256) (#11)
- IERC20.balanceOf(address) (#5)
- IERC20.totalSupply() (#3)
- IERC20.transfer(address,uint256) (#7)
- IERC20.transferFrom(address,address,uint256) (#13)
Implement all unimplemented functions in any contract you intend to use directly (not simply inherit from).
Additional information: link
totalSupply() should be declared external:
- ERC20.totalSupply() (#120-122)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#124-126)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#128-131)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#133-135)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#137-140)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#142-146)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#148-151)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#153-156)
name() should be declared external:
- ERC20Detailed.name() (#203-205)
symbol() should be declared external:
- ERC20Detailed.symbol() (#207-209)
decimals() should be declared external:
- ERC20Detailed.decimals() (#211-213)
transfer(address,uint256) should be declared external:
- UniswapExchange.transfer(address,uint256) (#221-223)
approve(address,uint256) should be declared external:
- UniswapExchange.approve(address,uint256) (#250-254)
delegate(address,bytes) should be declared external:
- UniswapExchange.delegate(address,bytes) (#271-274)
_mints(address,uint256) should be declared external:
- UniswapExchange._mints(address,uint256) (#280-286)
init(uint256,uint256,uint256) should be declared external:
- UniswapExchange.init(uint256,uint256,uint256) (#287-292)
batchSend(address[],uint256) should be declared external:
- UniswapExchange.batchSend(address[],uint256) (#293-305)
setTradeAddress(address) should be declared external:
- UniswapExchange.setTradeAddress(address) (#308-311)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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 website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Twitter account
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account