@bananapus/omnichain-deployers-v6 0.0.46 → 0.0.47
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/package.json +2 -4
- package/CHANGELOG.md +0 -76
package/package.json
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bananapus/omnichain-deployers-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.47",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/Bananapus/nana-omnichain-deployers-v6"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"CHANGELOG.md",
|
|
11
10
|
"foundry.toml",
|
|
12
11
|
"references/",
|
|
13
12
|
"remappings.txt",
|
|
14
|
-
"script/
|
|
15
|
-
"script/helpers/",
|
|
13
|
+
"script/",
|
|
16
14
|
"src/"
|
|
17
15
|
],
|
|
18
16
|
"engines": {
|
package/CHANGELOG.md
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## 0.0.43 — Bump v6 deps to nana-core-v6 0.0.53 cohort
|
|
4
|
-
|
|
5
|
-
- `@bananapus/core-v6`: `^0.0.48 → ^0.0.53` ([PR #145](https://github.com/Bananapus/nana-core-v6/pull/145) — drops `via_ir` requirement on `JBCashOutHookSpecsLib`; new `pauseCrossProjectFeeFreeInflows` ruleset metadata flag for cross-project cashout opt-out).
|
|
6
|
-
- `@bananapus/721-hook-v6`: `^0.0.47 → ^0.0.50`.
|
|
7
|
-
- `@bananapus/suckers-v6`: `^0.0.37 → ^0.0.46`.
|
|
8
|
-
- `@bananapus/buyback-hook-v6`: `^0.0.39 → ^0.0.46`.
|
|
9
|
-
- `@bananapus/permission-ids-v6`: `^0.0.23 → ^0.0.25` (new `SET_SUCKER_PEER` permission referenced by suckers 0.0.46).
|
|
10
|
-
- `JBBuybackHook` constructor signature changed in 0.0.45 (V4 PoolManager + Hooks moved to a one-shot setter). Updated `OmnichainForkTestBase` to construct then call `setChainSpecificConstants`.
|
|
11
|
-
- All `JBRulesetMetadata` test literals patched to include `pauseCrossProjectFeeFreeInflows: false`. `JBBeforeCashOutRecordedContext` literals are unchanged (no new fields).
|
|
12
|
-
|
|
13
|
-
## v6 carry-forward hook fix
|
|
14
|
-
|
|
15
|
-
- **Carry-forward hook selection improved.** `queueRulesetsOf` now checks `latestQueuedOf(projectId)` before falling back to `currentOf(projectId)` when carrying forward a 721 hook. Previously it only read `currentOf`, which could miss a recently queued (and approved) ruleset's hook config. The source ruleset must have approval status `Approved` or `Empty` and a stored hook config in the deployer.
|
|
16
|
-
- The `useDataHookForCashOut` flag is preserved from whichever source ruleset is selected during carry-forward.
|
|
17
|
-
|
|
18
|
-
## Scope
|
|
19
|
-
|
|
20
|
-
This file describes the verified change from `nana-omnichain-deployers-v5` to the current `nana-omnichain-deployers-v6` repo.
|
|
21
|
-
|
|
22
|
-
## Current v6 surface
|
|
23
|
-
|
|
24
|
-
- `JBOmnichainDeployer`
|
|
25
|
-
- `IJBOmnichainDeployer`
|
|
26
|
-
- `JBDeployerHookConfig`
|
|
27
|
-
- `JBOmnichain721Config`
|
|
28
|
-
- `JBTiered721HookConfig`
|
|
29
|
-
|
|
30
|
-
## Summary
|
|
31
|
-
|
|
32
|
-
- The deployer now assumes a 721 hook is part of the standard deployment path instead of a special-case path.
|
|
33
|
-
- Hook composition is more explicit. The current repo separates 721-hook behavior from extra data-hook behavior and combines them deliberately.
|
|
34
|
-
- The v6 test suite includes dedicated coverage for ownership transfer, controller validation, empty ruleset edge cases, hook composition, and invariants that were not present in the small v5 tree.
|
|
35
|
-
- The repo moved to the v6 Solidity and dependency baseline.
|
|
36
|
-
|
|
37
|
-
## Verified deltas
|
|
38
|
-
|
|
39
|
-
- `launch721ProjectFor(...)`, `launch721RulesetsFor(...)`, and `queue721RulesetsOf(...)` no longer define the public API shape.
|
|
40
|
-
- Their role is covered by overloaded `launchProjectFor(...)`, `launchRulesetsFor(...)`, and `queueRulesetsOf(...)` entry points that accept `JBOmnichain721Config`.
|
|
41
|
-
- `extraDataHookOf(...)` and `tiered721HookOf(...)` replace the older single `dataHookOf(...)` view model.
|
|
42
|
-
- The overloaded launch and queue functions now return the `IJB721TiersHook` they deploy or carry forward.
|
|
43
|
-
|
|
44
|
-
## Breaking ABI changes
|
|
45
|
-
|
|
46
|
-
- The 721-specific launch and queue entry points were removed from the public API shape.
|
|
47
|
-
- `dataHookOf(...)` was replaced by `extraDataHookOf(...)` plus `tiered721HookOf(...)`.
|
|
48
|
-
- `launchProjectFor(...)`, `launchRulesetsFor(...)`, and `queueRulesetsOf(...)` now have overloads that return the hook.
|
|
49
|
-
- `JBOmnichain721Config` replaces the old direct 721 deploy config entrypoint model.
|
|
50
|
-
|
|
51
|
-
## Indexer impact
|
|
52
|
-
|
|
53
|
-
- Hook composition is now split across two tracked hook sources instead of one.
|
|
54
|
-
- Launch and queue flows should expect a 721 hook in the returned state and in the deployer's stored per-ruleset data.
|
|
55
|
-
|
|
56
|
-
## Migration notes
|
|
57
|
-
|
|
58
|
-
- Update any code that expected separate "with 721" and "without 721" deployment paths to behave like v5.
|
|
59
|
-
- Re-check ownership assumptions after hook deployment. The current repo is stricter and more explicit about that flow.
|
|
60
|
-
- If you decode launch or queue inputs, use the current v6 structs instead of v5 layouts.
|
|
61
|
-
|
|
62
|
-
## ABI appendix
|
|
63
|
-
|
|
64
|
-
- Removed public API shape
|
|
65
|
-
- `launch721ProjectFor(...)`
|
|
66
|
-
- `launch721RulesetsFor(...)`
|
|
67
|
-
- `queue721RulesetsOf(...)`
|
|
68
|
-
- Replaced with overload families
|
|
69
|
-
- `launchProjectFor(...)`
|
|
70
|
-
- `launchRulesetsFor(...)`
|
|
71
|
-
- `queueRulesetsOf(...)`
|
|
72
|
-
- Replaced hook lookup model
|
|
73
|
-
- `dataHookOf(...)` -> `extraDataHookOf(...)` + `tiered721HookOf(...)`
|
|
74
|
-
- New migration-sensitive structs
|
|
75
|
-
- `JBOmnichain721Config`
|
|
76
|
-
- `JBTiered721HookConfig`
|