@croptop/core-v6 0.0.43 → 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 +6 -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,8 @@ 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
|
+
scopeCashOutsToLocalBalances: false,
|
|
233
234
|
stageConfigurations: stageConfigurations
|
|
234
235
|
});
|
|
235
236
|
|
|
@@ -343,10 +344,10 @@ contract ConfigureFeeProjectScript is Script, Sphinx {
|
|
|
343
344
|
})
|
|
344
345
|
}),
|
|
345
346
|
salt: HOOK_SALT,
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
347
|
+
preventOperatorAdjustingTiers: false,
|
|
348
|
+
preventOperatorUpdatingMetadata: false,
|
|
349
|
+
preventOperatorMinting: false,
|
|
350
|
+
preventOperatorIncreasingDiscountPercent: false
|
|
350
351
|
}),
|
|
351
352
|
allowedPosts: allowedPosts
|
|
352
353
|
});
|