@rev-net/core-v6 0.0.23 → 0.0.24

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rev-net/core-v6",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,14 +19,14 @@
19
19
  "artifacts": "source ./.env && npx sphinx artifacts --org-id 'ea165b21-7cdc-4d7b-be59-ecdd4c26bee4' --project-name 'revnet-core-v6'"
20
20
  },
21
21
  "dependencies": {
22
- "@bananapus/721-hook-v6": "^0.0.25",
22
+ "@bananapus/721-hook-v6": "^0.0.26",
23
23
  "@bananapus/buyback-hook-v6": "^0.0.24",
24
24
  "@bananapus/core-v6": "^0.0.30",
25
25
  "@bananapus/ownable-v6": "^0.0.16",
26
26
  "@bananapus/permission-ids-v6": "^0.0.15",
27
27
  "@bananapus/router-terminal-v6": "^0.0.24",
28
28
  "@bananapus/suckers-v6": "^0.0.20",
29
- "@croptop/core-v6": "^0.0.25",
29
+ "@croptop/core-v6": "^0.0.26",
30
30
  "@openzeppelin/contracts": "^5.6.1",
31
31
  "@uniswap/v4-core": "^1.0.2",
32
32
  "@uniswap/v4-periphery": "^1.0.3"
@@ -217,6 +217,7 @@ contract TestSplitWeightE2E is TestBaseWorkflow {
217
217
  useVotingUnits: false,
218
218
  cannotBeRemoved: false,
219
219
  cannotIncreaseDiscountPercent: false,
220
+ cantBuyWithCredits: false,
220
221
  splitPercent: SPLIT_PERCENT,
221
222
  splits: tierSplits
222
223
  });
@@ -428,6 +428,7 @@ contract TestSplitWeightFork is TestBaseWorkflow {
428
428
  useVotingUnits: false,
429
429
  cannotBeRemoved: false,
430
430
  cannotIncreaseDiscountPercent: false,
431
+ cantBuyWithCredits: false,
431
432
  splitPercent: SPLIT_PERCENT,
432
433
  splits: tierSplits
433
434
  });
@@ -434,6 +434,7 @@ abstract contract ForkTestBase is TestBaseWorkflow {
434
434
  useVotingUnits: false,
435
435
  cannotBeRemoved: false,
436
436
  cannotIncreaseDiscountPercent: false,
437
+ cantBuyWithCredits: false,
437
438
  splitPercent: SPLIT_PERCENT,
438
439
  splits: tierSplits
439
440
  });