@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 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
- Docs: <https://docs.juicebox.money>
6
- Architecture: [ARCHITECTURE.md](./ARCHITECTURE.md)
7
- User journeys: [USER_JOURNEYS.md](./USER_JOURNEYS.md)
8
- Skills: [SKILLS.md](./SKILLS.md)
9
- Risks: [RISKS.md](./RISKS.md)
10
- Administration: [ADMINISTRATION.md](./ADMINISTRATION.md)
11
- Arbitrage paths: [ARBITRAGE.md](./ARBITRAGE.md)
12
- Audit instructions: [AUDIT_INSTRUCTIONS.md](./AUDIT_INSTRUCTIONS.md)
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.79",
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.58",
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.55",
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",
@@ -161,6 +161,7 @@ library CoreDeploymentLib {
161
161
  string memory contractName
162
162
  )
163
163
  internal
164
+ view
164
165
  returns (address)
165
166
  {
166
167
  string memory filePath = string.concat(path, projectName, "/", networkName, "/", contractName, ".json");