Aarma is providing a safe, secure and user-friendly platform for managing your crypto assets conveniently with support for over 30+ blockchain networks
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
ERC20Votes._writeCheckpoint(ERC20Votes.Checkpoint[],function(uint256,uint256) returns(uint256),uint256) (#1860-1874) uses a dangerous strict equality:
- pos > 0 && ckpts[pos - 1].fromBlock == block.number (#1869)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
Variable EIP712._CACHED_DOMAIN_SEPARATOR (#583) is not in mixedCase
Variable EIP712._CACHED_CHAIN_ID (#584) is not in mixedCase
Variable EIP712._CACHED_THIS (#585) is not in mixedCase
Variable EIP712._HASHED_NAME (#587) is not in mixedCase
Variable EIP712._HASHED_VERSION (#588) is not in mixedCase
Variable EIP712._TYPE_HASH (#589) is not in mixedCase
Function IERC20Permit.DOMAIN_SEPARATOR() (#718) is not in mixedCase
Function ERC20Permit.DOMAIN_SEPARATOR() (#1607-1609) is not in mixedCase
Variable ERC20Permit._PERMIT_TYPEHASH (#1562-1563) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
ERC20Votes._moveVotingPower(address,address,uint256).newWeight_scope_1 (#1854) is a local variable never initialized
ERC20Votes._moveVotingPower(address,address,uint256).oldWeight_scope_0 (#1854) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
ERC20Permit.constructor(string).name (#1570) shadows:
- ERC20.name() (#1238-1240) (function)
- IERC20Metadata.name() (#1163) (function)
Rename the local variables that shadow another component.
Additional information: link
Variable 'ECDSA.tryRecover(bytes32,bytes).r (#378)' in ECDSA.tryRecover(bytes32,bytes) (#373-402) potentially used before declaration: r = mload(uint256)(signature + 0x20) (#395)
Variable 'ERC20Votes._moveVotingPower(address,address,uint256).newWeight (#1849)' in ERC20Votes._moveVotingPower(address,address,uint256) (#1842-1858) potentially used before declaration: (oldWeight,newWeight) = _writeCheckpoint(_checkpoints[dst],_add,amount) (#1854)
Variable 'ERC20Votes._moveVotingPower(address,address,uint256).oldWeight (#1849)' in ERC20Votes._moveVotingPower(address,address,uint256) (#1842-1858) potentially used before declaration: (oldWeight,newWeight) = _writeCheckpoint(_checkpoints[dst],_add,amount) (#1854)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
ERC20Permit.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#1575-1594) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,ERC20Permit: expired deadline) (#1584)
ERC20Votes.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#1767-1784) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= expiry,ERC20Votes: signature expired) (#1775)
Avoid relying on block.timestamp.
Additional information: link
ECDSA.tryRecover(bytes32,bytes) (#373-402) uses assembly
- INLINE ASM (#383-387)
- INLINE ASM (#394-397)
ECDSA.tryRecover(bytes32,bytes32,bytes32) (#431-443) uses assembly
- INLINE ASM (#438-441)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.2']
- ^0.8.0 (#7)
- ^0.8.0 (#251)
- ^0.8.0 (#321)
- ^0.8.0 (#557)
- ^0.8.0 (#663)
- ^0.8.0 (#726)
- ^0.8.0 (#772)
- ^0.8.0 (#818)
- ^0.8.0 (#868)
- ^0.8.0 (#895)
- ^0.8.0 (#988)
- ^0.8.0 (#1066)
- ^0.8.0 (#1151)
- ^0.8.0 (#1181)
- ^0.8.0 (#1539)
- ^0.8.0 (#1628)
- ^0.8.0 (#1890)
- ^0.8.0 (#2087)
- ^0.8.2 (#2130)
Use one Solidity version.
Additional information: link
Context._msgData() (#885-887) is never used and should be removed
Counters.decrement(Counters.Counter) (#754-760) is never used and should be removed
Counters.reset(Counters.Counter) (#762-764) is never used and should be removed
ECDSA.recover(bytes32,bytes) (#418-422) is never used and should be removed
ECDSA.recover(bytes32,bytes32,bytes32) (#450-458) is never used and should be removed
ECDSA.toEthSignedMessageHash(bytes) (#534-536) is never used and should be removed
ECDSA.toEthSignedMessageHash(bytes32) (#520-524) is never used and should be removed
ECDSA.tryRecover(bytes32,bytes) (#373-402) is never used and should be removed
ECDSA.tryRecover(bytes32,bytes32,bytes32) (#431-443) is never used and should be removed
ERC20Votes._add(uint256,uint256) (#1876-1878) is never used and should be removed
ERC20Votes._subtract(uint256,uint256) (#1880-1882) is never used and should be removed
Math.ceilDiv(uint256,uint256) (#807-810) is never used and should be removed
Math.max(uint256,uint256) (#781-783) is never used and should be removed
Math.min(uint256,uint256) (#788-790) is never used and should be removed
SafeCast.toInt128(int256) (#155-158) is never used and should be removed
SafeCast.toInt16(int256) (#209-212) is never used and should be removed
SafeCast.toInt256(uint256) (#239-243) is never used and should be removed
SafeCast.toInt32(int256) (#191-194) is never used and should be removed
SafeCast.toInt64(int256) (#173-176) is never used and should be removed
SafeCast.toInt8(int256) (#227-230) is never used and should be removed
SafeCast.toUint128(uint256) (#50-53) is never used and should be removed
SafeCast.toUint16(uint256) (#110-113) is never used and should be removed
SafeCast.toUint256(int256) (#137-140) is never used and should be removed
SafeCast.toUint64(uint256) (#80-83) is never used and should be removed
SafeCast.toUint8(uint256) (#125-128) is never used and should be removed
SafeCast.toUint96(uint256) (#65-68) is never used and should be removed
Strings.toHexString(uint256) (#287-298) is never used and should be removed
Strings.toHexString(uint256,uint256) (#303-313) is never used and should be removed
Strings.toString(uint256) (#262-282) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (#7) allows old versions
Pragma version^0.8.0 (#251) allows old versions
Pragma version^0.8.0 (#321) allows old versions
Pragma version^0.8.0 (#557) allows old versions
Pragma version^0.8.0 (#663) allows old versions
Pragma version^0.8.0 (#726) allows old versions
Pragma version^0.8.0 (#772) allows old versions
Pragma version^0.8.0 (#818) allows old versions
Pragma version^0.8.0 (#868) allows old versions
Pragma version^0.8.0 (#895) allows old versions
Pragma version^0.8.0 (#988) allows old versions
Pragma version^0.8.0 (#1066) allows old versions
Pragma version^0.8.0 (#1151) allows old versions
Pragma version^0.8.0 (#1181) allows old versions
Pragma version^0.8.0 (#1539) allows old versions
Pragma version^0.8.0 (#1628) allows old versions
Pragma version^0.8.0 (#1890) allows old versions
Pragma version^0.8.0 (#2087) allows old versions
Pragma version^0.8.2 (#2130) allows old versions
solc-0.8.2 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
Aarma.constructor() (#2133-2135) uses literals with too many digits:
- _mint(msg.sender,110000000 * 10 ** decimals()) (#2134)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find token on CoinHunt
Additional information: link
Token is marked as risky (blacklisted creator, fake name, dead project, etc.)
Additional information: link
Token has a considerable age, but social accounts / website are missing or have few users
Token has relatively low CoinGecko 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
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinMarketCap rank
Twitter account has relatively few followers
Last post in Twitter was more than 30 days ago
Unable to find Discord account
Unable to find Youtube account