@bannynet/core-v6 0.0.30 → 0.0.31

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/foundry.toml CHANGED
@@ -1,5 +1,6 @@
1
1
  [profile.default]
2
2
  solc = '0.8.28'
3
+ bytecode_hash = "none"
3
4
  evm_version = 'cancun'
4
5
  optimizer_runs = 200
5
6
  via_ir = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bannynet/core-v6",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,16 +32,17 @@
32
32
  "artifacts": "source ./.env && npx sphinx artifacts --org-id 'ea165b21-7cdc-4d7b-be59-ecdd4c26bee4' --project-name 'banny-core-v6'"
33
33
  },
34
34
  "dependencies": {
35
- "@bananapus/721-hook-v6": "^0.0.43",
36
- "@bananapus/core-v6": "^0.0.48",
37
- "@bananapus/router-terminal-v6": "^0.0.36",
38
- "@bananapus/suckers-v6": "^0.0.33",
35
+ "@bananapus/721-hook-v6": "^0.0.49",
36
+ "@bananapus/buyback-hook-v6": "^0.0.45",
37
+ "@bananapus/core-v6": "^0.0.49",
38
+ "@bananapus/router-terminal-v6": "^0.0.43",
39
+ "@bananapus/suckers-v6": "^0.0.43",
39
40
  "@openzeppelin/contracts": "5.6.1",
40
- "@rev-net/core-v6": "^0.0.39",
41
+ "@rev-net/core-v6": "^0.0.55",
41
42
  "keccak": "3.0.4"
42
43
  },
43
44
  "devDependencies": {
44
- "@bananapus/address-registry-v6": "0.0.25",
45
+ "@bananapus/address-registry-v6": "^0.0.25",
45
46
  "@sphinx-labs/plugins": "0.33.3"
46
47
  }
47
48
  }
@@ -214,7 +214,8 @@ contract DeployScript is Script, Sphinx {
214
214
  REVConfig memory revnetConfiguration = REVConfig({
215
215
  description: REVDescription({name: NAME, ticker: SYMBOL, uri: PROJECT_URI, salt: ERC20_SALT}),
216
216
  baseCurrency: ETH_CURRENCY,
217
- splitOperator: operator,
217
+ operator: operator,
218
+ scopeCashOutsToLocalBalances: false,
218
219
  stageConfigurations: stageConfigurations
219
220
  });
220
221
 
@@ -367,10 +368,10 @@ contract DeployScript is Script, Sphinx {
367
368
  })
368
369
  }),
369
370
  salt: HOOK_SALT,
370
- preventSplitOperatorAdjustingTiers: false,
371
- preventSplitOperatorUpdatingMetadata: false,
372
- preventSplitOperatorMinting: false,
373
- preventSplitOperatorIncreasingDiscountPercent: false
371
+ preventOperatorAdjustingTiers: false,
372
+ preventOperatorUpdatingMetadata: false,
373
+ preventOperatorMinting: false,
374
+ preventOperatorIncreasingDiscountPercent: false
374
375
  })
375
376
  });
376
377
  }