@bananapus/ownable-v6 0.0.32 → 0.0.33
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/README.md +11 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
`@bananapus/ownable-v6` is an ownership helper for contracts that should be controlled by a Juicebox project instead of a fixed wallet. It keeps the familiar `Ownable` shape while letting ownership follow a project NFT and optional delegated permissions.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
- [ARCHITECTURE.md](./ARCHITECTURE.md) — system architecture and component interactions
|
|
8
|
+
- [INVARIANTS.md](./INVARIANTS.md) — guarantees enforced by the contracts
|
|
9
|
+
- [USER_JOURNEYS.md](./USER_JOURNEYS.md) — typical flows for each actor
|
|
10
|
+
- [RISKS.md](./RISKS.md) — known risks and operational caveats
|
|
11
|
+
- [ADMINISTRATION.md](./ADMINISTRATION.md) — administrative powers and lifecycle
|
|
12
|
+
- [SKILLS.md](./SKILLS.md) — reusable patterns and gotchas for builders
|
|
13
|
+
- [STYLE_GUIDE.md](./STYLE_GUIDE.md) — code style conventions
|
|
14
|
+
- [AUDIT_INSTRUCTIONS.md](./AUDIT_INSTRUCTIONS.md) — guidance for auditors
|
|
15
|
+
- [CHANGELOG.md](./CHANGELOG.md) — release notes
|
|
11
16
|
|
|
12
17
|
## Overview
|
|
13
18
|
|