@bannynet/core-v6 0.0.15 → 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 +4 -4
- package/script/Add.Denver.s.sol +3 -2
- package/script/Deploy.s.sol +12 -8
- package/script/Drop1.s.sol +141 -94
- package/test/Banny721TokenUriResolver.t.sol +3 -2
- package/test/BannyAttacks.t.sol +3 -2
- package/test/DecorateFlow.t.sol +3 -2
- package/test/Fork.t.sol +9 -6
- package/test/OutfitTransferLifecycle.t.sol +3 -2
- package/test/TestAuditGaps.sol +3 -2
- package/test/TestQALastMile.t.sol +3 -2
- package/test/audit/AntiStrandingRetention.t.sol +3 -2
- package/test/audit/BurnedBodyStrandsAssets.t.sol +3 -2
- package/test/audit/MergedOutfitExclusivity.t.sol +3 -2
- package/test/audit/TryTransferFromStrandsAssets.t.sol +3 -2
- package/test/regression/BodyCategoryValidation.t.sol +3 -2
- package/test/regression/BurnedTokenCheck.t.sol +3 -2
- package/test/regression/CEIReorder.t.sol +3 -2
- package/test/regression/RemovedTierDesync.t.sol +3 -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,14 +20,14 @@
|
|
|
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
|
-
"@rev-net/core-v6": "^0.0.
|
|
30
|
+
"@rev-net/core-v6": "^0.0.24",
|
|
31
31
|
"keccak": "^3.0.4"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
package/script/Add.Denver.s.sol
CHANGED
|
@@ -66,12 +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
|
+
cantBuyWithCredits: false,
|
|
70
71
|
allowOwnerMint: false,
|
|
71
72
|
useReserveBeneficiaryAsDefault: false,
|
|
72
73
|
transfersPausable: false,
|
|
73
74
|
useVotingUnits: false,
|
|
74
|
-
|
|
75
|
+
cantBeRemoved: false,
|
|
75
76
|
splitPercent: 0,
|
|
76
77
|
splits: new JBSplit[](0)
|
|
77
78
|
});
|
package/script/Deploy.s.sol
CHANGED
|
@@ -229,12 +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
|
+
cantBuyWithCredits: false,
|
|
233
234
|
allowOwnerMint: false,
|
|
234
235
|
useReserveBeneficiaryAsDefault: false,
|
|
235
236
|
transfersPausable: false,
|
|
236
237
|
useVotingUnits: false,
|
|
237
|
-
|
|
238
|
+
cantBeRemoved: true,
|
|
238
239
|
splitPercent: 0,
|
|
239
240
|
splits: new JBSplit[](0)
|
|
240
241
|
});
|
|
@@ -247,12 +248,13 @@ contract DeployScript is Script, Sphinx {
|
|
|
247
248
|
encodedIPFSUri: bytes32(0),
|
|
248
249
|
category: BANNY_BODY_CATEGORY,
|
|
249
250
|
discountPercent: 0,
|
|
250
|
-
|
|
251
|
+
cantIncreaseDiscountPercent: true,
|
|
252
|
+
cantBuyWithCredits: false,
|
|
251
253
|
allowOwnerMint: false,
|
|
252
254
|
useReserveBeneficiaryAsDefault: false,
|
|
253
255
|
transfersPausable: false,
|
|
254
256
|
useVotingUnits: false,
|
|
255
|
-
|
|
257
|
+
cantBeRemoved: true,
|
|
256
258
|
splitPercent: 0,
|
|
257
259
|
splits: new JBSplit[](0)
|
|
258
260
|
});
|
|
@@ -265,12 +267,13 @@ contract DeployScript is Script, Sphinx {
|
|
|
265
267
|
encodedIPFSUri: bytes32(0),
|
|
266
268
|
category: BANNY_BODY_CATEGORY,
|
|
267
269
|
discountPercent: 0,
|
|
268
|
-
|
|
270
|
+
cantIncreaseDiscountPercent: true,
|
|
271
|
+
cantBuyWithCredits: false,
|
|
269
272
|
allowOwnerMint: false,
|
|
270
273
|
useReserveBeneficiaryAsDefault: false,
|
|
271
274
|
transfersPausable: false,
|
|
272
275
|
useVotingUnits: false,
|
|
273
|
-
|
|
276
|
+
cantBeRemoved: true,
|
|
274
277
|
splitPercent: 0,
|
|
275
278
|
splits: new JBSplit[](0)
|
|
276
279
|
});
|
|
@@ -283,12 +286,13 @@ contract DeployScript is Script, Sphinx {
|
|
|
283
286
|
encodedIPFSUri: bytes32(0),
|
|
284
287
|
category: BANNY_BODY_CATEGORY,
|
|
285
288
|
discountPercent: 0,
|
|
286
|
-
|
|
289
|
+
cantIncreaseDiscountPercent: true,
|
|
290
|
+
cantBuyWithCredits: false,
|
|
287
291
|
allowOwnerMint: false,
|
|
288
292
|
useReserveBeneficiaryAsDefault: false,
|
|
289
293
|
transfersPausable: false,
|
|
290
294
|
useVotingUnits: false,
|
|
291
|
-
|
|
295
|
+
cantBeRemoved: true,
|
|
292
296
|
splitPercent: 0,
|
|
293
297
|
splits: new JBSplit[](0)
|
|
294
298
|
});
|
package/script/Drop1.s.sol
CHANGED
|
@@ -67,12 +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
|
+
cantBuyWithCredits: false,
|
|
71
72
|
allowOwnerMint: false,
|
|
72
73
|
useReserveBeneficiaryAsDefault: false,
|
|
73
74
|
transfersPausable: false,
|
|
74
75
|
useVotingUnits: false,
|
|
75
|
-
|
|
76
|
+
cantBeRemoved: false,
|
|
76
77
|
splitPercent: 0,
|
|
77
78
|
splits: new JBSplit[](0)
|
|
78
79
|
});
|
|
@@ -88,12 +89,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
88
89
|
encodedIPFSUri: bytes32(0x233dd4173ef4ed0f60822a469277bb328b5ae056d8980301f7bd7ad9df780099),
|
|
89
90
|
category: 1,
|
|
90
91
|
discountPercent: 0,
|
|
91
|
-
|
|
92
|
+
cantIncreaseDiscountPercent: false,
|
|
93
|
+
cantBuyWithCredits: false,
|
|
92
94
|
allowOwnerMint: false,
|
|
93
95
|
useReserveBeneficiaryAsDefault: false,
|
|
94
96
|
transfersPausable: false,
|
|
95
97
|
useVotingUnits: false,
|
|
96
|
-
|
|
98
|
+
cantBeRemoved: false,
|
|
97
99
|
splitPercent: 0,
|
|
98
100
|
splits: new JBSplit[](0)
|
|
99
101
|
});
|
|
@@ -109,12 +111,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
109
111
|
encodedIPFSUri: bytes32(0x6cb06872575a04a0c4527157eb4719be10b6474d08aa2ce2a4ac5bcb0da996ea),
|
|
110
112
|
category: 2,
|
|
111
113
|
discountPercent: 0,
|
|
112
|
-
|
|
114
|
+
cantIncreaseDiscountPercent: false,
|
|
115
|
+
cantBuyWithCredits: false,
|
|
113
116
|
allowOwnerMint: false,
|
|
114
117
|
useReserveBeneficiaryAsDefault: false,
|
|
115
118
|
transfersPausable: false,
|
|
116
119
|
useVotingUnits: false,
|
|
117
|
-
|
|
120
|
+
cantBeRemoved: false,
|
|
118
121
|
splitPercent: 0,
|
|
119
122
|
splits: new JBSplit[](0)
|
|
120
123
|
});
|
|
@@ -130,12 +133,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
130
133
|
encodedIPFSUri: bytes32(0x7206771942e806053d6ed8aa90040e53a07319e4fd1f938fc4a10879b7bd2da9),
|
|
131
134
|
category: 2,
|
|
132
135
|
discountPercent: 0,
|
|
133
|
-
|
|
136
|
+
cantIncreaseDiscountPercent: false,
|
|
137
|
+
cantBuyWithCredits: false,
|
|
134
138
|
allowOwnerMint: false,
|
|
135
139
|
useReserveBeneficiaryAsDefault: false,
|
|
136
140
|
transfersPausable: false,
|
|
137
141
|
useVotingUnits: false,
|
|
138
|
-
|
|
142
|
+
cantBeRemoved: false,
|
|
139
143
|
splitPercent: 0,
|
|
140
144
|
splits: new JBSplit[](0)
|
|
141
145
|
});
|
|
@@ -151,12 +155,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
151
155
|
encodedIPFSUri: bytes32(0xef6478be50575bade53e7ce4c9fb5b399643bcabed94f2111afb63e97fb9fd44),
|
|
152
156
|
category: 3,
|
|
153
157
|
discountPercent: 0,
|
|
154
|
-
|
|
158
|
+
cantIncreaseDiscountPercent: false,
|
|
159
|
+
cantBuyWithCredits: false,
|
|
155
160
|
allowOwnerMint: false,
|
|
156
161
|
useReserveBeneficiaryAsDefault: false,
|
|
157
162
|
transfersPausable: false,
|
|
158
163
|
useVotingUnits: false,
|
|
159
|
-
|
|
164
|
+
cantBeRemoved: false,
|
|
160
165
|
splitPercent: 0,
|
|
161
166
|
splits: new JBSplit[](0)
|
|
162
167
|
});
|
|
@@ -172,12 +177,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
172
177
|
encodedIPFSUri: bytes32(0xe26d20762024435aedd91058ac9bc9900d719e1f7a04cace501d83a4c1f40941),
|
|
173
178
|
category: 4,
|
|
174
179
|
discountPercent: 0,
|
|
175
|
-
|
|
180
|
+
cantIncreaseDiscountPercent: false,
|
|
181
|
+
cantBuyWithCredits: false,
|
|
176
182
|
allowOwnerMint: false,
|
|
177
183
|
useReserveBeneficiaryAsDefault: false,
|
|
178
184
|
transfersPausable: false,
|
|
179
185
|
useVotingUnits: false,
|
|
180
|
-
|
|
186
|
+
cantBeRemoved: false,
|
|
181
187
|
splitPercent: 0,
|
|
182
188
|
splits: new JBSplit[](0)
|
|
183
189
|
});
|
|
@@ -193,12 +199,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
193
199
|
encodedIPFSUri: bytes32(0x9f76cb495fd79397cba4fe3d377a5aa2fdd63df218f3b3022c6cc8e32478b494),
|
|
194
200
|
category: 6,
|
|
195
201
|
discountPercent: 0,
|
|
196
|
-
|
|
202
|
+
cantIncreaseDiscountPercent: false,
|
|
203
|
+
cantBuyWithCredits: false,
|
|
197
204
|
allowOwnerMint: false,
|
|
198
205
|
useReserveBeneficiaryAsDefault: false,
|
|
199
206
|
transfersPausable: false,
|
|
200
207
|
useVotingUnits: false,
|
|
201
|
-
|
|
208
|
+
cantBeRemoved: false,
|
|
202
209
|
splitPercent: 0,
|
|
203
210
|
splits: new JBSplit[](0)
|
|
204
211
|
});
|
|
@@ -214,12 +221,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
214
221
|
encodedIPFSUri: bytes32(0xf01423f9dae3de4adc7e372e6902a351e2c6193a385dde90f5baf37165914831),
|
|
215
222
|
category: 6,
|
|
216
223
|
discountPercent: 0,
|
|
217
|
-
|
|
224
|
+
cantIncreaseDiscountPercent: false,
|
|
225
|
+
cantBuyWithCredits: false,
|
|
218
226
|
allowOwnerMint: false,
|
|
219
227
|
useReserveBeneficiaryAsDefault: true,
|
|
220
228
|
transfersPausable: false,
|
|
221
229
|
useVotingUnits: false,
|
|
222
|
-
|
|
230
|
+
cantBeRemoved: false,
|
|
223
231
|
splitPercent: 0,
|
|
224
232
|
splits: new JBSplit[](0)
|
|
225
233
|
});
|
|
@@ -235,12 +243,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
235
243
|
encodedIPFSUri: bytes32(0x325c138f1f38e5b5f90a57a248a2f5afe6af738b2adfc825cf9f413bbcf50fa1),
|
|
236
244
|
category: 6,
|
|
237
245
|
discountPercent: 0,
|
|
238
|
-
|
|
246
|
+
cantIncreaseDiscountPercent: false,
|
|
247
|
+
cantBuyWithCredits: false,
|
|
239
248
|
allowOwnerMint: false,
|
|
240
249
|
useReserveBeneficiaryAsDefault: false,
|
|
241
250
|
transfersPausable: false,
|
|
242
251
|
useVotingUnits: false,
|
|
243
|
-
|
|
252
|
+
cantBeRemoved: false,
|
|
244
253
|
splitPercent: 0,
|
|
245
254
|
splits: new JBSplit[](0)
|
|
246
255
|
});
|
|
@@ -256,12 +265,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
256
265
|
encodedIPFSUri: bytes32(0x7dc7e556a7ac39c473da85165df3d094c6ed9258003fb7dc3d9a8582bcb0dc7f),
|
|
257
266
|
category: 6,
|
|
258
267
|
discountPercent: 0,
|
|
259
|
-
|
|
268
|
+
cantIncreaseDiscountPercent: false,
|
|
269
|
+
cantBuyWithCredits: false,
|
|
260
270
|
allowOwnerMint: false,
|
|
261
271
|
useReserveBeneficiaryAsDefault: false,
|
|
262
272
|
transfersPausable: false,
|
|
263
273
|
useVotingUnits: false,
|
|
264
|
-
|
|
274
|
+
cantBeRemoved: false,
|
|
265
275
|
splitPercent: 0,
|
|
266
276
|
splits: new JBSplit[](0)
|
|
267
277
|
});
|
|
@@ -277,12 +287,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
277
287
|
encodedIPFSUri: bytes32(0xb06dbd64696994798dee9e00d406a649191524a95e715532f1bdebc92f00aebd),
|
|
278
288
|
category: 6,
|
|
279
289
|
discountPercent: 0,
|
|
280
|
-
|
|
290
|
+
cantIncreaseDiscountPercent: false,
|
|
291
|
+
cantBuyWithCredits: false,
|
|
281
292
|
allowOwnerMint: false,
|
|
282
293
|
useReserveBeneficiaryAsDefault: false,
|
|
283
294
|
transfersPausable: false,
|
|
284
295
|
useVotingUnits: false,
|
|
285
|
-
|
|
296
|
+
cantBeRemoved: false,
|
|
286
297
|
splitPercent: 0,
|
|
287
298
|
splits: new JBSplit[](0)
|
|
288
299
|
});
|
|
@@ -298,12 +309,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
298
309
|
encodedIPFSUri: bytes32(0x52815d712399165b921df61795581a8c20ad9acf3502e777e20a782b7bc11d54),
|
|
299
310
|
category: 7,
|
|
300
311
|
discountPercent: 0,
|
|
301
|
-
|
|
312
|
+
cantIncreaseDiscountPercent: false,
|
|
313
|
+
cantBuyWithCredits: false,
|
|
302
314
|
allowOwnerMint: false,
|
|
303
315
|
useReserveBeneficiaryAsDefault: false,
|
|
304
316
|
transfersPausable: false,
|
|
305
317
|
useVotingUnits: false,
|
|
306
|
-
|
|
318
|
+
cantBeRemoved: false,
|
|
307
319
|
splitPercent: 0,
|
|
308
320
|
splits: new JBSplit[](0)
|
|
309
321
|
});
|
|
@@ -319,12 +331,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
319
331
|
encodedIPFSUri: bytes32(0x8a1b694033a47ad08b648d2608fa1b86dccdb0f431795c470605a819988f55ad),
|
|
320
332
|
category: 8,
|
|
321
333
|
discountPercent: 0,
|
|
322
|
-
|
|
334
|
+
cantIncreaseDiscountPercent: false,
|
|
335
|
+
cantBuyWithCredits: false,
|
|
323
336
|
allowOwnerMint: false,
|
|
324
337
|
useReserveBeneficiaryAsDefault: false,
|
|
325
338
|
transfersPausable: false,
|
|
326
339
|
useVotingUnits: false,
|
|
327
|
-
|
|
340
|
+
cantBeRemoved: false,
|
|
328
341
|
splitPercent: 0,
|
|
329
342
|
splits: new JBSplit[](0)
|
|
330
343
|
});
|
|
@@ -340,12 +353,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
340
353
|
encodedIPFSUri: bytes32(0x39cd82854f76c22afccaf4ad6f055d4e225c2e225f322154f1c3d327cbaccb5a),
|
|
341
354
|
category: 8,
|
|
342
355
|
discountPercent: 0,
|
|
343
|
-
|
|
356
|
+
cantIncreaseDiscountPercent: false,
|
|
357
|
+
cantBuyWithCredits: false,
|
|
344
358
|
allowOwnerMint: false,
|
|
345
359
|
useReserveBeneficiaryAsDefault: false,
|
|
346
360
|
transfersPausable: false,
|
|
347
361
|
useVotingUnits: false,
|
|
348
|
-
|
|
362
|
+
cantBeRemoved: false,
|
|
349
363
|
splitPercent: 0,
|
|
350
364
|
splits: new JBSplit[](0)
|
|
351
365
|
});
|
|
@@ -361,12 +375,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
361
375
|
encodedIPFSUri: bytes32(0x4e87f483ea20c1537f24c2a586acd14819ca2a6cba1bab68365361e45374f9f9),
|
|
362
376
|
category: 8,
|
|
363
377
|
discountPercent: 0,
|
|
364
|
-
|
|
378
|
+
cantIncreaseDiscountPercent: false,
|
|
379
|
+
cantBuyWithCredits: false,
|
|
365
380
|
allowOwnerMint: false,
|
|
366
381
|
useReserveBeneficiaryAsDefault: false,
|
|
367
382
|
transfersPausable: false,
|
|
368
383
|
useVotingUnits: false,
|
|
369
|
-
|
|
384
|
+
cantBeRemoved: false,
|
|
370
385
|
splitPercent: 0,
|
|
371
386
|
splits: new JBSplit[](0)
|
|
372
387
|
});
|
|
@@ -382,12 +397,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
382
397
|
encodedIPFSUri: bytes32(0x5fbc1c58d608acd436c18e11edc72d3ae436e1a4c15d127b28a9a24879013d3c),
|
|
383
398
|
category: 9,
|
|
384
399
|
discountPercent: 0,
|
|
385
|
-
|
|
400
|
+
cantIncreaseDiscountPercent: false,
|
|
401
|
+
cantBuyWithCredits: false,
|
|
386
402
|
allowOwnerMint: false,
|
|
387
403
|
useReserveBeneficiaryAsDefault: false,
|
|
388
404
|
transfersPausable: false,
|
|
389
405
|
useVotingUnits: false,
|
|
390
|
-
|
|
406
|
+
cantBeRemoved: false,
|
|
391
407
|
splitPercent: 0,
|
|
392
408
|
splits: new JBSplit[](0)
|
|
393
409
|
});
|
|
@@ -403,12 +419,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
403
419
|
encodedIPFSUri: bytes32(0x823466de69eaf605d3a62366e5e9dbd6649a71da146f791f94628d4749a2da55),
|
|
404
420
|
category: 9,
|
|
405
421
|
discountPercent: 0,
|
|
406
|
-
|
|
422
|
+
cantIncreaseDiscountPercent: false,
|
|
423
|
+
cantBuyWithCredits: false,
|
|
407
424
|
allowOwnerMint: false,
|
|
408
425
|
useReserveBeneficiaryAsDefault: false,
|
|
409
426
|
transfersPausable: false,
|
|
410
427
|
useVotingUnits: false,
|
|
411
|
-
|
|
428
|
+
cantBeRemoved: false,
|
|
412
429
|
splitPercent: 0,
|
|
413
430
|
splits: new JBSplit[](0)
|
|
414
431
|
});
|
|
@@ -424,12 +441,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
424
441
|
encodedIPFSUri: bytes32(0x017db86219678b824995b8556e7073d65af87212671312212365497708675c41),
|
|
425
442
|
category: 9,
|
|
426
443
|
discountPercent: 0,
|
|
427
|
-
|
|
444
|
+
cantIncreaseDiscountPercent: false,
|
|
445
|
+
cantBuyWithCredits: false,
|
|
428
446
|
allowOwnerMint: false,
|
|
429
447
|
useReserveBeneficiaryAsDefault: false,
|
|
430
448
|
transfersPausable: false,
|
|
431
449
|
useVotingUnits: false,
|
|
432
|
-
|
|
450
|
+
cantBeRemoved: false,
|
|
433
451
|
splitPercent: 0,
|
|
434
452
|
splits: new JBSplit[](0)
|
|
435
453
|
});
|
|
@@ -445,12 +463,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
445
463
|
encodedIPFSUri: bytes32(0xdf7d4084b087b22cc172e1df3a2b465b5386a950e9bcd53ed424014a0a86ee57),
|
|
446
464
|
category: 9,
|
|
447
465
|
discountPercent: 0,
|
|
448
|
-
|
|
466
|
+
cantIncreaseDiscountPercent: false,
|
|
467
|
+
cantBuyWithCredits: false,
|
|
449
468
|
allowOwnerMint: false,
|
|
450
469
|
useReserveBeneficiaryAsDefault: false,
|
|
451
470
|
transfersPausable: false,
|
|
452
471
|
useVotingUnits: false,
|
|
453
|
-
|
|
472
|
+
cantBeRemoved: false,
|
|
454
473
|
splitPercent: 0,
|
|
455
474
|
splits: new JBSplit[](0)
|
|
456
475
|
});
|
|
@@ -466,12 +485,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
466
485
|
encodedIPFSUri: bytes32(0x745b3b4f18aab6ad0d8465d34751ca8eb5b9c267dee6ec8bf63686b508afacf3),
|
|
467
486
|
category: 10,
|
|
468
487
|
discountPercent: 0,
|
|
469
|
-
|
|
488
|
+
cantIncreaseDiscountPercent: false,
|
|
489
|
+
cantBuyWithCredits: false,
|
|
470
490
|
allowOwnerMint: false,
|
|
471
491
|
useReserveBeneficiaryAsDefault: false,
|
|
472
492
|
transfersPausable: false,
|
|
473
493
|
useVotingUnits: false,
|
|
474
|
-
|
|
494
|
+
cantBeRemoved: false,
|
|
475
495
|
splitPercent: 0,
|
|
476
496
|
splits: new JBSplit[](0)
|
|
477
497
|
});
|
|
@@ -487,12 +507,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
487
507
|
encodedIPFSUri: bytes32(0x815c7dfb119da1e3802754f8ce364caf7a8069e331e35c3f20446800579d8df8),
|
|
488
508
|
category: 11,
|
|
489
509
|
discountPercent: 0,
|
|
490
|
-
|
|
510
|
+
cantIncreaseDiscountPercent: false,
|
|
511
|
+
cantBuyWithCredits: false,
|
|
491
512
|
allowOwnerMint: false,
|
|
492
513
|
useReserveBeneficiaryAsDefault: false,
|
|
493
514
|
transfersPausable: false,
|
|
494
515
|
useVotingUnits: false,
|
|
495
|
-
|
|
516
|
+
cantBeRemoved: false,
|
|
496
517
|
splitPercent: 0,
|
|
497
518
|
splits: new JBSplit[](0)
|
|
498
519
|
});
|
|
@@ -508,12 +529,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
508
529
|
encodedIPFSUri: bytes32(0xc77fe2f93a5a48ad7f59a3c6c40dd76317e47605fcb74b85a4c5bea160fdab6e),
|
|
509
530
|
category: 11,
|
|
510
531
|
discountPercent: 0,
|
|
511
|
-
|
|
532
|
+
cantIncreaseDiscountPercent: false,
|
|
533
|
+
cantBuyWithCredits: false,
|
|
512
534
|
allowOwnerMint: false,
|
|
513
535
|
useReserveBeneficiaryAsDefault: false,
|
|
514
536
|
transfersPausable: false,
|
|
515
537
|
useVotingUnits: false,
|
|
516
|
-
|
|
538
|
+
cantBeRemoved: false,
|
|
517
539
|
splitPercent: 0,
|
|
518
540
|
splits: new JBSplit[](0)
|
|
519
541
|
});
|
|
@@ -529,12 +551,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
529
551
|
encodedIPFSUri: bytes32(0x2b62afa12feb307f005902e6bec09f15f8f5d7ba09d937f1162e5d2f00c21e12),
|
|
530
552
|
category: 11,
|
|
531
553
|
discountPercent: 0,
|
|
532
|
-
|
|
554
|
+
cantIncreaseDiscountPercent: false,
|
|
555
|
+
cantBuyWithCredits: false,
|
|
533
556
|
allowOwnerMint: false,
|
|
534
557
|
useReserveBeneficiaryAsDefault: false,
|
|
535
558
|
transfersPausable: false,
|
|
536
559
|
useVotingUnits: false,
|
|
537
|
-
|
|
560
|
+
cantBeRemoved: false,
|
|
538
561
|
splitPercent: 0,
|
|
539
562
|
splits: new JBSplit[](0)
|
|
540
563
|
});
|
|
@@ -550,12 +573,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
550
573
|
encodedIPFSUri: bytes32(0x4d4b149bded92db977ac35a77bcfff72270eaee404db8751b27ec18030511d3b),
|
|
551
574
|
category: 11,
|
|
552
575
|
discountPercent: 0,
|
|
553
|
-
|
|
576
|
+
cantIncreaseDiscountPercent: false,
|
|
577
|
+
cantBuyWithCredits: false,
|
|
554
578
|
allowOwnerMint: false,
|
|
555
579
|
useReserveBeneficiaryAsDefault: false,
|
|
556
580
|
transfersPausable: false,
|
|
557
581
|
useVotingUnits: false,
|
|
558
|
-
|
|
582
|
+
cantBeRemoved: false,
|
|
559
583
|
splitPercent: 0,
|
|
560
584
|
splits: new JBSplit[](0)
|
|
561
585
|
});
|
|
@@ -571,12 +595,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
571
595
|
encodedIPFSUri: bytes32(0x5ec40dc2aad2a009266337a198d4b9098cd968d08c06cdc328efd4789f974aa4),
|
|
572
596
|
category: 11,
|
|
573
597
|
discountPercent: 0,
|
|
574
|
-
|
|
598
|
+
cantIncreaseDiscountPercent: false,
|
|
599
|
+
cantBuyWithCredits: false,
|
|
575
600
|
allowOwnerMint: false,
|
|
576
601
|
useReserveBeneficiaryAsDefault: false,
|
|
577
602
|
transfersPausable: false,
|
|
578
603
|
useVotingUnits: false,
|
|
579
|
-
|
|
604
|
+
cantBeRemoved: false,
|
|
580
605
|
splitPercent: 0,
|
|
581
606
|
splits: new JBSplit[](0)
|
|
582
607
|
});
|
|
@@ -592,12 +617,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
592
617
|
encodedIPFSUri: bytes32(0xb8658c65907f280bfbd228ec384f0dfdfe55401505dc0f303d7d3d6a68a6414b),
|
|
593
618
|
category: 11,
|
|
594
619
|
discountPercent: 0,
|
|
595
|
-
|
|
620
|
+
cantIncreaseDiscountPercent: false,
|
|
621
|
+
cantBuyWithCredits: false,
|
|
596
622
|
allowOwnerMint: false,
|
|
597
623
|
useReserveBeneficiaryAsDefault: false,
|
|
598
624
|
transfersPausable: false,
|
|
599
625
|
useVotingUnits: false,
|
|
600
|
-
|
|
626
|
+
cantBeRemoved: false,
|
|
601
627
|
splitPercent: 0,
|
|
602
628
|
splits: new JBSplit[](0)
|
|
603
629
|
});
|
|
@@ -613,12 +639,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
613
639
|
encodedIPFSUri: bytes32(0x04e22ea49d80f346b7a5a9013169470824f71faa7d9e0155a71f4afc3fa63f89),
|
|
614
640
|
category: 11,
|
|
615
641
|
discountPercent: 0,
|
|
616
|
-
|
|
642
|
+
cantIncreaseDiscountPercent: false,
|
|
643
|
+
cantBuyWithCredits: false,
|
|
617
644
|
allowOwnerMint: false,
|
|
618
645
|
useReserveBeneficiaryAsDefault: false,
|
|
619
646
|
transfersPausable: false,
|
|
620
647
|
useVotingUnits: false,
|
|
621
|
-
|
|
648
|
+
cantBeRemoved: false,
|
|
622
649
|
splitPercent: 0,
|
|
623
650
|
splits: new JBSplit[](0)
|
|
624
651
|
});
|
|
@@ -634,12 +661,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
634
661
|
encodedIPFSUri: bytes32(0xf7c17eff468f5dd227b991d773b7a36b93cd997751547f9908a4bf33e31ba701),
|
|
635
662
|
category: 11,
|
|
636
663
|
discountPercent: 0,
|
|
637
|
-
|
|
664
|
+
cantIncreaseDiscountPercent: false,
|
|
665
|
+
cantBuyWithCredits: false,
|
|
638
666
|
allowOwnerMint: false,
|
|
639
667
|
useReserveBeneficiaryAsDefault: false,
|
|
640
668
|
transfersPausable: false,
|
|
641
669
|
useVotingUnits: false,
|
|
642
|
-
|
|
670
|
+
cantBeRemoved: false,
|
|
643
671
|
splitPercent: 0,
|
|
644
672
|
splits: new JBSplit[](0)
|
|
645
673
|
});
|
|
@@ -655,12 +683,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
655
683
|
encodedIPFSUri: bytes32(0x9a29e975b191f800744d74b11c580fdd74b2db73c95426af36e28cf00d66da97),
|
|
656
684
|
category: 12,
|
|
657
685
|
discountPercent: 0,
|
|
658
|
-
|
|
686
|
+
cantIncreaseDiscountPercent: false,
|
|
687
|
+
cantBuyWithCredits: false,
|
|
659
688
|
allowOwnerMint: false,
|
|
660
689
|
useReserveBeneficiaryAsDefault: false,
|
|
661
690
|
transfersPausable: false,
|
|
662
691
|
useVotingUnits: false,
|
|
663
|
-
|
|
692
|
+
cantBeRemoved: false,
|
|
664
693
|
splitPercent: 0,
|
|
665
694
|
splits: new JBSplit[](0)
|
|
666
695
|
});
|
|
@@ -676,12 +705,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
676
705
|
encodedIPFSUri: bytes32(0x52a03dc3e983121f275cadc2d86626e0fca8a9901f3dc7d0bbee826e5d3d409d),
|
|
677
706
|
category: 12,
|
|
678
707
|
discountPercent: 0,
|
|
679
|
-
|
|
708
|
+
cantIncreaseDiscountPercent: false,
|
|
709
|
+
cantBuyWithCredits: false,
|
|
680
710
|
allowOwnerMint: false,
|
|
681
711
|
useReserveBeneficiaryAsDefault: false,
|
|
682
712
|
transfersPausable: false,
|
|
683
713
|
useVotingUnits: false,
|
|
684
|
-
|
|
714
|
+
cantBeRemoved: false,
|
|
685
715
|
splitPercent: 0,
|
|
686
716
|
splits: new JBSplit[](0)
|
|
687
717
|
});
|
|
@@ -697,12 +727,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
697
727
|
encodedIPFSUri: bytes32(0xc583623dc7a3e61bfc04813f8c975eba8a22aeafe3d741edff1e2c97ac520737),
|
|
698
728
|
category: 12,
|
|
699
729
|
discountPercent: 0,
|
|
700
|
-
|
|
730
|
+
cantIncreaseDiscountPercent: false,
|
|
731
|
+
cantBuyWithCredits: false,
|
|
701
732
|
allowOwnerMint: false,
|
|
702
733
|
useReserveBeneficiaryAsDefault: false,
|
|
703
734
|
transfersPausable: false,
|
|
704
735
|
useVotingUnits: false,
|
|
705
|
-
|
|
736
|
+
cantBeRemoved: false,
|
|
706
737
|
splitPercent: 0,
|
|
707
738
|
splits: new JBSplit[](0)
|
|
708
739
|
});
|
|
@@ -718,12 +749,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
718
749
|
encodedIPFSUri: bytes32(0x58f8e217cfafd0a6feff40f4822790cdc19aba5dd4d4948f4c1bd5e313c90e8d),
|
|
719
750
|
category: 12,
|
|
720
751
|
discountPercent: 0,
|
|
721
|
-
|
|
752
|
+
cantIncreaseDiscountPercent: false,
|
|
753
|
+
cantBuyWithCredits: false,
|
|
722
754
|
allowOwnerMint: false,
|
|
723
755
|
useReserveBeneficiaryAsDefault: false,
|
|
724
756
|
transfersPausable: false,
|
|
725
757
|
useVotingUnits: false,
|
|
726
|
-
|
|
758
|
+
cantBeRemoved: false,
|
|
727
759
|
splitPercent: 0,
|
|
728
760
|
splits: new JBSplit[](0)
|
|
729
761
|
});
|
|
@@ -739,12 +771,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
739
771
|
encodedIPFSUri: bytes32(0x3e67840649fabab6d62f92bad701a6248b77f86ea8fcd66dc88dfbcba1134d85),
|
|
740
772
|
category: 12,
|
|
741
773
|
discountPercent: 0,
|
|
742
|
-
|
|
774
|
+
cantIncreaseDiscountPercent: false,
|
|
775
|
+
cantBuyWithCredits: false,
|
|
743
776
|
allowOwnerMint: false,
|
|
744
777
|
useReserveBeneficiaryAsDefault: false,
|
|
745
778
|
transfersPausable: false,
|
|
746
779
|
useVotingUnits: false,
|
|
747
|
-
|
|
780
|
+
cantBeRemoved: false,
|
|
748
781
|
splitPercent: 0,
|
|
749
782
|
splits: new JBSplit[](0)
|
|
750
783
|
});
|
|
@@ -760,12 +793,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
760
793
|
encodedIPFSUri: bytes32(0xd4724e692969066fc0b3587b8e18d1589205d1e1f133d7f9f8d63d14b6d1862f),
|
|
761
794
|
category: 12,
|
|
762
795
|
discountPercent: 0,
|
|
763
|
-
|
|
796
|
+
cantIncreaseDiscountPercent: false,
|
|
797
|
+
cantBuyWithCredits: false,
|
|
764
798
|
allowOwnerMint: false,
|
|
765
799
|
useReserveBeneficiaryAsDefault: false,
|
|
766
800
|
transfersPausable: false,
|
|
767
801
|
useVotingUnits: false,
|
|
768
|
-
|
|
802
|
+
cantBeRemoved: false,
|
|
769
803
|
splitPercent: 0,
|
|
770
804
|
splits: new JBSplit[](0)
|
|
771
805
|
});
|
|
@@ -781,12 +815,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
781
815
|
encodedIPFSUri: bytes32(0xde4c6e589f4e99cda7205236a99db750638236007b2dd03d79de1146102d7f81),
|
|
782
816
|
category: 12,
|
|
783
817
|
discountPercent: 0,
|
|
784
|
-
|
|
818
|
+
cantIncreaseDiscountPercent: false,
|
|
819
|
+
cantBuyWithCredits: false,
|
|
785
820
|
allowOwnerMint: false,
|
|
786
821
|
useReserveBeneficiaryAsDefault: false,
|
|
787
822
|
transfersPausable: false,
|
|
788
823
|
useVotingUnits: false,
|
|
789
|
-
|
|
824
|
+
cantBeRemoved: false,
|
|
790
825
|
splitPercent: 0,
|
|
791
826
|
splits: new JBSplit[](0)
|
|
792
827
|
});
|
|
@@ -802,12 +837,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
802
837
|
encodedIPFSUri: bytes32(0x766001db70e4a18e76dbbd9e4b0f9e47b5a9c4daa1a7c3727190a154daabfa1c),
|
|
803
838
|
category: 12,
|
|
804
839
|
discountPercent: 0,
|
|
805
|
-
|
|
840
|
+
cantIncreaseDiscountPercent: false,
|
|
841
|
+
cantBuyWithCredits: false,
|
|
806
842
|
allowOwnerMint: false,
|
|
807
843
|
useReserveBeneficiaryAsDefault: false,
|
|
808
844
|
transfersPausable: false,
|
|
809
845
|
useVotingUnits: false,
|
|
810
|
-
|
|
846
|
+
cantBeRemoved: false,
|
|
811
847
|
splitPercent: 0,
|
|
812
848
|
splits: new JBSplit[](0)
|
|
813
849
|
});
|
|
@@ -823,12 +859,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
823
859
|
encodedIPFSUri: bytes32(0xa4d2eb02df6eb99cbbdc3603a116b3b9dcd45f865a8c8396611ea5f879deee59),
|
|
824
860
|
category: 13,
|
|
825
861
|
discountPercent: 0,
|
|
826
|
-
|
|
862
|
+
cantIncreaseDiscountPercent: false,
|
|
863
|
+
cantBuyWithCredits: false,
|
|
827
864
|
allowOwnerMint: false,
|
|
828
865
|
useReserveBeneficiaryAsDefault: false,
|
|
829
866
|
transfersPausable: false,
|
|
830
867
|
useVotingUnits: false,
|
|
831
|
-
|
|
868
|
+
cantBeRemoved: false,
|
|
832
869
|
splitPercent: 0,
|
|
833
870
|
splits: new JBSplit[](0)
|
|
834
871
|
});
|
|
@@ -844,12 +881,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
844
881
|
encodedIPFSUri: bytes32(0x18abc38e7f1c5c014398f705131aac80196dcd0da2b5f02c103e1a549433e8b3),
|
|
845
882
|
category: 13,
|
|
846
883
|
discountPercent: 0,
|
|
847
|
-
|
|
884
|
+
cantIncreaseDiscountPercent: false,
|
|
885
|
+
cantBuyWithCredits: false,
|
|
848
886
|
allowOwnerMint: false,
|
|
849
887
|
useReserveBeneficiaryAsDefault: false,
|
|
850
888
|
transfersPausable: false,
|
|
851
889
|
useVotingUnits: false,
|
|
852
|
-
|
|
890
|
+
cantBeRemoved: false,
|
|
853
891
|
splitPercent: 0,
|
|
854
892
|
splits: new JBSplit[](0)
|
|
855
893
|
});
|
|
@@ -865,12 +903,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
865
903
|
encodedIPFSUri: bytes32(0xc498a98bea66a8b44297631f136a7326f7a28b882058829588979b186d06baff),
|
|
866
904
|
category: 13,
|
|
867
905
|
discountPercent: 0,
|
|
868
|
-
|
|
906
|
+
cantIncreaseDiscountPercent: false,
|
|
907
|
+
cantBuyWithCredits: false,
|
|
869
908
|
allowOwnerMint: false,
|
|
870
909
|
useReserveBeneficiaryAsDefault: false,
|
|
871
910
|
transfersPausable: false,
|
|
872
911
|
useVotingUnits: false,
|
|
873
|
-
|
|
912
|
+
cantBeRemoved: false,
|
|
874
913
|
splitPercent: 0,
|
|
875
914
|
splits: new JBSplit[](0)
|
|
876
915
|
});
|
|
@@ -886,12 +925,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
886
925
|
encodedIPFSUri: bytes32(0x3bd1186293e2d3e4def734a669c348976e1ba0cdc628a19cd5a3b38e0bee28f9),
|
|
887
926
|
category: 13,
|
|
888
927
|
discountPercent: 0,
|
|
889
|
-
|
|
928
|
+
cantIncreaseDiscountPercent: false,
|
|
929
|
+
cantBuyWithCredits: false,
|
|
890
930
|
allowOwnerMint: false,
|
|
891
931
|
useReserveBeneficiaryAsDefault: false,
|
|
892
932
|
transfersPausable: false,
|
|
893
933
|
useVotingUnits: false,
|
|
894
|
-
|
|
934
|
+
cantBeRemoved: false,
|
|
895
935
|
splitPercent: 0,
|
|
896
936
|
splits: new JBSplit[](0)
|
|
897
937
|
});
|
|
@@ -907,12 +947,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
907
947
|
encodedIPFSUri: bytes32(0x6b8bfbf33e574747b69039adfc6788101047a4593db7ea7ff4f6fa5a890e9ecf),
|
|
908
948
|
category: 13,
|
|
909
949
|
discountPercent: 0,
|
|
910
|
-
|
|
950
|
+
cantIncreaseDiscountPercent: false,
|
|
951
|
+
cantBuyWithCredits: false,
|
|
911
952
|
allowOwnerMint: false,
|
|
912
953
|
useReserveBeneficiaryAsDefault: false,
|
|
913
954
|
transfersPausable: false,
|
|
914
955
|
useVotingUnits: false,
|
|
915
|
-
|
|
956
|
+
cantBeRemoved: false,
|
|
916
957
|
splitPercent: 0,
|
|
917
958
|
splits: new JBSplit[](0)
|
|
918
959
|
});
|
|
@@ -928,12 +969,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
928
969
|
encodedIPFSUri: bytes32(0xf11d1cea4163e0dfa2be8d60b0cd82d075fb37d969e40439df4e91db53bf7f3e),
|
|
929
970
|
category: 13,
|
|
930
971
|
discountPercent: 0,
|
|
931
|
-
|
|
972
|
+
cantIncreaseDiscountPercent: false,
|
|
973
|
+
cantBuyWithCredits: false,
|
|
932
974
|
allowOwnerMint: false,
|
|
933
975
|
useReserveBeneficiaryAsDefault: false,
|
|
934
976
|
transfersPausable: false,
|
|
935
977
|
useVotingUnits: false,
|
|
936
|
-
|
|
978
|
+
cantBeRemoved: false,
|
|
937
979
|
splitPercent: 0,
|
|
938
980
|
splits: new JBSplit[](0)
|
|
939
981
|
});
|
|
@@ -949,12 +991,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
949
991
|
encodedIPFSUri: bytes32(0xedf8136f97347d1fee1fc14b1b9cbdb6d170a75c3860a92664c56060712567f3),
|
|
950
992
|
category: 13,
|
|
951
993
|
discountPercent: 0,
|
|
952
|
-
|
|
994
|
+
cantIncreaseDiscountPercent: false,
|
|
995
|
+
cantBuyWithCredits: false,
|
|
953
996
|
allowOwnerMint: false,
|
|
954
997
|
useReserveBeneficiaryAsDefault: false,
|
|
955
998
|
transfersPausable: false,
|
|
956
999
|
useVotingUnits: false,
|
|
957
|
-
|
|
1000
|
+
cantBeRemoved: false,
|
|
958
1001
|
splitPercent: 0,
|
|
959
1002
|
splits: new JBSplit[](0)
|
|
960
1003
|
});
|
|
@@ -970,12 +1013,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
970
1013
|
encodedIPFSUri: bytes32(0xbcc0c314f94ccb0f8f2717aff0b2096a28ace5b70465b5b4e106981fdbceb238),
|
|
971
1014
|
category: 13,
|
|
972
1015
|
discountPercent: 0,
|
|
973
|
-
|
|
1016
|
+
cantIncreaseDiscountPercent: false,
|
|
1017
|
+
cantBuyWithCredits: false,
|
|
974
1018
|
allowOwnerMint: false,
|
|
975
1019
|
useReserveBeneficiaryAsDefault: false,
|
|
976
1020
|
transfersPausable: false,
|
|
977
1021
|
useVotingUnits: false,
|
|
978
|
-
|
|
1022
|
+
cantBeRemoved: false,
|
|
979
1023
|
splitPercent: 0,
|
|
980
1024
|
splits: new JBSplit[](0)
|
|
981
1025
|
});
|
|
@@ -991,12 +1035,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
991
1035
|
encodedIPFSUri: bytes32(0x867d8d8b9da0b5d8a00024d548e5f6e33562d521dff8c245764b6206003d1970),
|
|
992
1036
|
category: 13,
|
|
993
1037
|
discountPercent: 0,
|
|
994
|
-
|
|
1038
|
+
cantIncreaseDiscountPercent: false,
|
|
1039
|
+
cantBuyWithCredits: false,
|
|
995
1040
|
allowOwnerMint: false,
|
|
996
1041
|
useReserveBeneficiaryAsDefault: false,
|
|
997
1042
|
transfersPausable: false,
|
|
998
1043
|
useVotingUnits: false,
|
|
999
|
-
|
|
1044
|
+
cantBeRemoved: false,
|
|
1000
1045
|
splitPercent: 0,
|
|
1001
1046
|
splits: new JBSplit[](0)
|
|
1002
1047
|
});
|
|
@@ -1012,12 +1057,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1012
1057
|
encodedIPFSUri: bytes32(0x876078bdfb8cdcc4359bb946274a9964e84877beac0ecd59fbf293c3bc2457c9),
|
|
1013
1058
|
category: 14,
|
|
1014
1059
|
discountPercent: 0,
|
|
1015
|
-
|
|
1060
|
+
cantIncreaseDiscountPercent: false,
|
|
1061
|
+
cantBuyWithCredits: false,
|
|
1016
1062
|
allowOwnerMint: false,
|
|
1017
1063
|
useReserveBeneficiaryAsDefault: false,
|
|
1018
1064
|
transfersPausable: false,
|
|
1019
1065
|
useVotingUnits: false,
|
|
1020
|
-
|
|
1066
|
+
cantBeRemoved: false,
|
|
1021
1067
|
splitPercent: 0,
|
|
1022
1068
|
splits: new JBSplit[](0)
|
|
1023
1069
|
});
|
|
@@ -1033,12 +1079,13 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1033
1079
|
encodedIPFSUri: bytes32(0x1d1484b4b37a882e59ab5a01c1a32528e703e15156b9bb9b5372b61fec84c0df),
|
|
1034
1080
|
category: 16,
|
|
1035
1081
|
discountPercent: 0,
|
|
1036
|
-
|
|
1082
|
+
cantIncreaseDiscountPercent: false,
|
|
1083
|
+
cantBuyWithCredits: false,
|
|
1037
1084
|
allowOwnerMint: false,
|
|
1038
1085
|
useReserveBeneficiaryAsDefault: false,
|
|
1039
1086
|
transfersPausable: false,
|
|
1040
1087
|
useVotingUnits: false,
|
|
1041
|
-
|
|
1088
|
+
cantBeRemoved: false,
|
|
1042
1089
|
splitPercent: 0,
|
|
1043
1090
|
splits: new JBSplit[](0)
|
|
1044
1091
|
});
|
|
@@ -679,8 +679,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
684
685
|
splitPercent: 0,
|
|
685
686
|
resolvedUri: ""
|
|
686
687
|
});
|
package/test/BannyAttacks.t.sol
CHANGED
|
@@ -163,8 +163,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
168
169
|
splitPercent: 0,
|
|
169
170
|
resolvedUri: ""
|
|
170
171
|
})
|
package/test/DecorateFlow.t.sol
CHANGED
|
@@ -1077,8 +1077,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
1082
1083
|
splitPercent: 0,
|
|
1083
1084
|
resolvedUri: ""
|
|
1084
1085
|
})
|
package/test/Fork.t.sol
CHANGED
|
@@ -867,8 +867,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
872
873
|
splitPercent: 0,
|
|
873
874
|
resolvedUri: ""
|
|
874
875
|
})
|
|
@@ -889,8 +890,9 @@ contract BannyForkTest is Test {
|
|
|
889
890
|
discountPercent: 0,
|
|
890
891
|
allowOwnerMint: false,
|
|
891
892
|
transfersPausable: false,
|
|
892
|
-
|
|
893
|
-
|
|
893
|
+
cantBeRemoved: false,
|
|
894
|
+
cantIncreaseDiscountPercent: false,
|
|
895
|
+
cantBuyWithCredits: false,
|
|
894
896
|
splitPercent: 0,
|
|
895
897
|
resolvedUri: ""
|
|
896
898
|
})
|
|
@@ -1938,8 +1940,9 @@ contract BannyForkTest is Test {
|
|
|
1938
1940
|
useReserveBeneficiaryAsDefault: false,
|
|
1939
1941
|
transfersPausable: false,
|
|
1940
1942
|
useVotingUnits: false,
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
+
cantBeRemoved: false,
|
|
1944
|
+
cantIncreaseDiscountPercent: false,
|
|
1945
|
+
cantBuyWithCredits: false,
|
|
1943
1946
|
splitPercent: 0,
|
|
1944
1947
|
splits: new JBSplit[](0)
|
|
1945
1948
|
});
|
|
@@ -381,8 +381,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
386
387
|
splitPercent: 0,
|
|
387
388
|
resolvedUri: ""
|
|
388
389
|
})
|
package/test/TestAuditGaps.sol
CHANGED
|
@@ -159,8 +159,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
164
165
|
splitPercent: 0,
|
|
165
166
|
resolvedUri: ""
|
|
166
167
|
})
|
|
@@ -184,8 +184,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
189
190
|
splitPercent: 0,
|
|
190
191
|
resolvedUri: ""
|
|
191
192
|
})
|
|
@@ -382,8 +382,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
387
388
|
splitPercent: 0,
|
|
388
389
|
resolvedUri: ""
|
|
389
390
|
});
|
|
@@ -148,8 +148,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
153
154
|
splitPercent: 0,
|
|
154
155
|
resolvedUri: ""
|
|
155
156
|
});
|
|
@@ -212,8 +212,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
217
218
|
splitPercent: 0,
|
|
218
219
|
resolvedUri: ""
|
|
219
220
|
});
|
|
@@ -182,8 +182,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
187
188
|
splitPercent: 0,
|
|
188
189
|
resolvedUri: ""
|
|
189
190
|
});
|
|
@@ -133,8 +133,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
138
139
|
splitPercent: 0,
|
|
139
140
|
resolvedUri: ""
|
|
140
141
|
});
|
|
@@ -172,8 +172,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
177
178
|
splitPercent: 0,
|
|
178
179
|
resolvedUri: ""
|
|
179
180
|
});
|
|
@@ -195,8 +195,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
200
201
|
splitPercent: 0,
|
|
201
202
|
resolvedUri: ""
|
|
202
203
|
});
|
|
@@ -332,8 +332,9 @@ 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
|
+
cantBuyWithCredits: false,
|
|
337
338
|
splitPercent: 0,
|
|
338
339
|
resolvedUri: ""
|
|
339
340
|
});
|