Omniscia Vector Finance Audit
baseERC20 Static Analysis Findings
baseERC20 Static Analysis Findings
CON-01S: Non-Standard Contract Name
Type | Severity | Location |
---|---|---|
Code Style | Informational | baseERC20.sol:L31 |
Description:
The linked contract is set as baseERC20
which is a non-standard name that does not conform to the CapWords
style.
Example:
contracts/utils/baseERC20.sol
31contract baseERC20 is Context{
Recommendation:
We advise the official Solidity style guide to be adhered to by renaming the contract and associated file to BaseERC20
.
Alleviation:
The contract was properly renamed to BaseERC20
.