@bananapus/ownable-v6 0.0.9 → 0.0.11
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/ADMINISTRATION.md +1 -1
- package/AUDIT_INSTRUCTIONS.md +133 -0
- package/CHANGE_LOG.md +229 -0
- package/RISKS.md +15 -17
- package/USER_JOURNEYS.md +245 -0
- package/package.json +3 -3
- package/src/JBOwnable.sol +4 -1
- package/src/JBOwnableOverrides.sol +5 -1
- package/test/OwnableEdgeCases.t.sol +1 -1
- package/docs/book.css +0 -13
- package/docs/book.toml +0 -12
- package/docs/solidity.min.js +0 -74
- package/docs/src/README.md +0 -131
- package/docs/src/SUMMARY.md +0 -9
- package/docs/src/src/JBOwnable.sol/contract.JBOwnable.md +0 -71
- package/docs/src/src/JBOwnableOverrides.sol/abstract.JBOwnableOverrides.md +0 -216
- package/docs/src/src/README.md +0 -7
- package/docs/src/src/interfaces/IJBOwnable.sol/interface.IJBOwnable.md +0 -67
- package/docs/src/src/interfaces/README.md +0 -4
- package/docs/src/src/structs/JBOwner.sol/struct.JBOwner.md +0 -23
- package/docs/src/src/structs/README.md +0 -4
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# JBOwner
|
|
2
|
-
[Git Source](https://github.com/Bananapus/nana-ownable/blob/a74b3181e75adaf0ee0c93cb00bcc5709ca8f314/src/struct/JBOwner.sol)
|
|
3
|
-
|
|
4
|
-
Owner information for a given instance of `JBOwnableOverrides`.
|
|
5
|
-
|
|
6
|
-
**Notes:**
|
|
7
|
-
- member: owner If `projectId` is 0, this address has owner access.
|
|
8
|
-
|
|
9
|
-
- member: projectId The owner of the `JBProjects` ERC-721 with this ID has owner access. If this is 0, the
|
|
10
|
-
`owner` address has owner access.
|
|
11
|
-
|
|
12
|
-
- member: permissionId The permission ID which corresponds to owner access. See `JBPermissions` in `nana-core`
|
|
13
|
-
and `nana-permission-ids`.
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
```solidity
|
|
17
|
-
struct JBOwner {
|
|
18
|
-
address owner;
|
|
19
|
-
uint88 projectId;
|
|
20
|
-
uint8 permissionId;
|
|
21
|
-
}
|
|
22
|
-
```
|
|
23
|
-
|