DeFiFoundry
20,000 USDC
View results
Submission Details
Severity: low
Invalid

Large literal values multiples of 10000 can be replaced with scientific notation

Summary

Use e notation, for example: 1e8, instead of its full numeric value.

Vulnerability Details

File: src/FjordToken.sol

8: _mint(msg.sender, 100_000_000 ether);

Impact

None

Tools Used

Aderyn

Recommendations

- _mint(msg.sender, 100_000_000 ether);
+ _mint(msg.sender, 1e8 ether);
Updates

Lead Judging Commences

inallhonesty Lead Judge 12 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.