@croptop/core-v6 0.0.45 → 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/CHANGELOG.md CHANGED
@@ -13,6 +13,13 @@ This file describes the verified change from `croptop-core-v5` to the current `c
13
13
  - `CTDeployerAllowedPost`
14
14
  - `CTPost`
15
15
 
16
+ ## 0.0.47 — Bump v6 deps to nana-core-v6 0.0.53 cohort
17
+
18
+ - `@bananapus/core-v6`: `^0.0.49 → ^0.0.53` ([PR #145](https://github.com/Bananapus/nana-core-v6/pull/145)).
19
+ - `@bananapus/721-hook-v6`: `^0.0.49 → ^0.0.50`.
20
+ - `@bananapus/suckers-v6`: `^0.0.43 → ^0.0.46`.
21
+ - All `JBRulesetMetadata` test literals patched to include `pauseCrossProjectFeeFreeInflows: false`.
22
+
16
23
  ## Summary
17
24
 
18
25
  - `CTPost` and the related allowlist structs now carry split-routing data, so a post can route part of its payment through `JBSplit[]` recipients.
package/foundry.toml CHANGED
@@ -1,6 +1,8 @@
1
1
  [profile.default]
2
2
  solc = '0.8.28'
3
+ bytecode_hash = "none"
3
4
  evm_version = 'cancun'
5
+ via_ir = true
4
6
  optimizer_runs = 200
5
7
  libs = ["node_modules", "lib"]
6
8
  fs_permissions = [{ access = "read-write", path = "./"}]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@croptop/core-v6",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,14 +29,14 @@
29
29
  "artifacts": "source ./.env && npx sphinx artifacts --org-id 'ea165b21-7cdc-4d7b-be59-ecdd4c26bee4' --project-name 'croptop-core-v6'"
30
30
  },
31
31
  "dependencies": {
32
- "@bananapus/721-hook-v6": "^0.0.47",
33
- "@bananapus/core-v6": "^0.0.48",
32
+ "@bananapus/721-hook-v6": "^0.0.50",
33
+ "@bananapus/core-v6": "^0.0.53",
34
34
  "@bananapus/ownable-v6": "^0.0.24",
35
- "@bananapus/permission-ids-v6": "^0.0.23",
36
- "@bananapus/router-terminal-v6": "^0.0.37",
37
- "@bananapus/suckers-v6": "^0.0.37",
35
+ "@bananapus/permission-ids-v6": "^0.0.25",
36
+ "@bananapus/router-terminal-v6": "^0.0.43",
37
+ "@bananapus/suckers-v6": "^0.0.46",
38
38
  "@openzeppelin/contracts": "5.6.1",
39
- "@rev-net/core-v6": "^0.0.45"
39
+ "@rev-net/core-v6": "^0.0.55"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@bananapus/address-registry-v6": "^0.0.25",
@@ -229,7 +229,7 @@ contract ConfigureFeeProjectScript is Script, Sphinx {
229
229
  REVConfig memory revnetConfiguration = REVConfig({
230
230
  description: REVDescription({name: NAME, ticker: SYMBOL, uri: PROJECT_URI, salt: ERC20_SALT}),
231
231
  baseCurrency: ETH_CURRENCY,
232
- splitOperator: OPERATOR,
232
+ operator: OPERATOR,
233
233
  scopeCashOutsToLocalBalances: false,
234
234
  stageConfigurations: stageConfigurations
235
235
  });
@@ -344,10 +344,10 @@ contract ConfigureFeeProjectScript is Script, Sphinx {
344
344
  })
345
345
  }),
346
346
  salt: HOOK_SALT,
347
- preventSplitOperatorAdjustingTiers: false,
348
- preventSplitOperatorUpdatingMetadata: false,
349
- preventSplitOperatorMinting: false,
350
- preventSplitOperatorIncreasingDiscountPercent: false
347
+ preventOperatorAdjustingTiers: false,
348
+ preventOperatorUpdatingMetadata: false,
349
+ preventOperatorMinting: false,
350
+ preventOperatorIncreasingDiscountPercent: false
351
351
  }),
352
352
  allowedPosts: allowedPosts
353
353
  });