@bannynet/core-v6 0.0.16 → 0.0.17
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 +3 -3
- package/script/Add.Denver.s.sol +2 -2
- package/script/Deploy.s.sol +8 -8
- package/script/Drop1.s.sol +94 -94
- package/test/Banny721TokenUriResolver.t.sol +2 -2
- package/test/BannyAttacks.t.sol +2 -2
- package/test/DecorateFlow.t.sol +2 -2
- package/test/Fork.t.sol +6 -6
- package/test/OutfitTransferLifecycle.t.sol +2 -2
- package/test/TestAuditGaps.sol +2 -2
- package/test/TestQALastMile.t.sol +2 -2
- package/test/audit/AntiStrandingRetention.t.sol +2 -2
- package/test/audit/BurnedBodyStrandsAssets.t.sol +2 -2
- package/test/audit/MergedOutfitExclusivity.t.sol +2 -2
- package/test/audit/TryTransferFromStrandsAssets.t.sol +2 -2
- package/test/regression/BodyCategoryValidation.t.sol +2 -2
- package/test/regression/BurnedTokenCheck.t.sol +2 -2
- package/test/regression/CEIReorder.t.sol +2 -2
- package/test/regression/RemovedTierDesync.t.sol +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bannynet/core-v6",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"artifacts": "source ./.env && npx sphinx artifacts --org-id 'ea165b21-7cdc-4d7b-be59-ecdd4c26bee4' --project-name 'banny-core-v6'"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@bananapus/721-hook-v6": "^0.0.
|
|
23
|
+
"@bananapus/721-hook-v6": "^0.0.28",
|
|
24
24
|
"@bananapus/core-v6": "^0.0.28",
|
|
25
25
|
"@bananapus/permission-ids-v6": "^0.0.14",
|
|
26
26
|
"@bananapus/router-terminal-v6": "^0.0.21",
|
|
27
27
|
"@bananapus/suckers-v6": "^0.0.18",
|
|
28
|
-
"@croptop/core-v6": "^0.0.
|
|
28
|
+
"@croptop/core-v6": "^0.0.27",
|
|
29
29
|
"@openzeppelin/contracts": "^5.6.1",
|
|
30
30
|
"@rev-net/core-v6": "^0.0.24",
|
|
31
31
|
"keccak": "^3.0.4"
|
package/script/Add.Denver.s.sol
CHANGED
|
@@ -66,13 +66,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
66
66
|
encodedIPFSUri: bytes32(0x233dd4173ef4ed0f60822a469277bb328b5ae056d8980301f7bd7ad9df780099),
|
|
67
67
|
category: 1,
|
|
68
68
|
discountPercent: 0,
|
|
69
|
-
|
|
69
|
+
cantIncreaseDiscountPercent: false,
|
|
70
70
|
cantBuyWithCredits: false,
|
|
71
71
|
allowOwnerMint: false,
|
|
72
72
|
useReserveBeneficiaryAsDefault: false,
|
|
73
73
|
transfersPausable: false,
|
|
74
74
|
useVotingUnits: false,
|
|
75
|
-
|
|
75
|
+
cantBeRemoved: false,
|
|
76
76
|
splitPercent: 0,
|
|
77
77
|
splits: new JBSplit[](0)
|
|
78
78
|
});
|
package/script/Deploy.s.sol
CHANGED
|
@@ -229,13 +229,13 @@ contract DeployScript is Script, Sphinx {
|
|
|
229
229
|
encodedIPFSUri: bytes32(0),
|
|
230
230
|
category: BANNY_BODY_CATEGORY,
|
|
231
231
|
discountPercent: 0,
|
|
232
|
-
|
|
232
|
+
cantIncreaseDiscountPercent: true,
|
|
233
233
|
cantBuyWithCredits: false,
|
|
234
234
|
allowOwnerMint: false,
|
|
235
235
|
useReserveBeneficiaryAsDefault: false,
|
|
236
236
|
transfersPausable: false,
|
|
237
237
|
useVotingUnits: false,
|
|
238
|
-
|
|
238
|
+
cantBeRemoved: true,
|
|
239
239
|
splitPercent: 0,
|
|
240
240
|
splits: new JBSplit[](0)
|
|
241
241
|
});
|
|
@@ -248,13 +248,13 @@ contract DeployScript is Script, Sphinx {
|
|
|
248
248
|
encodedIPFSUri: bytes32(0),
|
|
249
249
|
category: BANNY_BODY_CATEGORY,
|
|
250
250
|
discountPercent: 0,
|
|
251
|
-
|
|
251
|
+
cantIncreaseDiscountPercent: true,
|
|
252
252
|
cantBuyWithCredits: false,
|
|
253
253
|
allowOwnerMint: false,
|
|
254
254
|
useReserveBeneficiaryAsDefault: false,
|
|
255
255
|
transfersPausable: false,
|
|
256
256
|
useVotingUnits: false,
|
|
257
|
-
|
|
257
|
+
cantBeRemoved: true,
|
|
258
258
|
splitPercent: 0,
|
|
259
259
|
splits: new JBSplit[](0)
|
|
260
260
|
});
|
|
@@ -267,13 +267,13 @@ contract DeployScript is Script, Sphinx {
|
|
|
267
267
|
encodedIPFSUri: bytes32(0),
|
|
268
268
|
category: BANNY_BODY_CATEGORY,
|
|
269
269
|
discountPercent: 0,
|
|
270
|
-
|
|
270
|
+
cantIncreaseDiscountPercent: true,
|
|
271
271
|
cantBuyWithCredits: false,
|
|
272
272
|
allowOwnerMint: false,
|
|
273
273
|
useReserveBeneficiaryAsDefault: false,
|
|
274
274
|
transfersPausable: false,
|
|
275
275
|
useVotingUnits: false,
|
|
276
|
-
|
|
276
|
+
cantBeRemoved: true,
|
|
277
277
|
splitPercent: 0,
|
|
278
278
|
splits: new JBSplit[](0)
|
|
279
279
|
});
|
|
@@ -286,13 +286,13 @@ contract DeployScript is Script, Sphinx {
|
|
|
286
286
|
encodedIPFSUri: bytes32(0),
|
|
287
287
|
category: BANNY_BODY_CATEGORY,
|
|
288
288
|
discountPercent: 0,
|
|
289
|
-
|
|
289
|
+
cantIncreaseDiscountPercent: true,
|
|
290
290
|
cantBuyWithCredits: false,
|
|
291
291
|
allowOwnerMint: false,
|
|
292
292
|
useReserveBeneficiaryAsDefault: false,
|
|
293
293
|
transfersPausable: false,
|
|
294
294
|
useVotingUnits: false,
|
|
295
|
-
|
|
295
|
+
cantBeRemoved: true,
|
|
296
296
|
splitPercent: 0,
|
|
297
297
|
splits: new JBSplit[](0)
|
|
298
298
|
});
|
package/script/Drop1.s.sol
CHANGED
|
@@ -67,13 +67,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
67
67
|
encodedIPFSUri: bytes32(0x5665b0c125d1bccccb78cc0ffc429e66ce41ed3bccebba51209d04636cadbd2c),
|
|
68
68
|
category: 1,
|
|
69
69
|
discountPercent: 0,
|
|
70
|
-
|
|
70
|
+
cantIncreaseDiscountPercent: false,
|
|
71
71
|
cantBuyWithCredits: false,
|
|
72
72
|
allowOwnerMint: false,
|
|
73
73
|
useReserveBeneficiaryAsDefault: false,
|
|
74
74
|
transfersPausable: false,
|
|
75
75
|
useVotingUnits: false,
|
|
76
|
-
|
|
76
|
+
cantBeRemoved: false,
|
|
77
77
|
splitPercent: 0,
|
|
78
78
|
splits: new JBSplit[](0)
|
|
79
79
|
});
|
|
@@ -89,13 +89,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
89
89
|
encodedIPFSUri: bytes32(0x233dd4173ef4ed0f60822a469277bb328b5ae056d8980301f7bd7ad9df780099),
|
|
90
90
|
category: 1,
|
|
91
91
|
discountPercent: 0,
|
|
92
|
-
|
|
92
|
+
cantIncreaseDiscountPercent: false,
|
|
93
93
|
cantBuyWithCredits: false,
|
|
94
94
|
allowOwnerMint: false,
|
|
95
95
|
useReserveBeneficiaryAsDefault: false,
|
|
96
96
|
transfersPausable: false,
|
|
97
97
|
useVotingUnits: false,
|
|
98
|
-
|
|
98
|
+
cantBeRemoved: false,
|
|
99
99
|
splitPercent: 0,
|
|
100
100
|
splits: new JBSplit[](0)
|
|
101
101
|
});
|
|
@@ -111,13 +111,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
111
111
|
encodedIPFSUri: bytes32(0x6cb06872575a04a0c4527157eb4719be10b6474d08aa2ce2a4ac5bcb0da996ea),
|
|
112
112
|
category: 2,
|
|
113
113
|
discountPercent: 0,
|
|
114
|
-
|
|
114
|
+
cantIncreaseDiscountPercent: false,
|
|
115
115
|
cantBuyWithCredits: false,
|
|
116
116
|
allowOwnerMint: false,
|
|
117
117
|
useReserveBeneficiaryAsDefault: false,
|
|
118
118
|
transfersPausable: false,
|
|
119
119
|
useVotingUnits: false,
|
|
120
|
-
|
|
120
|
+
cantBeRemoved: false,
|
|
121
121
|
splitPercent: 0,
|
|
122
122
|
splits: new JBSplit[](0)
|
|
123
123
|
});
|
|
@@ -133,13 +133,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
133
133
|
encodedIPFSUri: bytes32(0x7206771942e806053d6ed8aa90040e53a07319e4fd1f938fc4a10879b7bd2da9),
|
|
134
134
|
category: 2,
|
|
135
135
|
discountPercent: 0,
|
|
136
|
-
|
|
136
|
+
cantIncreaseDiscountPercent: false,
|
|
137
137
|
cantBuyWithCredits: false,
|
|
138
138
|
allowOwnerMint: false,
|
|
139
139
|
useReserveBeneficiaryAsDefault: false,
|
|
140
140
|
transfersPausable: false,
|
|
141
141
|
useVotingUnits: false,
|
|
142
|
-
|
|
142
|
+
cantBeRemoved: false,
|
|
143
143
|
splitPercent: 0,
|
|
144
144
|
splits: new JBSplit[](0)
|
|
145
145
|
});
|
|
@@ -155,13 +155,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
155
155
|
encodedIPFSUri: bytes32(0xef6478be50575bade53e7ce4c9fb5b399643bcabed94f2111afb63e97fb9fd44),
|
|
156
156
|
category: 3,
|
|
157
157
|
discountPercent: 0,
|
|
158
|
-
|
|
158
|
+
cantIncreaseDiscountPercent: false,
|
|
159
159
|
cantBuyWithCredits: false,
|
|
160
160
|
allowOwnerMint: false,
|
|
161
161
|
useReserveBeneficiaryAsDefault: false,
|
|
162
162
|
transfersPausable: false,
|
|
163
163
|
useVotingUnits: false,
|
|
164
|
-
|
|
164
|
+
cantBeRemoved: false,
|
|
165
165
|
splitPercent: 0,
|
|
166
166
|
splits: new JBSplit[](0)
|
|
167
167
|
});
|
|
@@ -177,13 +177,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
177
177
|
encodedIPFSUri: bytes32(0xe26d20762024435aedd91058ac9bc9900d719e1f7a04cace501d83a4c1f40941),
|
|
178
178
|
category: 4,
|
|
179
179
|
discountPercent: 0,
|
|
180
|
-
|
|
180
|
+
cantIncreaseDiscountPercent: false,
|
|
181
181
|
cantBuyWithCredits: false,
|
|
182
182
|
allowOwnerMint: false,
|
|
183
183
|
useReserveBeneficiaryAsDefault: false,
|
|
184
184
|
transfersPausable: false,
|
|
185
185
|
useVotingUnits: false,
|
|
186
|
-
|
|
186
|
+
cantBeRemoved: false,
|
|
187
187
|
splitPercent: 0,
|
|
188
188
|
splits: new JBSplit[](0)
|
|
189
189
|
});
|
|
@@ -199,13 +199,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
199
199
|
encodedIPFSUri: bytes32(0x9f76cb495fd79397cba4fe3d377a5aa2fdd63df218f3b3022c6cc8e32478b494),
|
|
200
200
|
category: 6,
|
|
201
201
|
discountPercent: 0,
|
|
202
|
-
|
|
202
|
+
cantIncreaseDiscountPercent: false,
|
|
203
203
|
cantBuyWithCredits: false,
|
|
204
204
|
allowOwnerMint: false,
|
|
205
205
|
useReserveBeneficiaryAsDefault: false,
|
|
206
206
|
transfersPausable: false,
|
|
207
207
|
useVotingUnits: false,
|
|
208
|
-
|
|
208
|
+
cantBeRemoved: false,
|
|
209
209
|
splitPercent: 0,
|
|
210
210
|
splits: new JBSplit[](0)
|
|
211
211
|
});
|
|
@@ -221,13 +221,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
221
221
|
encodedIPFSUri: bytes32(0xf01423f9dae3de4adc7e372e6902a351e2c6193a385dde90f5baf37165914831),
|
|
222
222
|
category: 6,
|
|
223
223
|
discountPercent: 0,
|
|
224
|
-
|
|
224
|
+
cantIncreaseDiscountPercent: false,
|
|
225
225
|
cantBuyWithCredits: false,
|
|
226
226
|
allowOwnerMint: false,
|
|
227
227
|
useReserveBeneficiaryAsDefault: true,
|
|
228
228
|
transfersPausable: false,
|
|
229
229
|
useVotingUnits: false,
|
|
230
|
-
|
|
230
|
+
cantBeRemoved: false,
|
|
231
231
|
splitPercent: 0,
|
|
232
232
|
splits: new JBSplit[](0)
|
|
233
233
|
});
|
|
@@ -243,13 +243,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
243
243
|
encodedIPFSUri: bytes32(0x325c138f1f38e5b5f90a57a248a2f5afe6af738b2adfc825cf9f413bbcf50fa1),
|
|
244
244
|
category: 6,
|
|
245
245
|
discountPercent: 0,
|
|
246
|
-
|
|
246
|
+
cantIncreaseDiscountPercent: false,
|
|
247
247
|
cantBuyWithCredits: false,
|
|
248
248
|
allowOwnerMint: false,
|
|
249
249
|
useReserveBeneficiaryAsDefault: false,
|
|
250
250
|
transfersPausable: false,
|
|
251
251
|
useVotingUnits: false,
|
|
252
|
-
|
|
252
|
+
cantBeRemoved: false,
|
|
253
253
|
splitPercent: 0,
|
|
254
254
|
splits: new JBSplit[](0)
|
|
255
255
|
});
|
|
@@ -265,13 +265,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
265
265
|
encodedIPFSUri: bytes32(0x7dc7e556a7ac39c473da85165df3d094c6ed9258003fb7dc3d9a8582bcb0dc7f),
|
|
266
266
|
category: 6,
|
|
267
267
|
discountPercent: 0,
|
|
268
|
-
|
|
268
|
+
cantIncreaseDiscountPercent: false,
|
|
269
269
|
cantBuyWithCredits: false,
|
|
270
270
|
allowOwnerMint: false,
|
|
271
271
|
useReserveBeneficiaryAsDefault: false,
|
|
272
272
|
transfersPausable: false,
|
|
273
273
|
useVotingUnits: false,
|
|
274
|
-
|
|
274
|
+
cantBeRemoved: false,
|
|
275
275
|
splitPercent: 0,
|
|
276
276
|
splits: new JBSplit[](0)
|
|
277
277
|
});
|
|
@@ -287,13 +287,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
287
287
|
encodedIPFSUri: bytes32(0xb06dbd64696994798dee9e00d406a649191524a95e715532f1bdebc92f00aebd),
|
|
288
288
|
category: 6,
|
|
289
289
|
discountPercent: 0,
|
|
290
|
-
|
|
290
|
+
cantIncreaseDiscountPercent: false,
|
|
291
291
|
cantBuyWithCredits: false,
|
|
292
292
|
allowOwnerMint: false,
|
|
293
293
|
useReserveBeneficiaryAsDefault: false,
|
|
294
294
|
transfersPausable: false,
|
|
295
295
|
useVotingUnits: false,
|
|
296
|
-
|
|
296
|
+
cantBeRemoved: false,
|
|
297
297
|
splitPercent: 0,
|
|
298
298
|
splits: new JBSplit[](0)
|
|
299
299
|
});
|
|
@@ -309,13 +309,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
309
309
|
encodedIPFSUri: bytes32(0x52815d712399165b921df61795581a8c20ad9acf3502e777e20a782b7bc11d54),
|
|
310
310
|
category: 7,
|
|
311
311
|
discountPercent: 0,
|
|
312
|
-
|
|
312
|
+
cantIncreaseDiscountPercent: false,
|
|
313
313
|
cantBuyWithCredits: false,
|
|
314
314
|
allowOwnerMint: false,
|
|
315
315
|
useReserveBeneficiaryAsDefault: false,
|
|
316
316
|
transfersPausable: false,
|
|
317
317
|
useVotingUnits: false,
|
|
318
|
-
|
|
318
|
+
cantBeRemoved: false,
|
|
319
319
|
splitPercent: 0,
|
|
320
320
|
splits: new JBSplit[](0)
|
|
321
321
|
});
|
|
@@ -331,13 +331,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
331
331
|
encodedIPFSUri: bytes32(0x8a1b694033a47ad08b648d2608fa1b86dccdb0f431795c470605a819988f55ad),
|
|
332
332
|
category: 8,
|
|
333
333
|
discountPercent: 0,
|
|
334
|
-
|
|
334
|
+
cantIncreaseDiscountPercent: false,
|
|
335
335
|
cantBuyWithCredits: false,
|
|
336
336
|
allowOwnerMint: false,
|
|
337
337
|
useReserveBeneficiaryAsDefault: false,
|
|
338
338
|
transfersPausable: false,
|
|
339
339
|
useVotingUnits: false,
|
|
340
|
-
|
|
340
|
+
cantBeRemoved: false,
|
|
341
341
|
splitPercent: 0,
|
|
342
342
|
splits: new JBSplit[](0)
|
|
343
343
|
});
|
|
@@ -353,13 +353,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
353
353
|
encodedIPFSUri: bytes32(0x39cd82854f76c22afccaf4ad6f055d4e225c2e225f322154f1c3d327cbaccb5a),
|
|
354
354
|
category: 8,
|
|
355
355
|
discountPercent: 0,
|
|
356
|
-
|
|
356
|
+
cantIncreaseDiscountPercent: false,
|
|
357
357
|
cantBuyWithCredits: false,
|
|
358
358
|
allowOwnerMint: false,
|
|
359
359
|
useReserveBeneficiaryAsDefault: false,
|
|
360
360
|
transfersPausable: false,
|
|
361
361
|
useVotingUnits: false,
|
|
362
|
-
|
|
362
|
+
cantBeRemoved: false,
|
|
363
363
|
splitPercent: 0,
|
|
364
364
|
splits: new JBSplit[](0)
|
|
365
365
|
});
|
|
@@ -375,13 +375,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
375
375
|
encodedIPFSUri: bytes32(0x4e87f483ea20c1537f24c2a586acd14819ca2a6cba1bab68365361e45374f9f9),
|
|
376
376
|
category: 8,
|
|
377
377
|
discountPercent: 0,
|
|
378
|
-
|
|
378
|
+
cantIncreaseDiscountPercent: false,
|
|
379
379
|
cantBuyWithCredits: false,
|
|
380
380
|
allowOwnerMint: false,
|
|
381
381
|
useReserveBeneficiaryAsDefault: false,
|
|
382
382
|
transfersPausable: false,
|
|
383
383
|
useVotingUnits: false,
|
|
384
|
-
|
|
384
|
+
cantBeRemoved: false,
|
|
385
385
|
splitPercent: 0,
|
|
386
386
|
splits: new JBSplit[](0)
|
|
387
387
|
});
|
|
@@ -397,13 +397,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
397
397
|
encodedIPFSUri: bytes32(0x5fbc1c58d608acd436c18e11edc72d3ae436e1a4c15d127b28a9a24879013d3c),
|
|
398
398
|
category: 9,
|
|
399
399
|
discountPercent: 0,
|
|
400
|
-
|
|
400
|
+
cantIncreaseDiscountPercent: false,
|
|
401
401
|
cantBuyWithCredits: false,
|
|
402
402
|
allowOwnerMint: false,
|
|
403
403
|
useReserveBeneficiaryAsDefault: false,
|
|
404
404
|
transfersPausable: false,
|
|
405
405
|
useVotingUnits: false,
|
|
406
|
-
|
|
406
|
+
cantBeRemoved: false,
|
|
407
407
|
splitPercent: 0,
|
|
408
408
|
splits: new JBSplit[](0)
|
|
409
409
|
});
|
|
@@ -419,13 +419,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
419
419
|
encodedIPFSUri: bytes32(0x823466de69eaf605d3a62366e5e9dbd6649a71da146f791f94628d4749a2da55),
|
|
420
420
|
category: 9,
|
|
421
421
|
discountPercent: 0,
|
|
422
|
-
|
|
422
|
+
cantIncreaseDiscountPercent: false,
|
|
423
423
|
cantBuyWithCredits: false,
|
|
424
424
|
allowOwnerMint: false,
|
|
425
425
|
useReserveBeneficiaryAsDefault: false,
|
|
426
426
|
transfersPausable: false,
|
|
427
427
|
useVotingUnits: false,
|
|
428
|
-
|
|
428
|
+
cantBeRemoved: false,
|
|
429
429
|
splitPercent: 0,
|
|
430
430
|
splits: new JBSplit[](0)
|
|
431
431
|
});
|
|
@@ -441,13 +441,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
441
441
|
encodedIPFSUri: bytes32(0x017db86219678b824995b8556e7073d65af87212671312212365497708675c41),
|
|
442
442
|
category: 9,
|
|
443
443
|
discountPercent: 0,
|
|
444
|
-
|
|
444
|
+
cantIncreaseDiscountPercent: false,
|
|
445
445
|
cantBuyWithCredits: false,
|
|
446
446
|
allowOwnerMint: false,
|
|
447
447
|
useReserveBeneficiaryAsDefault: false,
|
|
448
448
|
transfersPausable: false,
|
|
449
449
|
useVotingUnits: false,
|
|
450
|
-
|
|
450
|
+
cantBeRemoved: false,
|
|
451
451
|
splitPercent: 0,
|
|
452
452
|
splits: new JBSplit[](0)
|
|
453
453
|
});
|
|
@@ -463,13 +463,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
463
463
|
encodedIPFSUri: bytes32(0xdf7d4084b087b22cc172e1df3a2b465b5386a950e9bcd53ed424014a0a86ee57),
|
|
464
464
|
category: 9,
|
|
465
465
|
discountPercent: 0,
|
|
466
|
-
|
|
466
|
+
cantIncreaseDiscountPercent: false,
|
|
467
467
|
cantBuyWithCredits: false,
|
|
468
468
|
allowOwnerMint: false,
|
|
469
469
|
useReserveBeneficiaryAsDefault: false,
|
|
470
470
|
transfersPausable: false,
|
|
471
471
|
useVotingUnits: false,
|
|
472
|
-
|
|
472
|
+
cantBeRemoved: false,
|
|
473
473
|
splitPercent: 0,
|
|
474
474
|
splits: new JBSplit[](0)
|
|
475
475
|
});
|
|
@@ -485,13 +485,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
485
485
|
encodedIPFSUri: bytes32(0x745b3b4f18aab6ad0d8465d34751ca8eb5b9c267dee6ec8bf63686b508afacf3),
|
|
486
486
|
category: 10,
|
|
487
487
|
discountPercent: 0,
|
|
488
|
-
|
|
488
|
+
cantIncreaseDiscountPercent: false,
|
|
489
489
|
cantBuyWithCredits: false,
|
|
490
490
|
allowOwnerMint: false,
|
|
491
491
|
useReserveBeneficiaryAsDefault: false,
|
|
492
492
|
transfersPausable: false,
|
|
493
493
|
useVotingUnits: false,
|
|
494
|
-
|
|
494
|
+
cantBeRemoved: false,
|
|
495
495
|
splitPercent: 0,
|
|
496
496
|
splits: new JBSplit[](0)
|
|
497
497
|
});
|
|
@@ -507,13 +507,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
507
507
|
encodedIPFSUri: bytes32(0x815c7dfb119da1e3802754f8ce364caf7a8069e331e35c3f20446800579d8df8),
|
|
508
508
|
category: 11,
|
|
509
509
|
discountPercent: 0,
|
|
510
|
-
|
|
510
|
+
cantIncreaseDiscountPercent: false,
|
|
511
511
|
cantBuyWithCredits: false,
|
|
512
512
|
allowOwnerMint: false,
|
|
513
513
|
useReserveBeneficiaryAsDefault: false,
|
|
514
514
|
transfersPausable: false,
|
|
515
515
|
useVotingUnits: false,
|
|
516
|
-
|
|
516
|
+
cantBeRemoved: false,
|
|
517
517
|
splitPercent: 0,
|
|
518
518
|
splits: new JBSplit[](0)
|
|
519
519
|
});
|
|
@@ -529,13 +529,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
529
529
|
encodedIPFSUri: bytes32(0xc77fe2f93a5a48ad7f59a3c6c40dd76317e47605fcb74b85a4c5bea160fdab6e),
|
|
530
530
|
category: 11,
|
|
531
531
|
discountPercent: 0,
|
|
532
|
-
|
|
532
|
+
cantIncreaseDiscountPercent: false,
|
|
533
533
|
cantBuyWithCredits: false,
|
|
534
534
|
allowOwnerMint: false,
|
|
535
535
|
useReserveBeneficiaryAsDefault: false,
|
|
536
536
|
transfersPausable: false,
|
|
537
537
|
useVotingUnits: false,
|
|
538
|
-
|
|
538
|
+
cantBeRemoved: false,
|
|
539
539
|
splitPercent: 0,
|
|
540
540
|
splits: new JBSplit[](0)
|
|
541
541
|
});
|
|
@@ -551,13 +551,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
551
551
|
encodedIPFSUri: bytes32(0x2b62afa12feb307f005902e6bec09f15f8f5d7ba09d937f1162e5d2f00c21e12),
|
|
552
552
|
category: 11,
|
|
553
553
|
discountPercent: 0,
|
|
554
|
-
|
|
554
|
+
cantIncreaseDiscountPercent: false,
|
|
555
555
|
cantBuyWithCredits: false,
|
|
556
556
|
allowOwnerMint: false,
|
|
557
557
|
useReserveBeneficiaryAsDefault: false,
|
|
558
558
|
transfersPausable: false,
|
|
559
559
|
useVotingUnits: false,
|
|
560
|
-
|
|
560
|
+
cantBeRemoved: false,
|
|
561
561
|
splitPercent: 0,
|
|
562
562
|
splits: new JBSplit[](0)
|
|
563
563
|
});
|
|
@@ -573,13 +573,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
573
573
|
encodedIPFSUri: bytes32(0x4d4b149bded92db977ac35a77bcfff72270eaee404db8751b27ec18030511d3b),
|
|
574
574
|
category: 11,
|
|
575
575
|
discountPercent: 0,
|
|
576
|
-
|
|
576
|
+
cantIncreaseDiscountPercent: false,
|
|
577
577
|
cantBuyWithCredits: false,
|
|
578
578
|
allowOwnerMint: false,
|
|
579
579
|
useReserveBeneficiaryAsDefault: false,
|
|
580
580
|
transfersPausable: false,
|
|
581
581
|
useVotingUnits: false,
|
|
582
|
-
|
|
582
|
+
cantBeRemoved: false,
|
|
583
583
|
splitPercent: 0,
|
|
584
584
|
splits: new JBSplit[](0)
|
|
585
585
|
});
|
|
@@ -595,13 +595,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
595
595
|
encodedIPFSUri: bytes32(0x5ec40dc2aad2a009266337a198d4b9098cd968d08c06cdc328efd4789f974aa4),
|
|
596
596
|
category: 11,
|
|
597
597
|
discountPercent: 0,
|
|
598
|
-
|
|
598
|
+
cantIncreaseDiscountPercent: false,
|
|
599
599
|
cantBuyWithCredits: false,
|
|
600
600
|
allowOwnerMint: false,
|
|
601
601
|
useReserveBeneficiaryAsDefault: false,
|
|
602
602
|
transfersPausable: false,
|
|
603
603
|
useVotingUnits: false,
|
|
604
|
-
|
|
604
|
+
cantBeRemoved: false,
|
|
605
605
|
splitPercent: 0,
|
|
606
606
|
splits: new JBSplit[](0)
|
|
607
607
|
});
|
|
@@ -617,13 +617,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
617
617
|
encodedIPFSUri: bytes32(0xb8658c65907f280bfbd228ec384f0dfdfe55401505dc0f303d7d3d6a68a6414b),
|
|
618
618
|
category: 11,
|
|
619
619
|
discountPercent: 0,
|
|
620
|
-
|
|
620
|
+
cantIncreaseDiscountPercent: false,
|
|
621
621
|
cantBuyWithCredits: false,
|
|
622
622
|
allowOwnerMint: false,
|
|
623
623
|
useReserveBeneficiaryAsDefault: false,
|
|
624
624
|
transfersPausable: false,
|
|
625
625
|
useVotingUnits: false,
|
|
626
|
-
|
|
626
|
+
cantBeRemoved: false,
|
|
627
627
|
splitPercent: 0,
|
|
628
628
|
splits: new JBSplit[](0)
|
|
629
629
|
});
|
|
@@ -639,13 +639,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
639
639
|
encodedIPFSUri: bytes32(0x04e22ea49d80f346b7a5a9013169470824f71faa7d9e0155a71f4afc3fa63f89),
|
|
640
640
|
category: 11,
|
|
641
641
|
discountPercent: 0,
|
|
642
|
-
|
|
642
|
+
cantIncreaseDiscountPercent: false,
|
|
643
643
|
cantBuyWithCredits: false,
|
|
644
644
|
allowOwnerMint: false,
|
|
645
645
|
useReserveBeneficiaryAsDefault: false,
|
|
646
646
|
transfersPausable: false,
|
|
647
647
|
useVotingUnits: false,
|
|
648
|
-
|
|
648
|
+
cantBeRemoved: false,
|
|
649
649
|
splitPercent: 0,
|
|
650
650
|
splits: new JBSplit[](0)
|
|
651
651
|
});
|
|
@@ -661,13 +661,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
661
661
|
encodedIPFSUri: bytes32(0xf7c17eff468f5dd227b991d773b7a36b93cd997751547f9908a4bf33e31ba701),
|
|
662
662
|
category: 11,
|
|
663
663
|
discountPercent: 0,
|
|
664
|
-
|
|
664
|
+
cantIncreaseDiscountPercent: false,
|
|
665
665
|
cantBuyWithCredits: false,
|
|
666
666
|
allowOwnerMint: false,
|
|
667
667
|
useReserveBeneficiaryAsDefault: false,
|
|
668
668
|
transfersPausable: false,
|
|
669
669
|
useVotingUnits: false,
|
|
670
|
-
|
|
670
|
+
cantBeRemoved: false,
|
|
671
671
|
splitPercent: 0,
|
|
672
672
|
splits: new JBSplit[](0)
|
|
673
673
|
});
|
|
@@ -683,13 +683,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
683
683
|
encodedIPFSUri: bytes32(0x9a29e975b191f800744d74b11c580fdd74b2db73c95426af36e28cf00d66da97),
|
|
684
684
|
category: 12,
|
|
685
685
|
discountPercent: 0,
|
|
686
|
-
|
|
686
|
+
cantIncreaseDiscountPercent: false,
|
|
687
687
|
cantBuyWithCredits: false,
|
|
688
688
|
allowOwnerMint: false,
|
|
689
689
|
useReserveBeneficiaryAsDefault: false,
|
|
690
690
|
transfersPausable: false,
|
|
691
691
|
useVotingUnits: false,
|
|
692
|
-
|
|
692
|
+
cantBeRemoved: false,
|
|
693
693
|
splitPercent: 0,
|
|
694
694
|
splits: new JBSplit[](0)
|
|
695
695
|
});
|
|
@@ -705,13 +705,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
705
705
|
encodedIPFSUri: bytes32(0x52a03dc3e983121f275cadc2d86626e0fca8a9901f3dc7d0bbee826e5d3d409d),
|
|
706
706
|
category: 12,
|
|
707
707
|
discountPercent: 0,
|
|
708
|
-
|
|
708
|
+
cantIncreaseDiscountPercent: false,
|
|
709
709
|
cantBuyWithCredits: false,
|
|
710
710
|
allowOwnerMint: false,
|
|
711
711
|
useReserveBeneficiaryAsDefault: false,
|
|
712
712
|
transfersPausable: false,
|
|
713
713
|
useVotingUnits: false,
|
|
714
|
-
|
|
714
|
+
cantBeRemoved: false,
|
|
715
715
|
splitPercent: 0,
|
|
716
716
|
splits: new JBSplit[](0)
|
|
717
717
|
});
|
|
@@ -727,13 +727,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
727
727
|
encodedIPFSUri: bytes32(0xc583623dc7a3e61bfc04813f8c975eba8a22aeafe3d741edff1e2c97ac520737),
|
|
728
728
|
category: 12,
|
|
729
729
|
discountPercent: 0,
|
|
730
|
-
|
|
730
|
+
cantIncreaseDiscountPercent: false,
|
|
731
731
|
cantBuyWithCredits: false,
|
|
732
732
|
allowOwnerMint: false,
|
|
733
733
|
useReserveBeneficiaryAsDefault: false,
|
|
734
734
|
transfersPausable: false,
|
|
735
735
|
useVotingUnits: false,
|
|
736
|
-
|
|
736
|
+
cantBeRemoved: false,
|
|
737
737
|
splitPercent: 0,
|
|
738
738
|
splits: new JBSplit[](0)
|
|
739
739
|
});
|
|
@@ -749,13 +749,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
749
749
|
encodedIPFSUri: bytes32(0x58f8e217cfafd0a6feff40f4822790cdc19aba5dd4d4948f4c1bd5e313c90e8d),
|
|
750
750
|
category: 12,
|
|
751
751
|
discountPercent: 0,
|
|
752
|
-
|
|
752
|
+
cantIncreaseDiscountPercent: false,
|
|
753
753
|
cantBuyWithCredits: false,
|
|
754
754
|
allowOwnerMint: false,
|
|
755
755
|
useReserveBeneficiaryAsDefault: false,
|
|
756
756
|
transfersPausable: false,
|
|
757
757
|
useVotingUnits: false,
|
|
758
|
-
|
|
758
|
+
cantBeRemoved: false,
|
|
759
759
|
splitPercent: 0,
|
|
760
760
|
splits: new JBSplit[](0)
|
|
761
761
|
});
|
|
@@ -771,13 +771,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
771
771
|
encodedIPFSUri: bytes32(0x3e67840649fabab6d62f92bad701a6248b77f86ea8fcd66dc88dfbcba1134d85),
|
|
772
772
|
category: 12,
|
|
773
773
|
discountPercent: 0,
|
|
774
|
-
|
|
774
|
+
cantIncreaseDiscountPercent: false,
|
|
775
775
|
cantBuyWithCredits: false,
|
|
776
776
|
allowOwnerMint: false,
|
|
777
777
|
useReserveBeneficiaryAsDefault: false,
|
|
778
778
|
transfersPausable: false,
|
|
779
779
|
useVotingUnits: false,
|
|
780
|
-
|
|
780
|
+
cantBeRemoved: false,
|
|
781
781
|
splitPercent: 0,
|
|
782
782
|
splits: new JBSplit[](0)
|
|
783
783
|
});
|
|
@@ -793,13 +793,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
793
793
|
encodedIPFSUri: bytes32(0xd4724e692969066fc0b3587b8e18d1589205d1e1f133d7f9f8d63d14b6d1862f),
|
|
794
794
|
category: 12,
|
|
795
795
|
discountPercent: 0,
|
|
796
|
-
|
|
796
|
+
cantIncreaseDiscountPercent: false,
|
|
797
797
|
cantBuyWithCredits: false,
|
|
798
798
|
allowOwnerMint: false,
|
|
799
799
|
useReserveBeneficiaryAsDefault: false,
|
|
800
800
|
transfersPausable: false,
|
|
801
801
|
useVotingUnits: false,
|
|
802
|
-
|
|
802
|
+
cantBeRemoved: false,
|
|
803
803
|
splitPercent: 0,
|
|
804
804
|
splits: new JBSplit[](0)
|
|
805
805
|
});
|
|
@@ -815,13 +815,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
815
815
|
encodedIPFSUri: bytes32(0xde4c6e589f4e99cda7205236a99db750638236007b2dd03d79de1146102d7f81),
|
|
816
816
|
category: 12,
|
|
817
817
|
discountPercent: 0,
|
|
818
|
-
|
|
818
|
+
cantIncreaseDiscountPercent: false,
|
|
819
819
|
cantBuyWithCredits: false,
|
|
820
820
|
allowOwnerMint: false,
|
|
821
821
|
useReserveBeneficiaryAsDefault: false,
|
|
822
822
|
transfersPausable: false,
|
|
823
823
|
useVotingUnits: false,
|
|
824
|
-
|
|
824
|
+
cantBeRemoved: false,
|
|
825
825
|
splitPercent: 0,
|
|
826
826
|
splits: new JBSplit[](0)
|
|
827
827
|
});
|
|
@@ -837,13 +837,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
837
837
|
encodedIPFSUri: bytes32(0x766001db70e4a18e76dbbd9e4b0f9e47b5a9c4daa1a7c3727190a154daabfa1c),
|
|
838
838
|
category: 12,
|
|
839
839
|
discountPercent: 0,
|
|
840
|
-
|
|
840
|
+
cantIncreaseDiscountPercent: false,
|
|
841
841
|
cantBuyWithCredits: false,
|
|
842
842
|
allowOwnerMint: false,
|
|
843
843
|
useReserveBeneficiaryAsDefault: false,
|
|
844
844
|
transfersPausable: false,
|
|
845
845
|
useVotingUnits: false,
|
|
846
|
-
|
|
846
|
+
cantBeRemoved: false,
|
|
847
847
|
splitPercent: 0,
|
|
848
848
|
splits: new JBSplit[](0)
|
|
849
849
|
});
|
|
@@ -859,13 +859,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
859
859
|
encodedIPFSUri: bytes32(0xa4d2eb02df6eb99cbbdc3603a116b3b9dcd45f865a8c8396611ea5f879deee59),
|
|
860
860
|
category: 13,
|
|
861
861
|
discountPercent: 0,
|
|
862
|
-
|
|
862
|
+
cantIncreaseDiscountPercent: false,
|
|
863
863
|
cantBuyWithCredits: false,
|
|
864
864
|
allowOwnerMint: false,
|
|
865
865
|
useReserveBeneficiaryAsDefault: false,
|
|
866
866
|
transfersPausable: false,
|
|
867
867
|
useVotingUnits: false,
|
|
868
|
-
|
|
868
|
+
cantBeRemoved: false,
|
|
869
869
|
splitPercent: 0,
|
|
870
870
|
splits: new JBSplit[](0)
|
|
871
871
|
});
|
|
@@ -881,13 +881,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
881
881
|
encodedIPFSUri: bytes32(0x18abc38e7f1c5c014398f705131aac80196dcd0da2b5f02c103e1a549433e8b3),
|
|
882
882
|
category: 13,
|
|
883
883
|
discountPercent: 0,
|
|
884
|
-
|
|
884
|
+
cantIncreaseDiscountPercent: false,
|
|
885
885
|
cantBuyWithCredits: false,
|
|
886
886
|
allowOwnerMint: false,
|
|
887
887
|
useReserveBeneficiaryAsDefault: false,
|
|
888
888
|
transfersPausable: false,
|
|
889
889
|
useVotingUnits: false,
|
|
890
|
-
|
|
890
|
+
cantBeRemoved: false,
|
|
891
891
|
splitPercent: 0,
|
|
892
892
|
splits: new JBSplit[](0)
|
|
893
893
|
});
|
|
@@ -903,13 +903,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
903
903
|
encodedIPFSUri: bytes32(0xc498a98bea66a8b44297631f136a7326f7a28b882058829588979b186d06baff),
|
|
904
904
|
category: 13,
|
|
905
905
|
discountPercent: 0,
|
|
906
|
-
|
|
906
|
+
cantIncreaseDiscountPercent: false,
|
|
907
907
|
cantBuyWithCredits: false,
|
|
908
908
|
allowOwnerMint: false,
|
|
909
909
|
useReserveBeneficiaryAsDefault: false,
|
|
910
910
|
transfersPausable: false,
|
|
911
911
|
useVotingUnits: false,
|
|
912
|
-
|
|
912
|
+
cantBeRemoved: false,
|
|
913
913
|
splitPercent: 0,
|
|
914
914
|
splits: new JBSplit[](0)
|
|
915
915
|
});
|
|
@@ -925,13 +925,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
925
925
|
encodedIPFSUri: bytes32(0x3bd1186293e2d3e4def734a669c348976e1ba0cdc628a19cd5a3b38e0bee28f9),
|
|
926
926
|
category: 13,
|
|
927
927
|
discountPercent: 0,
|
|
928
|
-
|
|
928
|
+
cantIncreaseDiscountPercent: false,
|
|
929
929
|
cantBuyWithCredits: false,
|
|
930
930
|
allowOwnerMint: false,
|
|
931
931
|
useReserveBeneficiaryAsDefault: false,
|
|
932
932
|
transfersPausable: false,
|
|
933
933
|
useVotingUnits: false,
|
|
934
|
-
|
|
934
|
+
cantBeRemoved: false,
|
|
935
935
|
splitPercent: 0,
|
|
936
936
|
splits: new JBSplit[](0)
|
|
937
937
|
});
|
|
@@ -947,13 +947,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
947
947
|
encodedIPFSUri: bytes32(0x6b8bfbf33e574747b69039adfc6788101047a4593db7ea7ff4f6fa5a890e9ecf),
|
|
948
948
|
category: 13,
|
|
949
949
|
discountPercent: 0,
|
|
950
|
-
|
|
950
|
+
cantIncreaseDiscountPercent: false,
|
|
951
951
|
cantBuyWithCredits: false,
|
|
952
952
|
allowOwnerMint: false,
|
|
953
953
|
useReserveBeneficiaryAsDefault: false,
|
|
954
954
|
transfersPausable: false,
|
|
955
955
|
useVotingUnits: false,
|
|
956
|
-
|
|
956
|
+
cantBeRemoved: false,
|
|
957
957
|
splitPercent: 0,
|
|
958
958
|
splits: new JBSplit[](0)
|
|
959
959
|
});
|
|
@@ -969,13 +969,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
969
969
|
encodedIPFSUri: bytes32(0xf11d1cea4163e0dfa2be8d60b0cd82d075fb37d969e40439df4e91db53bf7f3e),
|
|
970
970
|
category: 13,
|
|
971
971
|
discountPercent: 0,
|
|
972
|
-
|
|
972
|
+
cantIncreaseDiscountPercent: false,
|
|
973
973
|
cantBuyWithCredits: false,
|
|
974
974
|
allowOwnerMint: false,
|
|
975
975
|
useReserveBeneficiaryAsDefault: false,
|
|
976
976
|
transfersPausable: false,
|
|
977
977
|
useVotingUnits: false,
|
|
978
|
-
|
|
978
|
+
cantBeRemoved: false,
|
|
979
979
|
splitPercent: 0,
|
|
980
980
|
splits: new JBSplit[](0)
|
|
981
981
|
});
|
|
@@ -991,13 +991,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
991
991
|
encodedIPFSUri: bytes32(0xedf8136f97347d1fee1fc14b1b9cbdb6d170a75c3860a92664c56060712567f3),
|
|
992
992
|
category: 13,
|
|
993
993
|
discountPercent: 0,
|
|
994
|
-
|
|
994
|
+
cantIncreaseDiscountPercent: false,
|
|
995
995
|
cantBuyWithCredits: false,
|
|
996
996
|
allowOwnerMint: false,
|
|
997
997
|
useReserveBeneficiaryAsDefault: false,
|
|
998
998
|
transfersPausable: false,
|
|
999
999
|
useVotingUnits: false,
|
|
1000
|
-
|
|
1000
|
+
cantBeRemoved: false,
|
|
1001
1001
|
splitPercent: 0,
|
|
1002
1002
|
splits: new JBSplit[](0)
|
|
1003
1003
|
});
|
|
@@ -1013,13 +1013,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1013
1013
|
encodedIPFSUri: bytes32(0xbcc0c314f94ccb0f8f2717aff0b2096a28ace5b70465b5b4e106981fdbceb238),
|
|
1014
1014
|
category: 13,
|
|
1015
1015
|
discountPercent: 0,
|
|
1016
|
-
|
|
1016
|
+
cantIncreaseDiscountPercent: false,
|
|
1017
1017
|
cantBuyWithCredits: false,
|
|
1018
1018
|
allowOwnerMint: false,
|
|
1019
1019
|
useReserveBeneficiaryAsDefault: false,
|
|
1020
1020
|
transfersPausable: false,
|
|
1021
1021
|
useVotingUnits: false,
|
|
1022
|
-
|
|
1022
|
+
cantBeRemoved: false,
|
|
1023
1023
|
splitPercent: 0,
|
|
1024
1024
|
splits: new JBSplit[](0)
|
|
1025
1025
|
});
|
|
@@ -1035,13 +1035,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1035
1035
|
encodedIPFSUri: bytes32(0x867d8d8b9da0b5d8a00024d548e5f6e33562d521dff8c245764b6206003d1970),
|
|
1036
1036
|
category: 13,
|
|
1037
1037
|
discountPercent: 0,
|
|
1038
|
-
|
|
1038
|
+
cantIncreaseDiscountPercent: false,
|
|
1039
1039
|
cantBuyWithCredits: false,
|
|
1040
1040
|
allowOwnerMint: false,
|
|
1041
1041
|
useReserveBeneficiaryAsDefault: false,
|
|
1042
1042
|
transfersPausable: false,
|
|
1043
1043
|
useVotingUnits: false,
|
|
1044
|
-
|
|
1044
|
+
cantBeRemoved: false,
|
|
1045
1045
|
splitPercent: 0,
|
|
1046
1046
|
splits: new JBSplit[](0)
|
|
1047
1047
|
});
|
|
@@ -1057,13 +1057,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1057
1057
|
encodedIPFSUri: bytes32(0x876078bdfb8cdcc4359bb946274a9964e84877beac0ecd59fbf293c3bc2457c9),
|
|
1058
1058
|
category: 14,
|
|
1059
1059
|
discountPercent: 0,
|
|
1060
|
-
|
|
1060
|
+
cantIncreaseDiscountPercent: false,
|
|
1061
1061
|
cantBuyWithCredits: false,
|
|
1062
1062
|
allowOwnerMint: false,
|
|
1063
1063
|
useReserveBeneficiaryAsDefault: false,
|
|
1064
1064
|
transfersPausable: false,
|
|
1065
1065
|
useVotingUnits: false,
|
|
1066
|
-
|
|
1066
|
+
cantBeRemoved: false,
|
|
1067
1067
|
splitPercent: 0,
|
|
1068
1068
|
splits: new JBSplit[](0)
|
|
1069
1069
|
});
|
|
@@ -1079,13 +1079,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1079
1079
|
encodedIPFSUri: bytes32(0x1d1484b4b37a882e59ab5a01c1a32528e703e15156b9bb9b5372b61fec84c0df),
|
|
1080
1080
|
category: 16,
|
|
1081
1081
|
discountPercent: 0,
|
|
1082
|
-
|
|
1082
|
+
cantIncreaseDiscountPercent: false,
|
|
1083
1083
|
cantBuyWithCredits: false,
|
|
1084
1084
|
allowOwnerMint: false,
|
|
1085
1085
|
useReserveBeneficiaryAsDefault: false,
|
|
1086
1086
|
transfersPausable: false,
|
|
1087
1087
|
useVotingUnits: false,
|
|
1088
|
-
|
|
1088
|
+
cantBeRemoved: false,
|
|
1089
1089
|
splitPercent: 0,
|
|
1090
1090
|
splits: new JBSplit[](0)
|
|
1091
1091
|
});
|
|
@@ -679,8 +679,8 @@ contract TestBanny721TokenUriResolver is Test {
|
|
|
679
679
|
discountPercent: 0,
|
|
680
680
|
allowOwnerMint: false,
|
|
681
681
|
transfersPausable: false,
|
|
682
|
-
|
|
683
|
-
|
|
682
|
+
cantBeRemoved: false,
|
|
683
|
+
cantIncreaseDiscountPercent: false,
|
|
684
684
|
cantBuyWithCredits: false,
|
|
685
685
|
splitPercent: 0,
|
|
686
686
|
resolvedUri: ""
|
package/test/BannyAttacks.t.sol
CHANGED
|
@@ -163,8 +163,8 @@ contract BannyAttacks is Test {
|
|
|
163
163
|
discountPercent: 0,
|
|
164
164
|
allowOwnerMint: false,
|
|
165
165
|
transfersPausable: false,
|
|
166
|
-
|
|
167
|
-
|
|
166
|
+
cantBeRemoved: false,
|
|
167
|
+
cantIncreaseDiscountPercent: false,
|
|
168
168
|
cantBuyWithCredits: false,
|
|
169
169
|
splitPercent: 0,
|
|
170
170
|
resolvedUri: ""
|
package/test/DecorateFlow.t.sol
CHANGED
|
@@ -1077,8 +1077,8 @@ contract DecorateFlowTests is Test {
|
|
|
1077
1077
|
discountPercent: 0,
|
|
1078
1078
|
allowOwnerMint: false,
|
|
1079
1079
|
transfersPausable: false,
|
|
1080
|
-
|
|
1081
|
-
|
|
1080
|
+
cantBeRemoved: false,
|
|
1081
|
+
cantIncreaseDiscountPercent: false,
|
|
1082
1082
|
cantBuyWithCredits: false,
|
|
1083
1083
|
splitPercent: 0,
|
|
1084
1084
|
resolvedUri: ""
|
package/test/Fork.t.sol
CHANGED
|
@@ -867,8 +867,8 @@ contract BannyForkTest is Test {
|
|
|
867
867
|
discountPercent: 0,
|
|
868
868
|
allowOwnerMint: false,
|
|
869
869
|
transfersPausable: false,
|
|
870
|
-
|
|
871
|
-
|
|
870
|
+
cantBeRemoved: false,
|
|
871
|
+
cantIncreaseDiscountPercent: false,
|
|
872
872
|
cantBuyWithCredits: false,
|
|
873
873
|
splitPercent: 0,
|
|
874
874
|
resolvedUri: ""
|
|
@@ -890,8 +890,8 @@ contract BannyForkTest is Test {
|
|
|
890
890
|
discountPercent: 0,
|
|
891
891
|
allowOwnerMint: false,
|
|
892
892
|
transfersPausable: false,
|
|
893
|
-
|
|
894
|
-
|
|
893
|
+
cantBeRemoved: false,
|
|
894
|
+
cantIncreaseDiscountPercent: false,
|
|
895
895
|
cantBuyWithCredits: false,
|
|
896
896
|
splitPercent: 0,
|
|
897
897
|
resolvedUri: ""
|
|
@@ -1940,8 +1940,8 @@ contract BannyForkTest is Test {
|
|
|
1940
1940
|
useReserveBeneficiaryAsDefault: false,
|
|
1941
1941
|
transfersPausable: false,
|
|
1942
1942
|
useVotingUnits: false,
|
|
1943
|
-
|
|
1944
|
-
|
|
1943
|
+
cantBeRemoved: false,
|
|
1944
|
+
cantIncreaseDiscountPercent: false,
|
|
1945
1945
|
cantBuyWithCredits: false,
|
|
1946
1946
|
splitPercent: 0,
|
|
1947
1947
|
splits: new JBSplit[](0)
|
|
@@ -381,8 +381,8 @@ contract OutfitTransferLifecycleTest is Test {
|
|
|
381
381
|
discountPercent: 0,
|
|
382
382
|
allowOwnerMint: false,
|
|
383
383
|
transfersPausable: false,
|
|
384
|
-
|
|
385
|
-
|
|
384
|
+
cantBeRemoved: false,
|
|
385
|
+
cantIncreaseDiscountPercent: false,
|
|
386
386
|
cantBuyWithCredits: false,
|
|
387
387
|
splitPercent: 0,
|
|
388
388
|
resolvedUri: ""
|
package/test/TestAuditGaps.sol
CHANGED
|
@@ -159,8 +159,8 @@ contract TestAuditGaps is Test {
|
|
|
159
159
|
discountPercent: 0,
|
|
160
160
|
allowOwnerMint: false,
|
|
161
161
|
transfersPausable: false,
|
|
162
|
-
|
|
163
|
-
|
|
162
|
+
cantBeRemoved: false,
|
|
163
|
+
cantIncreaseDiscountPercent: false,
|
|
164
164
|
cantBuyWithCredits: false,
|
|
165
165
|
splitPercent: 0,
|
|
166
166
|
resolvedUri: ""
|
|
@@ -184,8 +184,8 @@ contract TestQALastMile is Test {
|
|
|
184
184
|
discountPercent: 0,
|
|
185
185
|
allowOwnerMint: false,
|
|
186
186
|
transfersPausable: false,
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
cantBeRemoved: false,
|
|
188
|
+
cantIncreaseDiscountPercent: false,
|
|
189
189
|
cantBuyWithCredits: false,
|
|
190
190
|
splitPercent: 0,
|
|
191
191
|
resolvedUri: ""
|
|
@@ -382,8 +382,8 @@ contract AntiStrandingRetentionTest is Test {
|
|
|
382
382
|
discountPercent: 0,
|
|
383
383
|
allowOwnerMint: false,
|
|
384
384
|
transfersPausable: false,
|
|
385
|
-
|
|
386
|
-
|
|
385
|
+
cantBeRemoved: false,
|
|
386
|
+
cantIncreaseDiscountPercent: false,
|
|
387
387
|
cantBuyWithCredits: false,
|
|
388
388
|
splitPercent: 0,
|
|
389
389
|
resolvedUri: ""
|
|
@@ -148,8 +148,8 @@ contract BurnedBodyStrandsAssetsTest is Test {
|
|
|
148
148
|
discountPercent: 0,
|
|
149
149
|
allowOwnerMint: false,
|
|
150
150
|
transfersPausable: false,
|
|
151
|
-
|
|
152
|
-
|
|
151
|
+
cantBeRemoved: false,
|
|
152
|
+
cantIncreaseDiscountPercent: false,
|
|
153
153
|
cantBuyWithCredits: false,
|
|
154
154
|
splitPercent: 0,
|
|
155
155
|
resolvedUri: ""
|
|
@@ -212,8 +212,8 @@ contract MergedOutfitExclusivityTest is Test {
|
|
|
212
212
|
discountPercent: 0,
|
|
213
213
|
allowOwnerMint: false,
|
|
214
214
|
transfersPausable: false,
|
|
215
|
-
|
|
216
|
-
|
|
215
|
+
cantBeRemoved: false,
|
|
216
|
+
cantIncreaseDiscountPercent: false,
|
|
217
217
|
cantBuyWithCredits: false,
|
|
218
218
|
splitPercent: 0,
|
|
219
219
|
resolvedUri: ""
|
|
@@ -182,8 +182,8 @@ contract TryTransferFromStrandsAssetsTest is Test {
|
|
|
182
182
|
discountPercent: 0,
|
|
183
183
|
allowOwnerMint: false,
|
|
184
184
|
transfersPausable: false,
|
|
185
|
-
|
|
186
|
-
|
|
185
|
+
cantBeRemoved: false,
|
|
186
|
+
cantIncreaseDiscountPercent: false,
|
|
187
187
|
cantBuyWithCredits: false,
|
|
188
188
|
splitPercent: 0,
|
|
189
189
|
resolvedUri: ""
|
|
@@ -133,8 +133,8 @@ contract BodyCategoryValidationTest is Test {
|
|
|
133
133
|
discountPercent: 0,
|
|
134
134
|
allowOwnerMint: false,
|
|
135
135
|
transfersPausable: false,
|
|
136
|
-
|
|
137
|
-
|
|
136
|
+
cantBeRemoved: false,
|
|
137
|
+
cantIncreaseDiscountPercent: false,
|
|
138
138
|
cantBuyWithCredits: false,
|
|
139
139
|
splitPercent: 0,
|
|
140
140
|
resolvedUri: ""
|
|
@@ -172,8 +172,8 @@ contract BurnedTokenCheckTest 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: ""
|
|
@@ -195,8 +195,8 @@ contract CEIReorderTest is Test {
|
|
|
195
195
|
discountPercent: 0,
|
|
196
196
|
allowOwnerMint: false,
|
|
197
197
|
transfersPausable: false,
|
|
198
|
-
|
|
199
|
-
|
|
198
|
+
cantBeRemoved: false,
|
|
199
|
+
cantIncreaseDiscountPercent: false,
|
|
200
200
|
cantBuyWithCredits: false,
|
|
201
201
|
splitPercent: 0,
|
|
202
202
|
resolvedUri: ""
|
|
@@ -332,8 +332,8 @@ contract RemovedTierDesyncTest is Test {
|
|
|
332
332
|
discountPercent: 0,
|
|
333
333
|
allowOwnerMint: false,
|
|
334
334
|
transfersPausable: false,
|
|
335
|
-
|
|
336
|
-
|
|
335
|
+
cantBeRemoved: false,
|
|
336
|
+
cantIncreaseDiscountPercent: false,
|
|
337
337
|
cantBuyWithCredits: false,
|
|
338
338
|
splitPercent: 0,
|
|
339
339
|
resolvedUri: ""
|