* Telegram Group : https://t.co/QxOdJH7nnR…
* Telegram Channel : https://t.co/G1sVyY5nK3…
* BEP 20 : 0x4D3735AFd2619675DEDe7C32E29c48D681c9FEBd
#Web3 #SKR
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
SilkRoadCoin.clear(uint256)._owner (#723) lacks a zero-check on :
- _owner.transfer(amount) (#724)
Check that the address is not zero.
Additional information: link
Pausable._pause() (#561-564) is never used and should be removed
Pausable._unpause() (#573-576) is never used and should be removed
Context._msgData() (#133-136) is never used and should be removed
Remove unused functions.
Additional information: link
Redundant expression "this (#134)" inContext (#128-137)
Remove redundant statements if they congest code but offer no value.
Additional information: link
SilkRoadCoin.clear(uint256)._owner (#723) shadows:
- Ownable._owner (#598) (state variable)
Rename the local variables that shadow another component.
Additional information: link
SilkRoadCoin.startSale(uint256,uint256,uint256,uint256,uint256) (#712-719) should emit an event for:
- sSBlock = _sSBlock (#713)
- sEBlock = _sEBlock (#714)
- sChunk = _sChunk (#715)
- sPrice = _sPrice (#716)
- sCap = _sCap (#717)
SilkRoadCoin.startAirdrop(uint256,uint256,uint256,uint256) (#705-711) should emit an event for:
- aSBlock = _aSBlock (#706)
- aEBlock = _aEBlock (#707)
- aAmt = _aAmt (#708)
- aCap = _aCap (#709)
Emit an event for critical parameter changes.
Additional information: link
Different versions of Solidity are used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.4 (#1)
- ^0.8.0 (#87)
- ^0.8.0 (#116)
- ^0.8.0 (#143)
- ^0.8.0 (#449)
- ^0.8.0 (#491)
- ^0.8.0 (#583)
- ^0.8.0 (#649)
Use one Solidity version.
Additional information: link
Pragma version^0.8.0 (#143) allows old versions
Pragma version^0.8.0 (#87) allows old versions
Pragma version^0.8.0 (#116) allows old versions
Pragma version^0.8.0 (#449) allows old versions
Pragma version^0.8.0 (#491) allows old versions
Pragma version^0.8.0 (#649) allows old versions
Pragma version^0.8.0 (#583) 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
Parameter SilkRoadCoin.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#712) is not in mixedCase
Parameter SilkRoadCoin.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#712) is not in mixedCase
Parameter SilkRoadCoin.getAirdrop(address)._refer (#671) is not in mixedCase
Parameter SilkRoadCoin.tokenSale(address)._refer (#682) is not in mixedCase
Parameter SilkRoadCoin.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#705) is not in mixedCase
Parameter SilkRoadCoin.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#705) is not in mixedCase
Parameter SilkRoadCoin.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#712) is not in mixedCase
Parameter SilkRoadCoin.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#705) is not in mixedCase
Parameter SilkRoadCoin.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#712) is not in mixedCase
Parameter SilkRoadCoin.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#712) is not in mixedCase
Parameter SilkRoadCoin.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#705) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#287-295)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#479-484)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#633-636)
tokenSale(address) should be declared external:
- SilkRoadCoin.tokenSale(address) (#682-696)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#328-334)
symbol() should be declared external:
- ERC20.symbol() (#207-209)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#250-253)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#309-312)
getAirdrop(address) should be declared external:
- SilkRoadCoin.getAirdrop(address) (#671-680)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#642-646)
viewSale() should be declared external:
- SilkRoadCoin.viewSale() (#701-703)
name() should be declared external:
- ERC20.name() (#199-201)
viewAirdrop() should be declared external:
- SilkRoadCoin.viewAirdrop() (#698-700)
clear(uint256) should be declared external:
- SilkRoadCoin.clear(uint256) (#722-725)
totalSupply() should be declared external:
- ERC20.totalSupply() (#231-233)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#269-272)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#464-466)
Use the external attribute for functions never called from the contract.
Additional information: link
SilkRoadCoin.constructor() (#662-667) uses literals with too many digits:
- _mint(address(this),100000000 * 10 ** decimals()) (#664)
SilkRoadCoin.constructor() (#662-667) uses literals with too many digits:
- startSale(block.number,999999999,0,90000 * 10 ** decimals(),90000000) (#665)
SilkRoadCoin.constructor() (#662-667) uses literals with too many digits:
- _mint(msg.sender,900000000 * 10 ** decimals()) (#663)
SilkRoadCoin.constructor() (#662-667) uses literals with too many digits:
- startAirdrop(block.number,999999999,500 * 10 ** decimals(),10000000) (#666)
SilkRoadCoin.getAirdrop(address) (#671-680) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#675)
SilkRoadCoin.tokenSale(address) (#682-696) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#689)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
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 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.
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as risky (blacklisted creator, fake name, dead project, etc.)
Additional information: link
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Last post in Twitter was more than 180 days ago
Unable to find Discord account