@bannynet/core-v6 0.0.17 → 0.0.19
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/ADMINISTRATION.md +28 -0
- package/ARCHITECTURE.md +51 -75
- package/AUDIT_INSTRUCTIONS.md +64 -331
- package/CHANGELOG.md +31 -0
- package/README.md +53 -167
- package/RISKS.md +18 -1
- package/SKILLS.md +27 -243
- package/STYLE_GUIDE.md +56 -17
- package/USER_JOURNEYS.md +51 -496
- package/package.json +8 -8
- package/references/operations.md +25 -0
- package/references/runtime.md +27 -0
- package/script/Add.Denver.s.sol +10 -7
- package/script/Deploy.s.sol +37 -28
- package/script/Drop1.s.sol +424 -329
- package/src/Banny721TokenUriResolver.sol +109 -59
- package/test/Banny721TokenUriResolver.t.sol +8 -5
- package/test/BannyAttacks.t.sol +8 -5
- package/test/DecorateFlow.t.sol +8 -5
- package/test/Fork.t.sol +25 -17
- package/test/OutfitTransferLifecycle.t.sol +8 -5
- package/test/TestAuditGaps.sol +8 -5
- package/test/TestQALastMile.t.sol +8 -5
- package/test/audit/AntiStrandingRetention.t.sol +33 -5
- package/test/audit/BurnedBodyStrandsAssets.t.sol +9 -5
- package/test/audit/MergedOutfitExclusivity.t.sol +8 -5
- package/test/audit/MigrationHelperVerificationBypass.t.sol +102 -0
- package/test/audit/TryTransferFromStrandsAssets.t.sol +8 -5
- package/test/regression/BodyCategoryValidation.t.sol +8 -5
- package/test/regression/BurnedTokenCheck.t.sol +8 -5
- package/test/regression/CEIReorder.t.sol +8 -5
- package/test/regression/RemovedTierDesync.t.sol +8 -5
- package/CHANGE_LOG.md +0 -243
- package/assets/findings/banny-retail-v6-pashov-ai-audit-report-20260330-102839.md +0 -34
package/script/Drop1.s.sol
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
pragma solidity 0.8.28;
|
|
3
3
|
|
|
4
4
|
import {JB721TierConfig} from "@bananapus/721-hook-v6/src/structs/JB721TierConfig.sol";
|
|
5
|
+
import {JB721TierConfigFlags} from "@bananapus/721-hook-v6/src/structs/JB721TierConfigFlags.sol";
|
|
5
6
|
import {JBSplit} from "@bananapus/core-v6/src/structs/JBSplit.sol";
|
|
6
7
|
import {JB721TiersHook} from "@bananapus/721-hook-v6/src/JB721TiersHook.sol";
|
|
7
8
|
|
|
@@ -67,13 +68,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
67
68
|
encodedIPFSUri: bytes32(0x5665b0c125d1bccccb78cc0ffc429e66ce41ed3bccebba51209d04636cadbd2c),
|
|
68
69
|
category: 1,
|
|
69
70
|
discountPercent: 0,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
flags: JB721TierConfigFlags({
|
|
72
|
+
allowOwnerMint: false,
|
|
73
|
+
useReserveBeneficiaryAsDefault: false,
|
|
74
|
+
transfersPausable: false,
|
|
75
|
+
useVotingUnits: false,
|
|
76
|
+
cantBeRemoved: false,
|
|
77
|
+
cantIncreaseDiscountPercent: false,
|
|
78
|
+
cantBuyWithCredits: false
|
|
79
|
+
}),
|
|
77
80
|
splitPercent: 0,
|
|
78
81
|
splits: new JBSplit[](0)
|
|
79
82
|
});
|
|
@@ -89,13 +92,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
89
92
|
encodedIPFSUri: bytes32(0x233dd4173ef4ed0f60822a469277bb328b5ae056d8980301f7bd7ad9df780099),
|
|
90
93
|
category: 1,
|
|
91
94
|
discountPercent: 0,
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
95
|
+
flags: JB721TierConfigFlags({
|
|
96
|
+
allowOwnerMint: false,
|
|
97
|
+
useReserveBeneficiaryAsDefault: false,
|
|
98
|
+
transfersPausable: false,
|
|
99
|
+
useVotingUnits: false,
|
|
100
|
+
cantBeRemoved: false,
|
|
101
|
+
cantIncreaseDiscountPercent: false,
|
|
102
|
+
cantBuyWithCredits: false
|
|
103
|
+
}),
|
|
99
104
|
splitPercent: 0,
|
|
100
105
|
splits: new JBSplit[](0)
|
|
101
106
|
});
|
|
@@ -111,13 +116,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
111
116
|
encodedIPFSUri: bytes32(0x6cb06872575a04a0c4527157eb4719be10b6474d08aa2ce2a4ac5bcb0da996ea),
|
|
112
117
|
category: 2,
|
|
113
118
|
discountPercent: 0,
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
flags: JB721TierConfigFlags({
|
|
120
|
+
allowOwnerMint: false,
|
|
121
|
+
useReserveBeneficiaryAsDefault: false,
|
|
122
|
+
transfersPausable: false,
|
|
123
|
+
useVotingUnits: false,
|
|
124
|
+
cantBeRemoved: false,
|
|
125
|
+
cantIncreaseDiscountPercent: false,
|
|
126
|
+
cantBuyWithCredits: false
|
|
127
|
+
}),
|
|
121
128
|
splitPercent: 0,
|
|
122
129
|
splits: new JBSplit[](0)
|
|
123
130
|
});
|
|
@@ -133,13 +140,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
133
140
|
encodedIPFSUri: bytes32(0x7206771942e806053d6ed8aa90040e53a07319e4fd1f938fc4a10879b7bd2da9),
|
|
134
141
|
category: 2,
|
|
135
142
|
discountPercent: 0,
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
+
flags: JB721TierConfigFlags({
|
|
144
|
+
allowOwnerMint: false,
|
|
145
|
+
useReserveBeneficiaryAsDefault: false,
|
|
146
|
+
transfersPausable: false,
|
|
147
|
+
useVotingUnits: false,
|
|
148
|
+
cantBeRemoved: false,
|
|
149
|
+
cantIncreaseDiscountPercent: false,
|
|
150
|
+
cantBuyWithCredits: false
|
|
151
|
+
}),
|
|
143
152
|
splitPercent: 0,
|
|
144
153
|
splits: new JBSplit[](0)
|
|
145
154
|
});
|
|
@@ -155,13 +164,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
155
164
|
encodedIPFSUri: bytes32(0xef6478be50575bade53e7ce4c9fb5b399643bcabed94f2111afb63e97fb9fd44),
|
|
156
165
|
category: 3,
|
|
157
166
|
discountPercent: 0,
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
167
|
+
flags: JB721TierConfigFlags({
|
|
168
|
+
allowOwnerMint: false,
|
|
169
|
+
useReserveBeneficiaryAsDefault: false,
|
|
170
|
+
transfersPausable: false,
|
|
171
|
+
useVotingUnits: false,
|
|
172
|
+
cantBeRemoved: false,
|
|
173
|
+
cantIncreaseDiscountPercent: false,
|
|
174
|
+
cantBuyWithCredits: false
|
|
175
|
+
}),
|
|
165
176
|
splitPercent: 0,
|
|
166
177
|
splits: new JBSplit[](0)
|
|
167
178
|
});
|
|
@@ -177,13 +188,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
177
188
|
encodedIPFSUri: bytes32(0xe26d20762024435aedd91058ac9bc9900d719e1f7a04cace501d83a4c1f40941),
|
|
178
189
|
category: 4,
|
|
179
190
|
discountPercent: 0,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
191
|
+
flags: JB721TierConfigFlags({
|
|
192
|
+
allowOwnerMint: false,
|
|
193
|
+
useReserveBeneficiaryAsDefault: false,
|
|
194
|
+
transfersPausable: false,
|
|
195
|
+
useVotingUnits: false,
|
|
196
|
+
cantBeRemoved: false,
|
|
197
|
+
cantIncreaseDiscountPercent: false,
|
|
198
|
+
cantBuyWithCredits: false
|
|
199
|
+
}),
|
|
187
200
|
splitPercent: 0,
|
|
188
201
|
splits: new JBSplit[](0)
|
|
189
202
|
});
|
|
@@ -199,13 +212,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
199
212
|
encodedIPFSUri: bytes32(0x9f76cb495fd79397cba4fe3d377a5aa2fdd63df218f3b3022c6cc8e32478b494),
|
|
200
213
|
category: 6,
|
|
201
214
|
discountPercent: 0,
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
215
|
+
flags: JB721TierConfigFlags({
|
|
216
|
+
allowOwnerMint: false,
|
|
217
|
+
useReserveBeneficiaryAsDefault: false,
|
|
218
|
+
transfersPausable: false,
|
|
219
|
+
useVotingUnits: false,
|
|
220
|
+
cantBeRemoved: false,
|
|
221
|
+
cantIncreaseDiscountPercent: false,
|
|
222
|
+
cantBuyWithCredits: false
|
|
223
|
+
}),
|
|
209
224
|
splitPercent: 0,
|
|
210
225
|
splits: new JBSplit[](0)
|
|
211
226
|
});
|
|
@@ -221,13 +236,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
221
236
|
encodedIPFSUri: bytes32(0xf01423f9dae3de4adc7e372e6902a351e2c6193a385dde90f5baf37165914831),
|
|
222
237
|
category: 6,
|
|
223
238
|
discountPercent: 0,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
239
|
+
flags: JB721TierConfigFlags({
|
|
240
|
+
allowOwnerMint: false,
|
|
241
|
+
useReserveBeneficiaryAsDefault: true,
|
|
242
|
+
transfersPausable: false,
|
|
243
|
+
useVotingUnits: false,
|
|
244
|
+
cantBeRemoved: false,
|
|
245
|
+
cantIncreaseDiscountPercent: false,
|
|
246
|
+
cantBuyWithCredits: false
|
|
247
|
+
}),
|
|
231
248
|
splitPercent: 0,
|
|
232
249
|
splits: new JBSplit[](0)
|
|
233
250
|
});
|
|
@@ -243,13 +260,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
243
260
|
encodedIPFSUri: bytes32(0x325c138f1f38e5b5f90a57a248a2f5afe6af738b2adfc825cf9f413bbcf50fa1),
|
|
244
261
|
category: 6,
|
|
245
262
|
discountPercent: 0,
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
263
|
+
flags: JB721TierConfigFlags({
|
|
264
|
+
allowOwnerMint: false,
|
|
265
|
+
useReserveBeneficiaryAsDefault: false,
|
|
266
|
+
transfersPausable: false,
|
|
267
|
+
useVotingUnits: false,
|
|
268
|
+
cantBeRemoved: false,
|
|
269
|
+
cantIncreaseDiscountPercent: false,
|
|
270
|
+
cantBuyWithCredits: false
|
|
271
|
+
}),
|
|
253
272
|
splitPercent: 0,
|
|
254
273
|
splits: new JBSplit[](0)
|
|
255
274
|
});
|
|
@@ -265,13 +284,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
265
284
|
encodedIPFSUri: bytes32(0x7dc7e556a7ac39c473da85165df3d094c6ed9258003fb7dc3d9a8582bcb0dc7f),
|
|
266
285
|
category: 6,
|
|
267
286
|
discountPercent: 0,
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
287
|
+
flags: JB721TierConfigFlags({
|
|
288
|
+
allowOwnerMint: false,
|
|
289
|
+
useReserveBeneficiaryAsDefault: false,
|
|
290
|
+
transfersPausable: false,
|
|
291
|
+
useVotingUnits: false,
|
|
292
|
+
cantBeRemoved: false,
|
|
293
|
+
cantIncreaseDiscountPercent: false,
|
|
294
|
+
cantBuyWithCredits: false
|
|
295
|
+
}),
|
|
275
296
|
splitPercent: 0,
|
|
276
297
|
splits: new JBSplit[](0)
|
|
277
298
|
});
|
|
@@ -287,13 +308,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
287
308
|
encodedIPFSUri: bytes32(0xb06dbd64696994798dee9e00d406a649191524a95e715532f1bdebc92f00aebd),
|
|
288
309
|
category: 6,
|
|
289
310
|
discountPercent: 0,
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
311
|
+
flags: JB721TierConfigFlags({
|
|
312
|
+
allowOwnerMint: false,
|
|
313
|
+
useReserveBeneficiaryAsDefault: false,
|
|
314
|
+
transfersPausable: false,
|
|
315
|
+
useVotingUnits: false,
|
|
316
|
+
cantBeRemoved: false,
|
|
317
|
+
cantIncreaseDiscountPercent: false,
|
|
318
|
+
cantBuyWithCredits: false
|
|
319
|
+
}),
|
|
297
320
|
splitPercent: 0,
|
|
298
321
|
splits: new JBSplit[](0)
|
|
299
322
|
});
|
|
@@ -309,13 +332,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
309
332
|
encodedIPFSUri: bytes32(0x52815d712399165b921df61795581a8c20ad9acf3502e777e20a782b7bc11d54),
|
|
310
333
|
category: 7,
|
|
311
334
|
discountPercent: 0,
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
335
|
+
flags: JB721TierConfigFlags({
|
|
336
|
+
allowOwnerMint: false,
|
|
337
|
+
useReserveBeneficiaryAsDefault: false,
|
|
338
|
+
transfersPausable: false,
|
|
339
|
+
useVotingUnits: false,
|
|
340
|
+
cantBeRemoved: false,
|
|
341
|
+
cantIncreaseDiscountPercent: false,
|
|
342
|
+
cantBuyWithCredits: false
|
|
343
|
+
}),
|
|
319
344
|
splitPercent: 0,
|
|
320
345
|
splits: new JBSplit[](0)
|
|
321
346
|
});
|
|
@@ -331,13 +356,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
331
356
|
encodedIPFSUri: bytes32(0x8a1b694033a47ad08b648d2608fa1b86dccdb0f431795c470605a819988f55ad),
|
|
332
357
|
category: 8,
|
|
333
358
|
discountPercent: 0,
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
359
|
+
flags: JB721TierConfigFlags({
|
|
360
|
+
allowOwnerMint: false,
|
|
361
|
+
useReserveBeneficiaryAsDefault: false,
|
|
362
|
+
transfersPausable: false,
|
|
363
|
+
useVotingUnits: false,
|
|
364
|
+
cantBeRemoved: false,
|
|
365
|
+
cantIncreaseDiscountPercent: false,
|
|
366
|
+
cantBuyWithCredits: false
|
|
367
|
+
}),
|
|
341
368
|
splitPercent: 0,
|
|
342
369
|
splits: new JBSplit[](0)
|
|
343
370
|
});
|
|
@@ -353,13 +380,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
353
380
|
encodedIPFSUri: bytes32(0x39cd82854f76c22afccaf4ad6f055d4e225c2e225f322154f1c3d327cbaccb5a),
|
|
354
381
|
category: 8,
|
|
355
382
|
discountPercent: 0,
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
383
|
+
flags: JB721TierConfigFlags({
|
|
384
|
+
allowOwnerMint: false,
|
|
385
|
+
useReserveBeneficiaryAsDefault: false,
|
|
386
|
+
transfersPausable: false,
|
|
387
|
+
useVotingUnits: false,
|
|
388
|
+
cantBeRemoved: false,
|
|
389
|
+
cantIncreaseDiscountPercent: false,
|
|
390
|
+
cantBuyWithCredits: false
|
|
391
|
+
}),
|
|
363
392
|
splitPercent: 0,
|
|
364
393
|
splits: new JBSplit[](0)
|
|
365
394
|
});
|
|
@@ -375,13 +404,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
375
404
|
encodedIPFSUri: bytes32(0x4e87f483ea20c1537f24c2a586acd14819ca2a6cba1bab68365361e45374f9f9),
|
|
376
405
|
category: 8,
|
|
377
406
|
discountPercent: 0,
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
407
|
+
flags: JB721TierConfigFlags({
|
|
408
|
+
allowOwnerMint: false,
|
|
409
|
+
useReserveBeneficiaryAsDefault: false,
|
|
410
|
+
transfersPausable: false,
|
|
411
|
+
useVotingUnits: false,
|
|
412
|
+
cantBeRemoved: false,
|
|
413
|
+
cantIncreaseDiscountPercent: false,
|
|
414
|
+
cantBuyWithCredits: false
|
|
415
|
+
}),
|
|
385
416
|
splitPercent: 0,
|
|
386
417
|
splits: new JBSplit[](0)
|
|
387
418
|
});
|
|
@@ -397,13 +428,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
397
428
|
encodedIPFSUri: bytes32(0x5fbc1c58d608acd436c18e11edc72d3ae436e1a4c15d127b28a9a24879013d3c),
|
|
398
429
|
category: 9,
|
|
399
430
|
discountPercent: 0,
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
431
|
+
flags: JB721TierConfigFlags({
|
|
432
|
+
allowOwnerMint: false,
|
|
433
|
+
useReserveBeneficiaryAsDefault: false,
|
|
434
|
+
transfersPausable: false,
|
|
435
|
+
useVotingUnits: false,
|
|
436
|
+
cantBeRemoved: false,
|
|
437
|
+
cantIncreaseDiscountPercent: false,
|
|
438
|
+
cantBuyWithCredits: false
|
|
439
|
+
}),
|
|
407
440
|
splitPercent: 0,
|
|
408
441
|
splits: new JBSplit[](0)
|
|
409
442
|
});
|
|
@@ -419,13 +452,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
419
452
|
encodedIPFSUri: bytes32(0x823466de69eaf605d3a62366e5e9dbd6649a71da146f791f94628d4749a2da55),
|
|
420
453
|
category: 9,
|
|
421
454
|
discountPercent: 0,
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
455
|
+
flags: JB721TierConfigFlags({
|
|
456
|
+
allowOwnerMint: false,
|
|
457
|
+
useReserveBeneficiaryAsDefault: false,
|
|
458
|
+
transfersPausable: false,
|
|
459
|
+
useVotingUnits: false,
|
|
460
|
+
cantBeRemoved: false,
|
|
461
|
+
cantIncreaseDiscountPercent: false,
|
|
462
|
+
cantBuyWithCredits: false
|
|
463
|
+
}),
|
|
429
464
|
splitPercent: 0,
|
|
430
465
|
splits: new JBSplit[](0)
|
|
431
466
|
});
|
|
@@ -441,13 +476,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
441
476
|
encodedIPFSUri: bytes32(0x017db86219678b824995b8556e7073d65af87212671312212365497708675c41),
|
|
442
477
|
category: 9,
|
|
443
478
|
discountPercent: 0,
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
479
|
+
flags: JB721TierConfigFlags({
|
|
480
|
+
allowOwnerMint: false,
|
|
481
|
+
useReserveBeneficiaryAsDefault: false,
|
|
482
|
+
transfersPausable: false,
|
|
483
|
+
useVotingUnits: false,
|
|
484
|
+
cantBeRemoved: false,
|
|
485
|
+
cantIncreaseDiscountPercent: false,
|
|
486
|
+
cantBuyWithCredits: false
|
|
487
|
+
}),
|
|
451
488
|
splitPercent: 0,
|
|
452
489
|
splits: new JBSplit[](0)
|
|
453
490
|
});
|
|
@@ -463,13 +500,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
463
500
|
encodedIPFSUri: bytes32(0xdf7d4084b087b22cc172e1df3a2b465b5386a950e9bcd53ed424014a0a86ee57),
|
|
464
501
|
category: 9,
|
|
465
502
|
discountPercent: 0,
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
503
|
+
flags: JB721TierConfigFlags({
|
|
504
|
+
allowOwnerMint: false,
|
|
505
|
+
useReserveBeneficiaryAsDefault: false,
|
|
506
|
+
transfersPausable: false,
|
|
507
|
+
useVotingUnits: false,
|
|
508
|
+
cantBeRemoved: false,
|
|
509
|
+
cantIncreaseDiscountPercent: false,
|
|
510
|
+
cantBuyWithCredits: false
|
|
511
|
+
}),
|
|
473
512
|
splitPercent: 0,
|
|
474
513
|
splits: new JBSplit[](0)
|
|
475
514
|
});
|
|
@@ -485,13 +524,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
485
524
|
encodedIPFSUri: bytes32(0x745b3b4f18aab6ad0d8465d34751ca8eb5b9c267dee6ec8bf63686b508afacf3),
|
|
486
525
|
category: 10,
|
|
487
526
|
discountPercent: 0,
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
527
|
+
flags: JB721TierConfigFlags({
|
|
528
|
+
allowOwnerMint: false,
|
|
529
|
+
useReserveBeneficiaryAsDefault: false,
|
|
530
|
+
transfersPausable: false,
|
|
531
|
+
useVotingUnits: false,
|
|
532
|
+
cantBeRemoved: false,
|
|
533
|
+
cantIncreaseDiscountPercent: false,
|
|
534
|
+
cantBuyWithCredits: false
|
|
535
|
+
}),
|
|
495
536
|
splitPercent: 0,
|
|
496
537
|
splits: new JBSplit[](0)
|
|
497
538
|
});
|
|
@@ -507,13 +548,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
507
548
|
encodedIPFSUri: bytes32(0x815c7dfb119da1e3802754f8ce364caf7a8069e331e35c3f20446800579d8df8),
|
|
508
549
|
category: 11,
|
|
509
550
|
discountPercent: 0,
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
551
|
+
flags: JB721TierConfigFlags({
|
|
552
|
+
allowOwnerMint: false,
|
|
553
|
+
useReserveBeneficiaryAsDefault: false,
|
|
554
|
+
transfersPausable: false,
|
|
555
|
+
useVotingUnits: false,
|
|
556
|
+
cantBeRemoved: false,
|
|
557
|
+
cantIncreaseDiscountPercent: false,
|
|
558
|
+
cantBuyWithCredits: false
|
|
559
|
+
}),
|
|
517
560
|
splitPercent: 0,
|
|
518
561
|
splits: new JBSplit[](0)
|
|
519
562
|
});
|
|
@@ -529,13 +572,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
529
572
|
encodedIPFSUri: bytes32(0xc77fe2f93a5a48ad7f59a3c6c40dd76317e47605fcb74b85a4c5bea160fdab6e),
|
|
530
573
|
category: 11,
|
|
531
574
|
discountPercent: 0,
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
575
|
+
flags: JB721TierConfigFlags({
|
|
576
|
+
allowOwnerMint: false,
|
|
577
|
+
useReserveBeneficiaryAsDefault: false,
|
|
578
|
+
transfersPausable: false,
|
|
579
|
+
useVotingUnits: false,
|
|
580
|
+
cantBeRemoved: false,
|
|
581
|
+
cantIncreaseDiscountPercent: false,
|
|
582
|
+
cantBuyWithCredits: false
|
|
583
|
+
}),
|
|
539
584
|
splitPercent: 0,
|
|
540
585
|
splits: new JBSplit[](0)
|
|
541
586
|
});
|
|
@@ -551,13 +596,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
551
596
|
encodedIPFSUri: bytes32(0x2b62afa12feb307f005902e6bec09f15f8f5d7ba09d937f1162e5d2f00c21e12),
|
|
552
597
|
category: 11,
|
|
553
598
|
discountPercent: 0,
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
599
|
+
flags: JB721TierConfigFlags({
|
|
600
|
+
allowOwnerMint: false,
|
|
601
|
+
useReserveBeneficiaryAsDefault: false,
|
|
602
|
+
transfersPausable: false,
|
|
603
|
+
useVotingUnits: false,
|
|
604
|
+
cantBeRemoved: false,
|
|
605
|
+
cantIncreaseDiscountPercent: false,
|
|
606
|
+
cantBuyWithCredits: false
|
|
607
|
+
}),
|
|
561
608
|
splitPercent: 0,
|
|
562
609
|
splits: new JBSplit[](0)
|
|
563
610
|
});
|
|
@@ -573,13 +620,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
573
620
|
encodedIPFSUri: bytes32(0x4d4b149bded92db977ac35a77bcfff72270eaee404db8751b27ec18030511d3b),
|
|
574
621
|
category: 11,
|
|
575
622
|
discountPercent: 0,
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
623
|
+
flags: JB721TierConfigFlags({
|
|
624
|
+
allowOwnerMint: false,
|
|
625
|
+
useReserveBeneficiaryAsDefault: false,
|
|
626
|
+
transfersPausable: false,
|
|
627
|
+
useVotingUnits: false,
|
|
628
|
+
cantBeRemoved: false,
|
|
629
|
+
cantIncreaseDiscountPercent: false,
|
|
630
|
+
cantBuyWithCredits: false
|
|
631
|
+
}),
|
|
583
632
|
splitPercent: 0,
|
|
584
633
|
splits: new JBSplit[](0)
|
|
585
634
|
});
|
|
@@ -595,13 +644,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
595
644
|
encodedIPFSUri: bytes32(0x5ec40dc2aad2a009266337a198d4b9098cd968d08c06cdc328efd4789f974aa4),
|
|
596
645
|
category: 11,
|
|
597
646
|
discountPercent: 0,
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
647
|
+
flags: JB721TierConfigFlags({
|
|
648
|
+
allowOwnerMint: false,
|
|
649
|
+
useReserveBeneficiaryAsDefault: false,
|
|
650
|
+
transfersPausable: false,
|
|
651
|
+
useVotingUnits: false,
|
|
652
|
+
cantBeRemoved: false,
|
|
653
|
+
cantIncreaseDiscountPercent: false,
|
|
654
|
+
cantBuyWithCredits: false
|
|
655
|
+
}),
|
|
605
656
|
splitPercent: 0,
|
|
606
657
|
splits: new JBSplit[](0)
|
|
607
658
|
});
|
|
@@ -617,13 +668,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
617
668
|
encodedIPFSUri: bytes32(0xb8658c65907f280bfbd228ec384f0dfdfe55401505dc0f303d7d3d6a68a6414b),
|
|
618
669
|
category: 11,
|
|
619
670
|
discountPercent: 0,
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
671
|
+
flags: JB721TierConfigFlags({
|
|
672
|
+
allowOwnerMint: false,
|
|
673
|
+
useReserveBeneficiaryAsDefault: false,
|
|
674
|
+
transfersPausable: false,
|
|
675
|
+
useVotingUnits: false,
|
|
676
|
+
cantBeRemoved: false,
|
|
677
|
+
cantIncreaseDiscountPercent: false,
|
|
678
|
+
cantBuyWithCredits: false
|
|
679
|
+
}),
|
|
627
680
|
splitPercent: 0,
|
|
628
681
|
splits: new JBSplit[](0)
|
|
629
682
|
});
|
|
@@ -639,13 +692,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
639
692
|
encodedIPFSUri: bytes32(0x04e22ea49d80f346b7a5a9013169470824f71faa7d9e0155a71f4afc3fa63f89),
|
|
640
693
|
category: 11,
|
|
641
694
|
discountPercent: 0,
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
695
|
+
flags: JB721TierConfigFlags({
|
|
696
|
+
allowOwnerMint: false,
|
|
697
|
+
useReserveBeneficiaryAsDefault: false,
|
|
698
|
+
transfersPausable: false,
|
|
699
|
+
useVotingUnits: false,
|
|
700
|
+
cantBeRemoved: false,
|
|
701
|
+
cantIncreaseDiscountPercent: false,
|
|
702
|
+
cantBuyWithCredits: false
|
|
703
|
+
}),
|
|
649
704
|
splitPercent: 0,
|
|
650
705
|
splits: new JBSplit[](0)
|
|
651
706
|
});
|
|
@@ -661,13 +716,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
661
716
|
encodedIPFSUri: bytes32(0xf7c17eff468f5dd227b991d773b7a36b93cd997751547f9908a4bf33e31ba701),
|
|
662
717
|
category: 11,
|
|
663
718
|
discountPercent: 0,
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
719
|
+
flags: JB721TierConfigFlags({
|
|
720
|
+
allowOwnerMint: false,
|
|
721
|
+
useReserveBeneficiaryAsDefault: false,
|
|
722
|
+
transfersPausable: false,
|
|
723
|
+
useVotingUnits: false,
|
|
724
|
+
cantBeRemoved: false,
|
|
725
|
+
cantIncreaseDiscountPercent: false,
|
|
726
|
+
cantBuyWithCredits: false
|
|
727
|
+
}),
|
|
671
728
|
splitPercent: 0,
|
|
672
729
|
splits: new JBSplit[](0)
|
|
673
730
|
});
|
|
@@ -683,13 +740,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
683
740
|
encodedIPFSUri: bytes32(0x9a29e975b191f800744d74b11c580fdd74b2db73c95426af36e28cf00d66da97),
|
|
684
741
|
category: 12,
|
|
685
742
|
discountPercent: 0,
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
743
|
+
flags: JB721TierConfigFlags({
|
|
744
|
+
allowOwnerMint: false,
|
|
745
|
+
useReserveBeneficiaryAsDefault: false,
|
|
746
|
+
transfersPausable: false,
|
|
747
|
+
useVotingUnits: false,
|
|
748
|
+
cantBeRemoved: false,
|
|
749
|
+
cantIncreaseDiscountPercent: false,
|
|
750
|
+
cantBuyWithCredits: false
|
|
751
|
+
}),
|
|
693
752
|
splitPercent: 0,
|
|
694
753
|
splits: new JBSplit[](0)
|
|
695
754
|
});
|
|
@@ -705,13 +764,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
705
764
|
encodedIPFSUri: bytes32(0x52a03dc3e983121f275cadc2d86626e0fca8a9901f3dc7d0bbee826e5d3d409d),
|
|
706
765
|
category: 12,
|
|
707
766
|
discountPercent: 0,
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
767
|
+
flags: JB721TierConfigFlags({
|
|
768
|
+
allowOwnerMint: false,
|
|
769
|
+
useReserveBeneficiaryAsDefault: false,
|
|
770
|
+
transfersPausable: false,
|
|
771
|
+
useVotingUnits: false,
|
|
772
|
+
cantBeRemoved: false,
|
|
773
|
+
cantIncreaseDiscountPercent: false,
|
|
774
|
+
cantBuyWithCredits: false
|
|
775
|
+
}),
|
|
715
776
|
splitPercent: 0,
|
|
716
777
|
splits: new JBSplit[](0)
|
|
717
778
|
});
|
|
@@ -727,13 +788,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
727
788
|
encodedIPFSUri: bytes32(0xc583623dc7a3e61bfc04813f8c975eba8a22aeafe3d741edff1e2c97ac520737),
|
|
728
789
|
category: 12,
|
|
729
790
|
discountPercent: 0,
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
791
|
+
flags: JB721TierConfigFlags({
|
|
792
|
+
allowOwnerMint: false,
|
|
793
|
+
useReserveBeneficiaryAsDefault: false,
|
|
794
|
+
transfersPausable: false,
|
|
795
|
+
useVotingUnits: false,
|
|
796
|
+
cantBeRemoved: false,
|
|
797
|
+
cantIncreaseDiscountPercent: false,
|
|
798
|
+
cantBuyWithCredits: false
|
|
799
|
+
}),
|
|
737
800
|
splitPercent: 0,
|
|
738
801
|
splits: new JBSplit[](0)
|
|
739
802
|
});
|
|
@@ -749,13 +812,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
749
812
|
encodedIPFSUri: bytes32(0x58f8e217cfafd0a6feff40f4822790cdc19aba5dd4d4948f4c1bd5e313c90e8d),
|
|
750
813
|
category: 12,
|
|
751
814
|
discountPercent: 0,
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
815
|
+
flags: JB721TierConfigFlags({
|
|
816
|
+
allowOwnerMint: false,
|
|
817
|
+
useReserveBeneficiaryAsDefault: false,
|
|
818
|
+
transfersPausable: false,
|
|
819
|
+
useVotingUnits: false,
|
|
820
|
+
cantBeRemoved: false,
|
|
821
|
+
cantIncreaseDiscountPercent: false,
|
|
822
|
+
cantBuyWithCredits: false
|
|
823
|
+
}),
|
|
759
824
|
splitPercent: 0,
|
|
760
825
|
splits: new JBSplit[](0)
|
|
761
826
|
});
|
|
@@ -771,13 +836,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
771
836
|
encodedIPFSUri: bytes32(0x3e67840649fabab6d62f92bad701a6248b77f86ea8fcd66dc88dfbcba1134d85),
|
|
772
837
|
category: 12,
|
|
773
838
|
discountPercent: 0,
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
839
|
+
flags: JB721TierConfigFlags({
|
|
840
|
+
allowOwnerMint: false,
|
|
841
|
+
useReserveBeneficiaryAsDefault: false,
|
|
842
|
+
transfersPausable: false,
|
|
843
|
+
useVotingUnits: false,
|
|
844
|
+
cantBeRemoved: false,
|
|
845
|
+
cantIncreaseDiscountPercent: false,
|
|
846
|
+
cantBuyWithCredits: false
|
|
847
|
+
}),
|
|
781
848
|
splitPercent: 0,
|
|
782
849
|
splits: new JBSplit[](0)
|
|
783
850
|
});
|
|
@@ -793,13 +860,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
793
860
|
encodedIPFSUri: bytes32(0xd4724e692969066fc0b3587b8e18d1589205d1e1f133d7f9f8d63d14b6d1862f),
|
|
794
861
|
category: 12,
|
|
795
862
|
discountPercent: 0,
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
863
|
+
flags: JB721TierConfigFlags({
|
|
864
|
+
allowOwnerMint: false,
|
|
865
|
+
useReserveBeneficiaryAsDefault: false,
|
|
866
|
+
transfersPausable: false,
|
|
867
|
+
useVotingUnits: false,
|
|
868
|
+
cantBeRemoved: false,
|
|
869
|
+
cantIncreaseDiscountPercent: false,
|
|
870
|
+
cantBuyWithCredits: false
|
|
871
|
+
}),
|
|
803
872
|
splitPercent: 0,
|
|
804
873
|
splits: new JBSplit[](0)
|
|
805
874
|
});
|
|
@@ -815,13 +884,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
815
884
|
encodedIPFSUri: bytes32(0xde4c6e589f4e99cda7205236a99db750638236007b2dd03d79de1146102d7f81),
|
|
816
885
|
category: 12,
|
|
817
886
|
discountPercent: 0,
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
887
|
+
flags: JB721TierConfigFlags({
|
|
888
|
+
allowOwnerMint: false,
|
|
889
|
+
useReserveBeneficiaryAsDefault: false,
|
|
890
|
+
transfersPausable: false,
|
|
891
|
+
useVotingUnits: false,
|
|
892
|
+
cantBeRemoved: false,
|
|
893
|
+
cantIncreaseDiscountPercent: false,
|
|
894
|
+
cantBuyWithCredits: false
|
|
895
|
+
}),
|
|
825
896
|
splitPercent: 0,
|
|
826
897
|
splits: new JBSplit[](0)
|
|
827
898
|
});
|
|
@@ -837,13 +908,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
837
908
|
encodedIPFSUri: bytes32(0x766001db70e4a18e76dbbd9e4b0f9e47b5a9c4daa1a7c3727190a154daabfa1c),
|
|
838
909
|
category: 12,
|
|
839
910
|
discountPercent: 0,
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
911
|
+
flags: JB721TierConfigFlags({
|
|
912
|
+
allowOwnerMint: false,
|
|
913
|
+
useReserveBeneficiaryAsDefault: false,
|
|
914
|
+
transfersPausable: false,
|
|
915
|
+
useVotingUnits: false,
|
|
916
|
+
cantBeRemoved: false,
|
|
917
|
+
cantIncreaseDiscountPercent: false,
|
|
918
|
+
cantBuyWithCredits: false
|
|
919
|
+
}),
|
|
847
920
|
splitPercent: 0,
|
|
848
921
|
splits: new JBSplit[](0)
|
|
849
922
|
});
|
|
@@ -859,13 +932,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
859
932
|
encodedIPFSUri: bytes32(0xa4d2eb02df6eb99cbbdc3603a116b3b9dcd45f865a8c8396611ea5f879deee59),
|
|
860
933
|
category: 13,
|
|
861
934
|
discountPercent: 0,
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
935
|
+
flags: JB721TierConfigFlags({
|
|
936
|
+
allowOwnerMint: false,
|
|
937
|
+
useReserveBeneficiaryAsDefault: false,
|
|
938
|
+
transfersPausable: false,
|
|
939
|
+
useVotingUnits: false,
|
|
940
|
+
cantBeRemoved: false,
|
|
941
|
+
cantIncreaseDiscountPercent: false,
|
|
942
|
+
cantBuyWithCredits: false
|
|
943
|
+
}),
|
|
869
944
|
splitPercent: 0,
|
|
870
945
|
splits: new JBSplit[](0)
|
|
871
946
|
});
|
|
@@ -881,13 +956,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
881
956
|
encodedIPFSUri: bytes32(0x18abc38e7f1c5c014398f705131aac80196dcd0da2b5f02c103e1a549433e8b3),
|
|
882
957
|
category: 13,
|
|
883
958
|
discountPercent: 0,
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
959
|
+
flags: JB721TierConfigFlags({
|
|
960
|
+
allowOwnerMint: false,
|
|
961
|
+
useReserveBeneficiaryAsDefault: false,
|
|
962
|
+
transfersPausable: false,
|
|
963
|
+
useVotingUnits: false,
|
|
964
|
+
cantBeRemoved: false,
|
|
965
|
+
cantIncreaseDiscountPercent: false,
|
|
966
|
+
cantBuyWithCredits: false
|
|
967
|
+
}),
|
|
891
968
|
splitPercent: 0,
|
|
892
969
|
splits: new JBSplit[](0)
|
|
893
970
|
});
|
|
@@ -903,13 +980,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
903
980
|
encodedIPFSUri: bytes32(0xc498a98bea66a8b44297631f136a7326f7a28b882058829588979b186d06baff),
|
|
904
981
|
category: 13,
|
|
905
982
|
discountPercent: 0,
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
983
|
+
flags: JB721TierConfigFlags({
|
|
984
|
+
allowOwnerMint: false,
|
|
985
|
+
useReserveBeneficiaryAsDefault: false,
|
|
986
|
+
transfersPausable: false,
|
|
987
|
+
useVotingUnits: false,
|
|
988
|
+
cantBeRemoved: false,
|
|
989
|
+
cantIncreaseDiscountPercent: false,
|
|
990
|
+
cantBuyWithCredits: false
|
|
991
|
+
}),
|
|
913
992
|
splitPercent: 0,
|
|
914
993
|
splits: new JBSplit[](0)
|
|
915
994
|
});
|
|
@@ -925,13 +1004,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
925
1004
|
encodedIPFSUri: bytes32(0x3bd1186293e2d3e4def734a669c348976e1ba0cdc628a19cd5a3b38e0bee28f9),
|
|
926
1005
|
category: 13,
|
|
927
1006
|
discountPercent: 0,
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
1007
|
+
flags: JB721TierConfigFlags({
|
|
1008
|
+
allowOwnerMint: false,
|
|
1009
|
+
useReserveBeneficiaryAsDefault: false,
|
|
1010
|
+
transfersPausable: false,
|
|
1011
|
+
useVotingUnits: false,
|
|
1012
|
+
cantBeRemoved: false,
|
|
1013
|
+
cantIncreaseDiscountPercent: false,
|
|
1014
|
+
cantBuyWithCredits: false
|
|
1015
|
+
}),
|
|
935
1016
|
splitPercent: 0,
|
|
936
1017
|
splits: new JBSplit[](0)
|
|
937
1018
|
});
|
|
@@ -947,13 +1028,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
947
1028
|
encodedIPFSUri: bytes32(0x6b8bfbf33e574747b69039adfc6788101047a4593db7ea7ff4f6fa5a890e9ecf),
|
|
948
1029
|
category: 13,
|
|
949
1030
|
discountPercent: 0,
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
1031
|
+
flags: JB721TierConfigFlags({
|
|
1032
|
+
allowOwnerMint: false,
|
|
1033
|
+
useReserveBeneficiaryAsDefault: false,
|
|
1034
|
+
transfersPausable: false,
|
|
1035
|
+
useVotingUnits: false,
|
|
1036
|
+
cantBeRemoved: false,
|
|
1037
|
+
cantIncreaseDiscountPercent: false,
|
|
1038
|
+
cantBuyWithCredits: false
|
|
1039
|
+
}),
|
|
957
1040
|
splitPercent: 0,
|
|
958
1041
|
splits: new JBSplit[](0)
|
|
959
1042
|
});
|
|
@@ -969,13 +1052,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
969
1052
|
encodedIPFSUri: bytes32(0xf11d1cea4163e0dfa2be8d60b0cd82d075fb37d969e40439df4e91db53bf7f3e),
|
|
970
1053
|
category: 13,
|
|
971
1054
|
discountPercent: 0,
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
1055
|
+
flags: JB721TierConfigFlags({
|
|
1056
|
+
allowOwnerMint: false,
|
|
1057
|
+
useReserveBeneficiaryAsDefault: false,
|
|
1058
|
+
transfersPausable: false,
|
|
1059
|
+
useVotingUnits: false,
|
|
1060
|
+
cantBeRemoved: false,
|
|
1061
|
+
cantIncreaseDiscountPercent: false,
|
|
1062
|
+
cantBuyWithCredits: false
|
|
1063
|
+
}),
|
|
979
1064
|
splitPercent: 0,
|
|
980
1065
|
splits: new JBSplit[](0)
|
|
981
1066
|
});
|
|
@@ -991,13 +1076,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
991
1076
|
encodedIPFSUri: bytes32(0xedf8136f97347d1fee1fc14b1b9cbdb6d170a75c3860a92664c56060712567f3),
|
|
992
1077
|
category: 13,
|
|
993
1078
|
discountPercent: 0,
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1079
|
+
flags: JB721TierConfigFlags({
|
|
1080
|
+
allowOwnerMint: false,
|
|
1081
|
+
useReserveBeneficiaryAsDefault: false,
|
|
1082
|
+
transfersPausable: false,
|
|
1083
|
+
useVotingUnits: false,
|
|
1084
|
+
cantBeRemoved: false,
|
|
1085
|
+
cantIncreaseDiscountPercent: false,
|
|
1086
|
+
cantBuyWithCredits: false
|
|
1087
|
+
}),
|
|
1001
1088
|
splitPercent: 0,
|
|
1002
1089
|
splits: new JBSplit[](0)
|
|
1003
1090
|
});
|
|
@@ -1013,13 +1100,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1013
1100
|
encodedIPFSUri: bytes32(0xbcc0c314f94ccb0f8f2717aff0b2096a28ace5b70465b5b4e106981fdbceb238),
|
|
1014
1101
|
category: 13,
|
|
1015
1102
|
discountPercent: 0,
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1103
|
+
flags: JB721TierConfigFlags({
|
|
1104
|
+
allowOwnerMint: false,
|
|
1105
|
+
useReserveBeneficiaryAsDefault: false,
|
|
1106
|
+
transfersPausable: false,
|
|
1107
|
+
useVotingUnits: false,
|
|
1108
|
+
cantBeRemoved: false,
|
|
1109
|
+
cantIncreaseDiscountPercent: false,
|
|
1110
|
+
cantBuyWithCredits: false
|
|
1111
|
+
}),
|
|
1023
1112
|
splitPercent: 0,
|
|
1024
1113
|
splits: new JBSplit[](0)
|
|
1025
1114
|
});
|
|
@@ -1035,13 +1124,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1035
1124
|
encodedIPFSUri: bytes32(0x867d8d8b9da0b5d8a00024d548e5f6e33562d521dff8c245764b6206003d1970),
|
|
1036
1125
|
category: 13,
|
|
1037
1126
|
discountPercent: 0,
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1127
|
+
flags: JB721TierConfigFlags({
|
|
1128
|
+
allowOwnerMint: false,
|
|
1129
|
+
useReserveBeneficiaryAsDefault: false,
|
|
1130
|
+
transfersPausable: false,
|
|
1131
|
+
useVotingUnits: false,
|
|
1132
|
+
cantBeRemoved: false,
|
|
1133
|
+
cantIncreaseDiscountPercent: false,
|
|
1134
|
+
cantBuyWithCredits: false
|
|
1135
|
+
}),
|
|
1045
1136
|
splitPercent: 0,
|
|
1046
1137
|
splits: new JBSplit[](0)
|
|
1047
1138
|
});
|
|
@@ -1057,13 +1148,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1057
1148
|
encodedIPFSUri: bytes32(0x876078bdfb8cdcc4359bb946274a9964e84877beac0ecd59fbf293c3bc2457c9),
|
|
1058
1149
|
category: 14,
|
|
1059
1150
|
discountPercent: 0,
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1151
|
+
flags: JB721TierConfigFlags({
|
|
1152
|
+
allowOwnerMint: false,
|
|
1153
|
+
useReserveBeneficiaryAsDefault: false,
|
|
1154
|
+
transfersPausable: false,
|
|
1155
|
+
useVotingUnits: false,
|
|
1156
|
+
cantBeRemoved: false,
|
|
1157
|
+
cantIncreaseDiscountPercent: false,
|
|
1158
|
+
cantBuyWithCredits: false
|
|
1159
|
+
}),
|
|
1067
1160
|
splitPercent: 0,
|
|
1068
1161
|
splits: new JBSplit[](0)
|
|
1069
1162
|
});
|
|
@@ -1079,13 +1172,15 @@ contract Drop1Script is Script, Sphinx {
|
|
|
1079
1172
|
encodedIPFSUri: bytes32(0x1d1484b4b37a882e59ab5a01c1a32528e703e15156b9bb9b5372b61fec84c0df),
|
|
1080
1173
|
category: 16,
|
|
1081
1174
|
discountPercent: 0,
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1175
|
+
flags: JB721TierConfigFlags({
|
|
1176
|
+
allowOwnerMint: false,
|
|
1177
|
+
useReserveBeneficiaryAsDefault: false,
|
|
1178
|
+
transfersPausable: false,
|
|
1179
|
+
useVotingUnits: false,
|
|
1180
|
+
cantBeRemoved: false,
|
|
1181
|
+
cantIncreaseDiscountPercent: false,
|
|
1182
|
+
cantBuyWithCredits: false
|
|
1183
|
+
}),
|
|
1089
1184
|
splitPercent: 0,
|
|
1090
1185
|
splits: new JBSplit[](0)
|
|
1091
1186
|
});
|