@rev-net/core-v6 0.0.79 → 0.0.81
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 +13 -8
- package/package.json +3 -3
- package/script/helpers/CoreDeploymentLib.sol +1 -0
package/README.md
CHANGED
|
@@ -2,14 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
`@rev-net/core-v6` deploys and operates Revnets: Juicebox project shapes with staged economics, optional tiered NFTs, cross-chain support, buyback integration, and token-collateralized loans.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
5
|
+
|
|
6
|
+
## Documentation
|
|
7
|
+
|
|
8
|
+
- [INVARIANTS.md](./INVARIANTS.md) — Per-contract guarantees + operation inventory
|
|
9
|
+
- [ARBITRAGE.md](./ARBITRAGE.md) — The three intentional protocol-beneficial arbitrage paths
|
|
10
|
+
- [ARCHITECTURE.md](./ARCHITECTURE.md) — Module layout
|
|
11
|
+
- [ADMINISTRATION.md](./ADMINISTRATION.md) — Admin surface (REVOwner + REVLoans ownable)
|
|
12
|
+
- [RISKS.md](./RISKS.md) — Threat model
|
|
13
|
+
- [USER_JOURNEYS.md](./USER_JOURNEYS.md) — Example flows
|
|
14
|
+
- [AUDIT_INSTRUCTIONS.md](./AUDIT_INSTRUCTIONS.md) — Auditor scope and orientation
|
|
15
|
+
- [SKILLS.md](./SKILLS.md) — Agent-oriented navigation map
|
|
16
|
+
- [STYLE_GUIDE.md](./STYLE_GUIDE.md) — Solidity conventions across the V6 ecosystem
|
|
17
|
+
- [CHANGELOG.md](./CHANGELOG.md) — Version history
|
|
13
18
|
|
|
14
19
|
## Overview
|
|
15
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rev-net/core-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.81",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@bananapus/721-hook-v6": "^0.0.59",
|
|
28
|
-
"@bananapus/buyback-hook-v6": "^0.0.
|
|
28
|
+
"@bananapus/buyback-hook-v6": "^0.0.64",
|
|
29
29
|
"@bananapus/core-v6": "^0.0.72",
|
|
30
30
|
"@bananapus/ownable-v6": "^0.0.32",
|
|
31
31
|
"@bananapus/permission-ids-v6": "^0.0.27",
|
|
32
|
-
"@bananapus/router-terminal-v6": "^0.0.
|
|
32
|
+
"@bananapus/router-terminal-v6": "^0.0.58",
|
|
33
33
|
"@bananapus/suckers-v6": "^0.0.60",
|
|
34
34
|
"@croptop/core-v6": "^0.0.60",
|
|
35
35
|
"@openzeppelin/contracts": "5.6.1",
|