@croptop/core-v6 0.0.24 → 0.0.26
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.26",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,14 +16,14 @@
|
|
|
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.26",
|
|
20
20
|
"@bananapus/address-registry-v6": "^0.0.16",
|
|
21
|
-
"@bananapus/buyback-hook-v6": "^0.0.
|
|
22
|
-
"@bananapus/core-v6": "^0.0.
|
|
23
|
-
"@bananapus/ownable-v6": "^0.0.
|
|
24
|
-
"@bananapus/permission-ids-v6": "^0.0.
|
|
25
|
-
"@bananapus/router-terminal-v6": "^0.0.
|
|
26
|
-
"@bananapus/suckers-v6": "^0.0.
|
|
21
|
+
"@bananapus/buyback-hook-v6": "^0.0.24",
|
|
22
|
+
"@bananapus/core-v6": "^0.0.30",
|
|
23
|
+
"@bananapus/ownable-v6": "^0.0.16",
|
|
24
|
+
"@bananapus/permission-ids-v6": "^0.0.15",
|
|
25
|
+
"@bananapus/router-terminal-v6": "^0.0.24",
|
|
26
|
+
"@bananapus/suckers-v6": "^0.0.20",
|
|
27
27
|
"@openzeppelin/contracts": "^5.6.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
package/src/CTPublisher.sol
CHANGED
|
@@ -575,6 +575,7 @@ contract CTPublisher is JBPermissioned, ERC2771Context, ICTPublisher {
|
|
|
575
575
|
useVotingUnits: true,
|
|
576
576
|
cannotBeRemoved: false,
|
|
577
577
|
cannotIncreaseDiscountPercent: false,
|
|
578
|
+
cantBuyWithCredits: false,
|
|
578
579
|
splitPercent: post.splitPercent,
|
|
579
580
|
splits: post.splits
|
|
580
581
|
});
|
package/test/CTPublisher.t.sol
CHANGED
|
@@ -114,6 +114,7 @@ contract H19_FeeEvasion is Test {
|
|
|
114
114
|
transfersPausable: false,
|
|
115
115
|
cannotBeRemoved: false,
|
|
116
116
|
cannotIncreaseDiscountPercent: false,
|
|
117
|
+
cantBuyWithCredits: false,
|
|
117
118
|
splitPercent: 0,
|
|
118
119
|
resolvedUri: ""
|
|
119
120
|
});
|
|
@@ -210,6 +211,7 @@ contract H19_FeeEvasion is Test {
|
|
|
210
211
|
transfersPausable: false,
|
|
211
212
|
cannotBeRemoved: false,
|
|
212
213
|
cannotIncreaseDiscountPercent: false,
|
|
214
|
+
cantBuyWithCredits: false,
|
|
213
215
|
splitPercent: 0,
|
|
214
216
|
resolvedUri: ""
|
|
215
217
|
});
|