@croptop/core-v6 0.0.26 → 0.0.27
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": "@croptop/core-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.27",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"artifacts": "source ./.env && npx sphinx artifacts --org-id 'ea165b21-7cdc-4d7b-be59-ecdd4c26bee4' --project-name 'croptop-core-v5'"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@bananapus/721-hook-v6": "^0.0.
|
|
19
|
+
"@bananapus/721-hook-v6": "^0.0.28",
|
|
20
20
|
"@bananapus/address-registry-v6": "^0.0.16",
|
|
21
21
|
"@bananapus/buyback-hook-v6": "^0.0.24",
|
|
22
22
|
"@bananapus/core-v6": "^0.0.30",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@openzeppelin/contracts": "^5.6.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@rev-net/core-v6": "^0.0.
|
|
30
|
+
"@rev-net/core-v6": "^0.0.24",
|
|
31
31
|
"@sphinx-labs/plugins": "^0.33.1"
|
|
32
32
|
}
|
|
33
33
|
}
|
|
@@ -332,7 +332,6 @@ contract ConfigureFeeProjectScript is Script, Sphinx {
|
|
|
332
332
|
tiersConfig: JB721InitTiersConfig({
|
|
333
333
|
tiers: new JB721TierConfig[](0), currency: ETH_CURRENCY, decimals: DECIMALS
|
|
334
334
|
}),
|
|
335
|
-
reserveBeneficiary: address(0),
|
|
336
335
|
flags: REV721TiersHookFlags({
|
|
337
336
|
noNewTiersWithReserves: false,
|
|
338
337
|
noNewTiersWithVotes: true,
|
package/src/CTPublisher.sol
CHANGED
|
@@ -573,8 +573,8 @@ contract CTPublisher is JBPermissioned, ERC2771Context, ICTPublisher {
|
|
|
573
573
|
useReserveBeneficiaryAsDefault: false,
|
|
574
574
|
transfersPausable: false,
|
|
575
575
|
useVotingUnits: true,
|
|
576
|
-
|
|
577
|
-
|
|
576
|
+
cantBeRemoved: false,
|
|
577
|
+
cantIncreaseDiscountPercent: false,
|
|
578
578
|
cantBuyWithCredits: false,
|
|
579
579
|
splitPercent: post.splitPercent,
|
|
580
580
|
splits: post.splits
|
package/test/CTPublisher.t.sol
CHANGED
|
@@ -813,8 +813,8 @@ contract TestCTPublisher is Test {
|
|
|
813
813
|
useReserveBeneficiaryAsDefault: false,
|
|
814
814
|
transfersPausable: false,
|
|
815
815
|
useVotingUnits: true,
|
|
816
|
-
|
|
817
|
-
|
|
816
|
+
cantBeRemoved: false,
|
|
817
|
+
cantIncreaseDiscountPercent: false,
|
|
818
818
|
cantBuyWithCredits: false,
|
|
819
819
|
splitPercent: 250_000_000,
|
|
820
820
|
splits: splits
|
|
@@ -112,8 +112,8 @@ contract H19_FeeEvasion is Test {
|
|
|
112
112
|
discountPercent: 0,
|
|
113
113
|
allowOwnerMint: false,
|
|
114
114
|
transfersPausable: false,
|
|
115
|
-
|
|
116
|
-
|
|
115
|
+
cantBeRemoved: false,
|
|
116
|
+
cantIncreaseDiscountPercent: false,
|
|
117
117
|
cantBuyWithCredits: false,
|
|
118
118
|
splitPercent: 0,
|
|
119
119
|
resolvedUri: ""
|
|
@@ -209,8 +209,8 @@ contract H19_FeeEvasion is Test {
|
|
|
209
209
|
discountPercent: 0,
|
|
210
210
|
allowOwnerMint: false,
|
|
211
211
|
transfersPausable: false,
|
|
212
|
-
|
|
213
|
-
|
|
212
|
+
cantBeRemoved: false,
|
|
213
|
+
cantIncreaseDiscountPercent: false,
|
|
214
214
|
cantBuyWithCredits: false,
|
|
215
215
|
splitPercent: 0,
|
|
216
216
|
resolvedUri: ""
|
|
@@ -172,8 +172,8 @@ contract L52_StaleTierIdMapping is Test {
|
|
|
172
172
|
discountPercent: 0,
|
|
173
173
|
allowOwnerMint: false,
|
|
174
174
|
transfersPausable: false,
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
cantBeRemoved: false,
|
|
176
|
+
cantIncreaseDiscountPercent: false,
|
|
177
177
|
cantBuyWithCredits: false,
|
|
178
178
|
splitPercent: 0,
|
|
179
179
|
resolvedUri: ""
|