SAFELAMBO is a community driven DEFI MEME token with a strong focus on community, The Anti-PaperHand system burn 4% of every transaction and 4% for charity & marketing.
This incentivizes all hodlers and rewards people that stay on board.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
TokenRecover.recoverERC20(address,uint256) (#1181-1183) ignores return value by IERC20(tokenAddress).transfer(owner1(),tokenAmount) (#1182)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
ERC20.__owner (#348) should be constant
ERC20._charity (#349) should be constant
ERC20._dead (#347) should be constant
ERC20Mintable._mintingFinished (#1226) should be constant
Ownable.BurnTax (#1121) should be constant
Ownable.CharityTax (#1120) should be constant
Ownable.charity (#1119) should be constant
Ownable.owner (#1151) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#706-723) is never used and should be removed
Address.functionCall(address,bytes) (#614-616) is never used and should be removed
Address.functionCall(address,bytes,string) (#624-626) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#639-641) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#649-656) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#688-690) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#698-704) is never used and should be removed
Address.functionStaticCall(address,bytes) (#664-666) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#674-680) is never used and should be removed
Address.sendValue(address,uint256) (#588-594) is never used and should be removed
CoinToken._addtokens(uint256) (#1278-1280) is never used and should be removed
Context._msgData() (#129-132) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#588-594):
- (success) = recipient.call{value: amount}() (#592)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#649-656):
- (success,returndata) = target.call{value: value}(data) (#654)
Low level call in Address.functionStaticCall(address,bytes,string) (#674-680):
- (success,returndata) = target.staticcall(data) (#678)
Low level call in Address.functionDelegateCall(address,bytes,string) (#698-704):
- (success,returndata) = target.delegatecall(data) (#702)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Reentrancy in CoinToken.constructor(string,string,uint8,uint256,address,address) (#1259-1271):
External calls:
- address(feeReceiver_).transfer(msg.value) (#1267)
State variables written after the call(s):
- _change(tokenOwner,initialBalance_ * 10 ** uint256(decimals_)) (#1269)
- _balances[__owner] += amount (#424)
- _owner = tokenOwner (#1268)
- _change(tokenOwner,initialBalance_ * 10 ** uint256(decimals_)) (#1269)
- _totalSupply += amount (#423)
Event emitted after the call(s):
- Transfer(address(0),__owner,amount) (#425)
- _change(tokenOwner,initialBalance_ * 10 ** uint256(decimals_)) (#1269)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.charity (#1119) is never used in CoinToken (#1258-1284)
Remove unused state variables.
Additional information: link
ERC20._transfer(address,address,uint256) (#367-406) performs a multiplication on the result of a division:
-taxamount = (amount * 4) / 100 (#373)
-newamount = amount - (taxamount * 2) (#374)
Consider ordering multiplication before division.
Additional information: link
CoinToken.constructor(string,string,uint8,uint256,address,address).feeReceiver_ (#1265) lacks a zero-check on :
- address(feeReceiver_).transfer(msg.value) (#1267)
CoinToken.constructor(string,string,uint8,uint256,address,address).tokenOwner (#1264) lacks a zero-check on :
- _owner = tokenOwner (#1268)
Check that the address is not zero.
Additional information: link
Address.isContract(address) (#561-570) uses assembly
- INLINE ASM (#568)
Address._verifyCallResult(bool,bytes,string) (#706-723) uses assembly
- INLINE ASM (#715-718)
Do not use evm assembly.
Additional information: link
Pragma version^0.8.0 (#3) allows old versions
Pragma version^0.8.0 (#83) allows old versions
Pragma version^0.8.0 (#112) allows old versions
Pragma version^0.8.0 (#139) allows old versions
Pragma version^0.8.0 (#496) allows old versions
Pragma version^0.8.0 (#538) allows old versions
Pragma version^0.8.0 (#730) allows old versions
Pragma version^0.8.0 (#757) allows old versions
Pragma version^0.8.0 (#787) allows old versions
Pragma version^0.8.0 (#880) allows old versions
Pragma version^0.8.0 (#914) allows old versions
Pragma version^0.8.0 (#946) allows old versions
Pragma version^0.8.0 (#1103) allows old versions
Pragma version^0.8.0 (#1167) allows old versions
Pragma version^0.8.0 (#1190) allows old versions
Pragma version^0.8.0 (#1217) allows old versions
Pragma version^0.8.0 (#1255) 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 ERC20.add(address)._user (#353) is not in mixedCase
Parameter ERC20.remove(address)._user (#360) is not in mixedCase
Variable ERC20.__owner (#348) is not in mixedCase
Variable Ownable._owner (#1118) is not in mixedCase
Variable Ownable.CharityTax (#1120) is not in mixedCase
Variable Ownable.BurnTax (#1121) is not in mixedCase
Function ERC20Mintable.ChangeBurnTax(uint256) (#1241-1243) is not in mixedCase
Parameter ERC20Mintable.ChangeBurnTax(uint256).percent_value (#1241) is not in mixedCase
Function ERC20Mintable.ChangeCharityTax(uint256) (#1245-1247) is not in mixedCase
Parameter ERC20Mintable.ChangeCharityTax(uint256).percent_value (#1245) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#130)" inContext (#124-133)
Remove redundant statements if they congest code but offer no value.
Additional information: link
CoinToken.slitherConstructorVariables() (#1258-1284) uses literals with too many digits:
- _dead = 0x000000000000000000000000000000000000dEaD (#347)
CoinToken.slitherConstructorVariables() (#1258-1284) uses literals with too many digits:
- owner = 0x000000000000000000000000000000000000dEaD (#1151)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
name() should be declared external:
- ERC20.name() (#195-197)
symbol() should be declared external:
- ERC20.symbol() (#203-205)
totalSupply() should be declared external:
- ERC20.totalSupply() (#227-229)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#234-236)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#305-308)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#324-330)
add(address) should be declared external:
- ERC20.add(address) (#353-358)
remove(address) should be declared external:
- ERC20.remove(address) (#360-365)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#511-513)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#526-531)
transferAndCall(address,uint256) should be declared external:
- ERC1363.transferAndCall(address,uint256) (#974-976)
transferFromAndCall(address,address,uint256) should be declared external:
- ERC1363.transferFromAndCall(address,address,uint256) (#1002-1008)
approveAndCall(address,uint256) should be declared external:
- ERC1363.approveAndCall(address,uint256) (#1035-1037)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1147-1150)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1156-1160)
recoverERC20(address,uint256) should be declared external:
- TokenRecover.recoverERC20(address,uint256) (#1181-1183)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Contract has 8% buy tax and 7% sell tax.
Taxes are low and contract ownership is renounced.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find KYC or doxxing proof
Unable to find token contract audit
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to find audit link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Unable to verify token contract address on the website
Young tokens have high risks of scam / price dump / death
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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 Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account