The First Decentralized Pet Ecosystem
Share Pet NFTs, Meet Friends, Join Pet Groups, & Find Local Pet Peers & Services. Even create a Digital PawPrint of Your Pet's Records.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
FreezableToken.toKey(address,uint256) (#516-523) is declared view but contains assembly code
Ensure the attributes of contracts compiled prior to Solidity 0.5.0 are correct.
Additional information: link
FreezableToken.releaseOnce() (#477-499) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(uint64(block.timestamp) > head) (#481)
FreezableToken.releaseAll() (#505-514) uses timestamp for comparisons
Dangerous comparisons:
- release != 0 && block.timestamp > release (#509)
FreezableToken.freeze(address,uint64) (#525-556) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_until > block.timestamp) (#526)
Avoid relying on block.timestamp.
Additional information: link
FreezableToken.toKey(address,uint256) (#516-523) uses assembly
- INLINE ASM (#519-523)
Do not use evm assembly.
Additional information: link
FreezableToken.releaseOnce() (#477-499) has costly operations inside a loop:
- delete freezings[currentKey] (#487)
FreezableToken.releaseOnce() (#477-499) has costly operations inside a loop:
- delete chains[headKey] (#493)
FreezableToken.releaseOnce() (#477-499) has costly operations inside a loop:
- delete chains[currentKey] (#496)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMath.div(uint256,uint256) (#58-63) is never used and should be removed
SafeMath.mul(uint256,uint256) (#42-53) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.4.23 (#16) allows old versions
solc-0.4.24 is not recommended for deployment
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 BasicToken.transfer(address,uint256)._to (#108) is not in mixedCase
Parameter BasicToken.transfer(address,uint256)._value (#108) is not in mixedCase
Parameter BasicToken.balanceOf(address)._owner (#123) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._from (#169) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._to (#170) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._value (#171) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._spender (#197) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._value (#197) is not in mixedCase
Parameter StandardToken.allowance(address,address)._owner (#210) is not in mixedCase
Parameter StandardToken.allowance(address,address)._spender (#211) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._spender (#231) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._addedValue (#232) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._spender (#254) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._subtractedValue (#255) is not in mixedCase
Parameter Ownable.transferOwnership(address)._newOwner (#318) is not in mixedCase
Parameter MintableToken.mint(address,uint256)._to (#364) is not in mixedCase
Parameter MintableToken.mint(address,uint256)._amount (#365) is not in mixedCase
Parameter FreezableToken.balanceOf(address)._owner (#407) is not in mixedCase
Parameter FreezableToken.actualBalanceOf(address)._owner (#416) is not in mixedCase
Parameter FreezableToken.freezingBalanceOf(address)._owner (#420) is not in mixedCase
Parameter FreezableToken.freezingCount(address)._addr (#428) is not in mixedCase
Parameter FreezableToken.getFreezing(address,uint256)._addr (#441) is not in mixedCase
Parameter FreezableToken.getFreezing(address,uint256)._index (#441) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._to (#459) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._amount (#459) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._until (#459) is not in mixedCase
Parameter FreezableToken.freeze(address,uint64)._to (#525) is not in mixedCase
Parameter FreezableToken.freeze(address,uint64)._until (#525) is not in mixedCase
Parameter BurnableToken.burn(uint256)._value (#572) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._to (#645) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._amount (#645) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._until (#645) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._from (#697) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._to (#697) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._value (#697) is not in mixedCase
Parameter MainToken.transfer(address,uint256)._to (#702) is not in mixedCase
Parameter MainToken.transfer(address,uint256)._value (#702) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
FreezableToken.toKey(address,uint256) (#516-523) uses literals with too many digits:
- result = 0x5749534800000000000000000000000000000000000000000000000000000000 (#518)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
totalSupply() should be declared external:
- BasicToken.totalSupply() (#99-101)
- ERC20Basic.totalSupply() (#25)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#135-136)
- StandardToken.allowance(address,address) (#209-218)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#141)
- StandardToken.approve(address,uint256) (#197-201)
increaseApproval(address,uint256) should be declared external:
- StandardToken.increaseApproval(address,uint256) (#230-241)
decreaseApproval(address,uint256) should be declared external:
- StandardToken.decreaseApproval(address,uint256) (#253-268)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#309-312)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#318-320)
mint(address,uint256) should be declared external:
- MintableToken.mint(address,uint256) (#363-377)
finishMinting() should be declared external:
- MintableToken.finishMinting() (#383-387)
actualBalanceOf(address) should be declared external:
- FreezableToken.actualBalanceOf(address) (#416-418)
freezingBalanceOf(address) should be declared external:
- FreezableToken.freezingBalanceOf(address) (#420-422)
freezingCount(address) should be declared external:
- FreezableToken.freezingCount(address) (#428-434)
freezeTo(address,uint256,uint64) should be declared external:
- FreezableToken.freezeTo(address,uint256,uint64) (#459-472)
releaseAll() should be declared external:
- FreezableToken.releaseAll() (#505-514)
burn(uint256) should be declared external:
- BurnableToken.burn(uint256) (#572-574)
pause() should be declared external:
- Pausable.pause() (#620-623)
unpause() should be declared external:
- Pausable.unpause() (#628-631)
mintAndFreeze(address,uint256,uint64) should be declared external:
- FreezableMintableToken.mintAndFreeze(address,uint256,uint64) (#645-657)
name() should be declared external:
- MainToken.name() (#685-687)
symbol() should be declared external:
- MainToken.symbol() (#689-691)
decimals() should be declared external:
- MainToken.decimals() (#693-695)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find code repository for the project
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
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
Token has relatively low CoinGecko rank
Last post in Twitter was more than 30 days ago