Omniscia Nori Audit

NORI Static Analysis Findings

NORI Static Analysis Findings

NOR-01S: Illegible Numeric Literal

TypeSeverityLocation
Code StyleNORI.sol:L11

Description:

The linked numeric literal does not contain a separator and as such is illegible.

Example:

contracts/NORI.sol
11500000000 * 10**18, // 500,000,000 NORI

Recommendation:

We advise the special underscore (_) separator to be introduced to increase the value's legibility (i.e. 10000 becomes 10_000).

Alleviation:

The linked literal was properly separated using the underscore (_) character.