@bananapus/permission-ids-v6 0.0.11 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUDIT_INSTRUCTIONS.md +3 -3
- package/STYLE_GUIDE.md +1 -1
- package/package.json +1 -1
package/AUDIT_INSTRUCTIONS.md
CHANGED
|
@@ -18,12 +18,12 @@ From `foundry.toml`:
|
|
|
18
18
|
|
|
19
19
|
| Setting | Value |
|
|
20
20
|
|---------|-------|
|
|
21
|
-
| Solidity version |
|
|
21
|
+
| Solidity version | `^0.8.28` |
|
|
22
22
|
| EVM target | `cancun` |
|
|
23
23
|
| Optimizer | Enabled, 200 runs |
|
|
24
|
-
| Pragma in source | `^0.8.0` (flexible, compiled with 0.8.28) |
|
|
24
|
+
| Pragma in source | `^0.8.0` (flexible, compiled with ^0.8.28) |
|
|
25
25
|
|
|
26
|
-
Note: The library pragma is `^0.8.0` rather than a fixed version, since consuming contracts may compile it with their own Solidity version. The `foundry.toml` pins
|
|
26
|
+
Note: The library pragma is `^0.8.0` rather than a fixed version, since consuming contracts may compile it with their own Solidity version. The `foundry.toml` pins `^0.8.28` for local builds.
|
|
27
27
|
|
|
28
28
|
## Previous Audit Findings
|
|
29
29
|
|
package/STYLE_GUIDE.md
CHANGED
|
@@ -21,7 +21,7 @@ One contract/interface/struct/enum per file. Name the file after the type it con
|
|
|
21
21
|
|
|
22
22
|
```solidity
|
|
23
23
|
// Contracts — pin to exact version
|
|
24
|
-
pragma solidity 0.8.28;
|
|
24
|
+
pragma solidity ^0.8.28;
|
|
25
25
|
|
|
26
26
|
// Interfaces, structs, enums — caret for forward compatibility
|
|
27
27
|
pragma solidity ^0.8.0;
|