@croptop/core-v6 0.0.45 → 0.0.46
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 +2 -0
- package/package.json +7 -7
- package/script/ConfigureFeeProject.s.sol +5 -5
package/foundry.toml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@croptop/core-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.46",
|
|
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.
|
|
33
|
-
"@bananapus/core-v6": "^0.0.
|
|
32
|
+
"@bananapus/721-hook-v6": "^0.0.49",
|
|
33
|
+
"@bananapus/core-v6": "^0.0.49",
|
|
34
34
|
"@bananapus/ownable-v6": "^0.0.24",
|
|
35
|
-
"@bananapus/permission-ids-v6": "^0.0.
|
|
36
|
-
"@bananapus/router-terminal-v6": "^0.0.
|
|
37
|
-
"@bananapus/suckers-v6": "^0.0.
|
|
35
|
+
"@bananapus/permission-ids-v6": "^0.0.25",
|
|
36
|
+
"@bananapus/router-terminal-v6": "^0.0.43",
|
|
37
|
+
"@bananapus/suckers-v6": "^0.0.43",
|
|
38
38
|
"@openzeppelin/contracts": "5.6.1",
|
|
39
|
-
"@rev-net/core-v6": "^0.0.
|
|
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
|
-
|
|
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
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
347
|
+
preventOperatorAdjustingTiers: false,
|
|
348
|
+
preventOperatorUpdatingMetadata: false,
|
|
349
|
+
preventOperatorMinting: false,
|
|
350
|
+
preventOperatorIncreasingDiscountPercent: false
|
|
351
351
|
}),
|
|
352
352
|
allowedPosts: allowedPosts
|
|
353
353
|
});
|