USDF is the token for the economic NFT game Baby Inu.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
UsdfDigital.claimStuckTokens(address) (#187-191) ignores return value by erc20token.transfer(owner,balance) (#190)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Token is flagged by TokenSniffer (admin)
Contract ownership is not renounced (belongs to a wallet)
UsdfDigital.clearETH()._owner (#217) lacks a zero-check on :
- _owner.transfer(address(this).balance) (#218)
Owned.transferOwnership(address)._newOwner (#53) lacks a zero-check on :
- newOwner = _newOwner (#54)
Check that the address is not zero.
Additional information: link
solc-0.5.10 is not recommended for deployment
Pragma version>=0.5.10 (#1) 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
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** uint256(decimals) (#81)
UsdfDigital.constructor() (#142-147) uses literals with too many digits:
- startAirdrop(block.number,99999999,100 * 10 ** uint256(decimals),20000000) (#145)
UsdfDigital.tokenSale(address) (#168-185) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#175)
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- Transfer(address(0),owner,780000000 * 10 ** uint256(decimals)) (#84)
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- balances[address(this)] = 220000000 * 10 ** uint256(decimals) (#83)
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- balances[owner] = 780000000 * 10 ** uint256(decimals) (#82)
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- Transfer(address(0),address(this),220000000 * 10 ** uint256(decimals)) (#85)
UsdfDigital.getAirdrop(address) (#150-166) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#155)
UsdfDigital.constructor() (#142-147) uses literals with too many digits:
- startSale(block.number,99999999,0,100000 * 10 ** uint256(decimals),200000000) (#146)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
UsdfDigital.startSale(uint256,uint256,uint256,uint256,uint256) (#207-214) should emit an event for:
- sSBlock = _sSBlock (#208)
- sEBlock = _sEBlock (#209)
- sChunk = _sChunk (#210)
- sPrice = _sPrice (#211)
- sCap = _sCap (#212)
UsdfDigital.startAirdrop(uint256,uint256,uint256,uint256) (#200-206) should emit an event for:
- aSBlock = _aSBlock (#201)
- aEBlock = _aEBlock (#202)
- aAmt = _aAmt (#203)
- aCap = _aCap (#204)
Emit an event for critical parameter changes.
Additional information: link
UsdfDigital.getAirdrop(address) (#150-166) compares to a boolean constant:
-require(bool,string)(_hasClaimed[msg.sender] != true,You have already claimed!) (#153)
Remove the equality to the boolean constant.
Additional information: link
SafeMath.mul(uint256,uint256) (#12-15) is never used and should be removed
SafeMath.div(uint256,uint256) (#16-19) is never used and should be removed
Remove unused functions.
Additional information: link
Variable TokenBEP20._totalSupply (#70) is not in mixedCase
Parameter UsdfDigital.tokenSale(address)._refer (#168) is not in mixedCase
Parameter UsdfDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#207) is not in mixedCase
Parameter UsdfDigital.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#200) is not in mixedCase
Parameter UsdfDigital.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#200) is not in mixedCase
Parameter UsdfDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#207) is not in mixedCase
Parameter UsdfDigital.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#200) is not in mixedCase
Parameter UsdfDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#207) is not in mixedCase
Parameter UsdfDigital.getAirdrop(address)._refer (#150) is not in mixedCase
Parameter Owned.transferOwnership(address)._newOwner (#53) is not in mixedCase
Parameter UsdfDigital.claimStuckTokens(address)._token (#187) is not in mixedCase
Parameter UsdfDigital.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#200) is not in mixedCase
Parameter UsdfDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#207) is not in mixedCase
Variable TokenBEP20._hasClaimed (#72) is not in mixedCase
Parameter UsdfDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#207) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
receiveApproval(address,uint256,address,bytes) should be declared external:
- ApproveAndCallFallBack.receiveApproval(address,uint256,address,bytes) (#35)
totalSupply() should be declared external:
- BEP20Interface.totalSupply() (#23)
- TokenBEP20.totalSupply() (#88-90)
acceptOwnership() should be declared external:
- Owned.acceptOwnership() (#56-61)
approveAndCall(address,uint256,bytes) should be declared external:
- TokenBEP20.approveAndCall(address,uint256,bytes) (#115-120)
clearETH() should be declared external:
- UsdfDigital.clearETH() (#216-219)
viewSale() should be declared external:
- UsdfDigital.viewSale() (#196-198)
allowance(address,address) should be declared external:
- BEP20Interface.allowance(address,address) (#25)
- TokenBEP20.allowance(address,address) (#112-114)
getAirdrop(address) should be declared external:
- UsdfDigital.getAirdrop(address) (#150-166)
transferOwnership(address) should be declared external:
- Owned.transferOwnership(address) (#53-55)
tokenSale(address) should be declared external:
- UsdfDigital.tokenSale(address) (#168-185)
viewAirdrop() should be declared external:
- UsdfDigital.viewAirdrop() (#193-195)
transferFrom(address,address,uint256) should be declared external:
- BEP20Interface.transferFrom(address,address,uint256) (#28)
- TokenBEP20.transferFrom(address,address,uint256) (#105-111)
approve(address,uint256) should be declared external:
- BEP20Interface.approve(address,uint256) (#27)
- TokenBEP20.approve(address,uint256) (#100-104)
transfer(address,uint256) should be declared external:
- BEP20Interface.transfer(address,uint256) (#26)
- TokenBEP20.transfer(address,uint256) (#94-99)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
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
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
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 30 days ago
Unable to find Discord account