1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
use {
crate::{
deprecated_state::AuctionManagerV1, error::MetaplexError, utils::try_from_slice_checked,
},
arrayref::{array_mut_ref, array_ref, mut_array_refs},
borsh::{BorshDeserialize, BorshSerialize},
mpl_auction::processor::AuctionData,
mpl_token_metadata::state::Metadata,
mpl_token_vault::state::SafetyDepositBox,
solana_program::{
account_info::AccountInfo, entrypoint::ProgramResult, program_error::ProgramError,
pubkey::Pubkey,
},
std::cell::{Ref, RefMut},
};
pub const PREFIX: &str = "metaplex";
pub const TOTALS: &str = "totals";
pub const INDEX: &str = "index";
pub const CACHE: &str = "cache";
pub const CONFIG: &str = "config";
pub const BASE_TRACKER_SIZE: usize = 1 + 1 + 1 + 4;
pub const MAX_INDEXED_ELEMENTS: usize = 100;
pub const MAX_STORE_INDEXER_SIZE: usize = 1 + 32 + 8 + 4 + 32*MAX_INDEXED_ELEMENTS; pub const MAX_METADATA_PER_CACHE: usize = 10;
pub const MAX_AUCTION_CACHE_SIZE: usize = 1 + 32 + 8 + 4 + 32*MAX_METADATA_PER_CACHE + 32 + 32 + 32; pub const MAX_AUCTION_MANAGER_V2_SIZE: usize = 1 + 32 + 32 + 32 + 32 + 32 + 1 + 1 + 8 + 200; pub const MAX_STORE_SIZE: usize = 2 + 32 + 32 + 32 + 32 + 100; pub const MAX_STORE_CONFIG_V1_SIZE: usize = 2 + 200 + 100; pub const MAX_WHITELISTED_CREATOR_SIZE: usize = 2 + 32 + 10;
pub const MAX_PAYOUT_TICKET_SIZE: usize = 1 + 32 + 8;
pub const MAX_BID_REDEMPTION_TICKET_SIZE: usize = 3;
pub const MAX_AUTHORITY_LOOKUP_SIZE: usize = 33;
pub const MAX_PRIZE_TRACKING_TICKET_SIZE: usize = 1 + 32 + 8 + 8 + 8 + 50;
pub const BASE_SAFETY_CONFIG_SIZE: usize = 1 +32 + 8 + 1 + 1 + 1 + 4 + 1 + 1 + 1 + 9 + 1 + 8 + 20; #[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, PartialEq, Debug, Copy)]
pub enum Key {
Uninitialized,
OriginalAuthorityLookupV1,
BidRedemptionTicketV1,
StoreV1,
WhitelistedCreatorV1,
PayoutTicketV1,
SafetyDepositValidationTicketV1,
AuctionManagerV1,
PrizeTrackingTicketV1,
SafetyDepositConfigV1,
AuctionManagerV2,
BidRedemptionTicketV2,
AuctionWinnerTokenTypeTrackerV1,
StoreIndexerV1,
AuctionCacheV1,
StoreConfigV1,
}
pub struct CommonWinningIndexChecks<'a> {
pub safety_deposit_info: &'a AccountInfo<'a>,
pub winning_index: usize,
pub auction_manager_v1_ignore_claim: bool,
pub safety_deposit_config_info: Option<&'a AccountInfo<'a>>,
}
pub struct PrintingV2CalculationChecks<'a> {
pub safety_deposit_info: &'a AccountInfo<'a>,
pub winning_index: usize,
pub auction_manager_v1_ignore_claim: bool,
pub safety_deposit_config_info: Option<&'a AccountInfo<'a>>,
pub short_circuit_total: bool,
pub edition_offset: u64,
pub winners: usize,
}
pub struct CommonWinningIndexReturn {
pub amount: u64,
pub winning_config_type: WinningConfigType,
pub winning_config_item_index: Option<usize>,
}
pub struct PrintingV2CalculationCheckReturn {
pub expected_redemptions: u64,
pub winning_config_type: WinningConfigType,
pub winning_config_item_index: Option<usize>,
}
pub trait AuctionManager {
fn key(&self) -> Key;
fn store(&self) -> Pubkey;
fn authority(&self) -> Pubkey;
fn auction(&self) -> Pubkey;
fn vault(&self) -> Pubkey;
fn accept_payment(&self) -> Pubkey;
fn status(&self) -> AuctionManagerStatus;
fn set_status(&mut self, status: AuctionManagerStatus);
fn configs_validated(&self) -> u64;
fn set_configs_validated(&mut self, new_configs_validated: u64);
fn save(&self, account: &AccountInfo) -> ProgramResult;
fn fast_save(
&self,
account: &AccountInfo,
winning_config_index: usize,
winning_config_item_index: usize,
);
fn common_winning_index_checks(
&self,
args: CommonWinningIndexChecks,
) -> Result<CommonWinningIndexReturn, ProgramError>;
fn printing_v2_calculation_checks(
&self,
args: PrintingV2CalculationChecks,
) -> Result<PrintingV2CalculationCheckReturn, ProgramError>;
fn get_participation_config(
&self,
safety_deposit_config_info: &AccountInfo,
) -> Result<ParticipationConfigV2, ProgramError>;
fn add_to_collected_payment(
&mut self,
safety_deposit_config_info: &AccountInfo,
price: u64,
) -> ProgramResult;
fn assert_legacy_printing_token_match(&self, account: &AccountInfo) -> ProgramResult;
fn get_max_bids_allowed_before_removal_is_stopped(
&self,
safety_deposit_box_order: u64,
safety_deposit_config_info: Option<&AccountInfo>,
) -> Result<usize, ProgramError>;
fn assert_is_valid_master_edition_v2_safety_deposit(
&self,
safety_deposit_box_order: u64,
safety_deposit_config_info: Option<&AccountInfo>,
) -> ProgramResult;
fn mark_bid_as_claimed(&mut self, winner_index: usize) -> ProgramResult;
fn assert_all_bids_claimed(&self, auction: &AuctionData) -> ProgramResult;
fn get_number_of_unique_token_types_for_this_winner(
&self,
winner_index: usize,
auction_token_tracker_info: Option<&AccountInfo>,
) -> Result<u128, ProgramError>;
fn get_collected_to_accept_payment(
&self,
safety_deposit_config_info: Option<&AccountInfo>,
) -> Result<u128, ProgramError>;
fn get_primary_sale_happened(
&self,
metadata: &Metadata,
winning_config_index: Option<u8>,
winning_config_item_index: Option<u8>,
) -> Result<bool, ProgramError>;
fn assert_winning_config_safety_deposit_validity(
&self,
safety_deposit: &SafetyDepositBox,
winning_config_index: Option<u8>,
winning_config_item_index: Option<u8>,
) -> ProgramResult;
}
pub fn get_auction_manager(account: &AccountInfo) -> Result<Box<dyn AuctionManager>, ProgramError> {
let version = account.data.borrow()[0];
match version {
7 => return Ok(Box::new(AuctionManagerV1::from_account_info(account)?)),
10 => return Ok(Box::new(AuctionManagerV2::from_account_info(account)?)),
_ => return Err(MetaplexError::DataTypeMismatch.into()),
};
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Debug)]
pub struct AuctionManagerV2 {
pub key: Key,
pub store: Pubkey,
pub authority: Pubkey,
pub auction: Pubkey,
pub vault: Pubkey,
pub accept_payment: Pubkey,
pub state: AuctionManagerStateV2,
}
impl AuctionManager for AuctionManagerV2 {
fn key(&self) -> Key {
self.key
}
fn store(&self) -> Pubkey {
self.store
}
fn authority(&self) -> Pubkey {
self.authority
}
fn auction(&self) -> Pubkey {
self.auction
}
fn vault(&self) -> Pubkey {
self.vault
}
fn accept_payment(&self) -> Pubkey {
self.accept_payment
}
fn status(&self) -> AuctionManagerStatus {
self.state.status
}
fn fast_save(
&self,
account: &AccountInfo,
_winning_config_index: usize,
_winning_config_item_index: usize,
) {
let mut data = account.data.borrow_mut();
data[161] = self.state.status as u8;
}
fn common_winning_index_checks(
&self,
args: CommonWinningIndexChecks,
) -> Result<CommonWinningIndexReturn, ProgramError> {
let CommonWinningIndexChecks {
safety_deposit_config_info,
safety_deposit_info: _s,
winning_index,
auction_manager_v1_ignore_claim: _a,
} = args;
if let Some(config) = safety_deposit_config_info {
Ok(CommonWinningIndexReturn {
amount: SafetyDepositConfig::find_amount_and_cumulative_offset(
config,
winning_index as u64,
None,
)?
.amount,
winning_config_type: SafetyDepositConfig::get_winning_config_type(config)?,
winning_config_item_index: Some(0),
})
} else {
return Err(MetaplexError::InvalidOperation.into());
}
}
fn printing_v2_calculation_checks(
&self,
args: PrintingV2CalculationChecks,
) -> Result<PrintingV2CalculationCheckReturn, ProgramError> {
let PrintingV2CalculationChecks {
safety_deposit_config_info,
safety_deposit_info: _s,
winning_index,
auction_manager_v1_ignore_claim: _a,
short_circuit_total: _ss,
edition_offset,
winners,
} = args;
if let Some(config) = safety_deposit_config_info {
let derived_results = SafetyDepositConfig::find_amount_and_cumulative_offset(
config,
winning_index as u64,
Some(winners),
)?;
let edition_offset_min = derived_results
.cumulative_amount
.checked_add(1)
.ok_or(MetaplexError::NumericalOverflowError)?;
let edition_offset_max = edition_offset_min
.checked_add(derived_results.amount)
.ok_or(MetaplexError::NumericalOverflowError)?;
if edition_offset < edition_offset_min || edition_offset >= edition_offset_max {
return Err(MetaplexError::InvalidEditionNumber.into());
}
Ok(PrintingV2CalculationCheckReturn {
expected_redemptions: derived_results.total_amount,
winning_config_type: SafetyDepositConfig::get_winning_config_type(config)?,
winning_config_item_index: Some(0),
})
} else {
return Err(MetaplexError::InvalidOperation.into());
}
}
fn set_status(&mut self, status: AuctionManagerStatus) {
self.state.status = status
}
fn configs_validated(&self) -> u64 {
self.state.safety_config_items_validated
}
fn set_configs_validated(&mut self, new_configs_validated: u64) {
self.state.safety_config_items_validated = new_configs_validated
}
fn save(&self, account: &AccountInfo) -> ProgramResult {
self.serialize(&mut *account.data.borrow_mut())?;
Ok(())
}
fn get_participation_config(
&self,
safety_deposit_config_info: &AccountInfo,
) -> Result<ParticipationConfigV2, ProgramError> {
let safety_config = SafetyDepositConfig::from_account_info(safety_deposit_config_info)?;
if let Some(p_config) = safety_config.participation_config {
Ok(p_config)
} else {
return Err(MetaplexError::NotEligibleForParticipation.into());
}
}
fn add_to_collected_payment(
&mut self,
safety_deposit_config_info: &AccountInfo,
price: u64,
) -> ProgramResult {
let mut safety_config = SafetyDepositConfig::from_account_info(safety_deposit_config_info)?;
if let Some(state) = &safety_config.participation_state {
safety_config.participation_state = Some(ParticipationStateV2 {
collected_to_accept_payment: state
.collected_to_accept_payment
.checked_add(price)
.ok_or(MetaplexError::NumericalOverflowError)?,
});
safety_config.save_participation_state(safety_deposit_config_info)
}
Ok(())
}
fn assert_legacy_printing_token_match(&self, _account: &AccountInfo) -> ProgramResult {
return Err(MetaplexError::PrintingAuthorizationTokenAccountMismatch.into());
}
fn get_max_bids_allowed_before_removal_is_stopped(
&self,
_safety_deposit_box_order: u64,
safety_deposit_config_info: Option<&AccountInfo>,
) -> Result<usize, ProgramError> {
if let Some(config) = safety_deposit_config_info {
let safety_config = SafetyDepositConfig::from_account_info(config)?;
let mut current_offset: u64 = 0;
for n in safety_config.amount_ranges {
if n.0 > 0 {
return Ok(current_offset as usize);
} else {
current_offset = current_offset
.checked_add(n.1)
.ok_or(MetaplexError::NumericalOverflowError)?;
}
}
Ok(0)
} else {
return Err(MetaplexError::InvalidOperation.into());
}
}
fn assert_is_valid_master_edition_v2_safety_deposit(
&self,
_safety_deposit_box_order: u64,
safety_deposit_config_info: Option<&AccountInfo>,
) -> ProgramResult {
if let Some(config) = safety_deposit_config_info {
let safety_config = SafetyDepositConfig::from_account_info(config)?;
if safety_config.winning_config_type != WinningConfigType::PrintingV2
&& safety_config.winning_config_type != WinningConfigType::Participation
{
return Err(MetaplexError::InvalidOperation.into());
}
Ok(())
} else {
return Err(MetaplexError::InvalidOperation.into());
}
}
fn mark_bid_as_claimed(&mut self, _winner_index: usize) -> ProgramResult {
self.state.bids_pushed_to_accept_payment = self
.state
.bids_pushed_to_accept_payment
.checked_add(1)
.ok_or(MetaplexError::NumericalOverflowError)?;
Ok(())
}
fn assert_all_bids_claimed(&self, auction: &AuctionData) -> ProgramResult {
if self.state.bids_pushed_to_accept_payment != auction.num_winners() {
return Err(MetaplexError::NotAllBidsClaimed.into());
}
Ok(())
}
fn get_number_of_unique_token_types_for_this_winner(
&self,
winner_index: usize,
auction_token_tracker_info: Option<&AccountInfo>,
) -> Result<u128, ProgramError> {
if let Some(tracker_info) = auction_token_tracker_info {
let tracker = AuctionWinnerTokenTypeTracker::from_account_info(tracker_info)?;
let mut start: u64 = 0;
for range in tracker.amount_ranges {
let end = start
.checked_add(range.1)
.ok_or(MetaplexError::NumericalOverflowError)?;
if winner_index >= start as usize && winner_index < end as usize {
return Ok(range.0 as u128);
} else {
start = end
}
}
return Err(MetaplexError::NoTokensForThisWinner.into());
} else {
return Err(MetaplexError::InvalidOperation.into());
}
}
fn get_collected_to_accept_payment(
&self,
safety_deposit_config_info: Option<&AccountInfo>,
) -> Result<u128, ProgramError> {
if let Some(config) = safety_deposit_config_info {
let parsed = SafetyDepositConfig::from_account_info(config)?;
if let Some(p_state) = parsed.participation_state {
Ok(p_state.collected_to_accept_payment as u128)
} else {
Ok(0)
}
} else {
return Err(MetaplexError::InvalidOperation.into());
}
}
fn get_primary_sale_happened(
&self,
metadata: &Metadata,
_winning_config_index: Option<u8>,
_winning_config_item_index: Option<u8>,
) -> Result<bool, ProgramError> {
Ok(metadata.primary_sale_happened)
}
fn assert_winning_config_safety_deposit_validity(
&self,
_safety_deposit: &SafetyDepositBox,
_winning_config_index: Option<u8>,
_winning_config_item_index: Option<u8>,
) -> ProgramResult {
Ok(())
}
}
impl AuctionManagerV2 {
pub fn from_account_info(a: &AccountInfo) -> Result<AuctionManagerV2, ProgramError> {
let am: AuctionManagerV2 = try_from_slice_checked(
&a.data.borrow_mut(),
Key::AuctionManagerV2,
MAX_AUCTION_MANAGER_V2_SIZE,
)?;
Ok(am)
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Debug)]
pub struct AuctionManagerStateV2 {
pub status: AuctionManagerStatus,
pub safety_config_items_validated: u64,
pub bids_pushed_to_accept_payment: u64,
pub has_participation: bool,
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, PartialEq, Debug)]
pub struct ParticipationStateV2 {
pub collected_to_accept_payment: u64,
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, PartialEq, Debug)]
pub struct ParticipationConfigV2 {
pub winner_constraint: WinningConstraint,
pub non_winning_constraint: NonWinningConstraint,
pub fixed_price: Option<u64>,
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, PartialEq, Debug, Copy)]
pub enum WinningConstraint {
NoParticipationPrize,
ParticipationPrizeGiven,
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, PartialEq, Debug, Copy)]
pub enum NonWinningConstraint {
NoParticipationPrize,
GivenForFixedPrice,
GivenForBidPrice,
}
#[repr(C)]
#[derive(Clone, PartialEq, BorshSerialize, BorshDeserialize, Copy, Debug)]
pub enum WinningConfigType {
TokenOnlyTransfer,
FullRightsTransfer,
PrintingV1,
PrintingV2,
Participation,
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Debug, PartialEq, Copy)]
pub enum AuctionManagerStatus {
Initialized,
Validated,
Running,
Disbursing,
Finished,
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Copy)]
pub struct OriginalAuthorityLookup {
pub key: Key,
pub original_authority: Pubkey,
}
impl OriginalAuthorityLookup {
pub fn from_account_info(a: &AccountInfo) -> Result<OriginalAuthorityLookup, ProgramError> {
let pt: OriginalAuthorityLookup = try_from_slice_checked(
&a.data.borrow_mut(),
Key::OriginalAuthorityLookupV1,
MAX_AUTHORITY_LOOKUP_SIZE,
)?;
Ok(pt)
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Copy)]
pub struct PayoutTicket {
pub key: Key,
pub recipient: Pubkey,
pub amount_paid: u64,
}
impl PayoutTicket {
pub fn from_account_info(a: &AccountInfo) -> Result<PayoutTicket, ProgramError> {
let pt: PayoutTicket = try_from_slice_checked(
&a.data.borrow_mut(),
Key::PayoutTicketV1,
MAX_PAYOUT_TICKET_SIZE,
)?;
Ok(pt)
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize)]
pub struct StoreIndexer {
pub key: Key,
pub store: Pubkey,
pub page: u64,
pub auction_caches: Vec<Pubkey>,
}
impl StoreIndexer {
pub fn from_account_info(a: &AccountInfo) -> Result<StoreIndexer, ProgramError> {
let store: StoreIndexer = try_from_slice_checked(
&a.data.borrow_mut(),
Key::StoreIndexerV1,
MAX_STORE_INDEXER_SIZE,
)?;
Ok(store)
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize)]
pub struct AuctionCache {
pub key: Key,
pub store: Pubkey,
pub timestamp: i64,
pub metadata: Vec<Pubkey>,
pub auction: Pubkey,
pub vault: Pubkey,
pub auction_manager: Pubkey,
}
impl AuctionCache {
pub fn from_account_info(a: &AccountInfo) -> Result<AuctionCache, ProgramError> {
let store: AuctionCache = try_from_slice_checked(
&a.data.borrow_mut(),
Key::AuctionCacheV1,
MAX_AUCTION_CACHE_SIZE,
)?;
Ok(store)
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Copy)]
pub struct Store {
pub key: Key,
pub public: bool,
pub auction_program: Pubkey,
pub token_vault_program: Pubkey,
pub token_metadata_program: Pubkey,
pub token_program: Pubkey,
}
impl Store {
pub fn from_account_info(a: &AccountInfo) -> Result<Store, ProgramError> {
let store: Store =
try_from_slice_checked(&a.data.borrow_mut(), Key::StoreV1, MAX_STORE_SIZE)?;
Ok(store)
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize)]
pub struct StoreConfig {
pub key: Key,
pub settings_uri: Option<String>,
}
impl StoreConfig {
pub fn from_account_info(a: &AccountInfo) -> Result<StoreConfig, ProgramError> {
let store: StoreConfig = try_from_slice_checked(
&a.data.borrow_mut(),
Key::StoreConfigV1,
MAX_STORE_CONFIG_V1_SIZE,
)?;
Ok(store)
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Copy)]
pub struct WhitelistedCreator {
pub key: Key,
pub address: Pubkey,
pub activated: bool,
}
impl WhitelistedCreator {
pub fn from_account_info(a: &AccountInfo) -> Result<WhitelistedCreator, ProgramError> {
let wc: WhitelistedCreator = try_from_slice_checked(
&a.data.borrow_mut(),
Key::WhitelistedCreatorV1,
MAX_WHITELISTED_CREATOR_SIZE,
)?;
Ok(wc)
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Copy, Debug)]
pub struct PrizeTrackingTicket {
pub key: Key,
pub metadata: Pubkey,
pub supply_snapshot: u64,
pub expected_redemptions: u64,
pub redemptions: u64,
}
impl PrizeTrackingTicket {
pub fn from_account_info(a: &AccountInfo) -> Result<PrizeTrackingTicket, ProgramError> {
let store: PrizeTrackingTicket = try_from_slice_checked(
&a.data.borrow_mut(),
Key::PrizeTrackingTicketV1,
MAX_PRIZE_TRACKING_TICKET_SIZE,
)?;
Ok(store)
}
}
#[repr(C)]
#[derive(Clone, Debug, BorshSerialize, BorshDeserialize, Copy)]
pub struct AmountRange(pub u64, pub u64);
#[repr(C)]
#[derive(Clone, Debug, BorshSerialize, BorshDeserialize, Copy)]
pub enum TupleNumericType {
Padding0 = 0,
U8 = 1,
U16 = 2,
Padding1 = 3,
U32 = 4,
Padding2 = 5,
Padding3 = 6,
Padding4 = 7,
U64 = 8,
}
#[repr(C)]
#[derive(Clone, Debug, BorshSerialize, BorshDeserialize)]
pub struct SafetyDepositConfig {
pub key: Key,
pub auction_manager: Pubkey,
pub order: u64,
pub winning_config_type: WinningConfigType,
pub amount_type: TupleNumericType,
pub length_type: TupleNumericType,
pub amount_ranges: Vec<AmountRange>,
pub participation_config: Option<ParticipationConfigV2>,
pub participation_state: Option<ParticipationStateV2>,
}
pub struct AmountCumulativeReturn {
pub amount: u64,
pub cumulative_amount: u64,
pub total_amount: u64,
}
const ORDER_POSITION: usize = 33;
const AUCTION_MANAGER_POSITION: usize = 1;
const WINNING_CONFIG_POSITION: usize = 41;
const AMOUNT_POSITION: usize = 42;
const LENGTH_POSITION: usize = 43;
const AMOUNT_RANGE_SIZE_POSITION: usize = 44;
const AMOUNT_RANGE_FIRST_EL_POSITION: usize = 48;
fn get_number_from_data(data: &Ref<&mut [u8]>, data_type: TupleNumericType, offset: usize) -> u64 {
return match data_type {
TupleNumericType::U8 => data[offset] as u64,
TupleNumericType::U16 => u16::from_le_bytes(*array_ref![data, offset, 2]) as u64,
TupleNumericType::U32 => u32::from_le_bytes(*array_ref![data, offset, 4]) as u64,
TupleNumericType::U64 => u64::from_le_bytes(*array_ref![data, offset, 8]),
_ => 0,
};
}
fn write_amount_type(
data: &mut RefMut<&mut [u8]>,
amount_type: TupleNumericType,
offset: usize,
range: &AmountRange,
) {
match amount_type {
TupleNumericType::U8 => data[offset] = range.0 as u8,
TupleNumericType::U16 => *array_mut_ref![data, offset, 2] = (range.0 as u16).to_le_bytes(),
TupleNumericType::U32 => *array_mut_ref![data, offset, 4] = (range.0 as u32).to_le_bytes(),
TupleNumericType::U64 => *array_mut_ref![data, offset, 8] = range.0.to_le_bytes(),
_ => (),
}
}
fn write_length_type(
data: &mut RefMut<&mut [u8]>,
length_type: TupleNumericType,
offset: usize,
range: &AmountRange,
) {
match length_type {
TupleNumericType::U8 => data[offset] = range.1 as u8,
TupleNumericType::U16 => *array_mut_ref![data, offset, 2] = (range.1 as u16).to_le_bytes(),
TupleNumericType::U32 => *array_mut_ref![data, offset, 4] = (range.1 as u32).to_le_bytes(),
TupleNumericType::U64 => *array_mut_ref![data, offset, 8] = range.1.to_le_bytes(),
_ => (),
}
}
impl SafetyDepositConfig {
pub fn created_size(&self) -> usize {
return BASE_SAFETY_CONFIG_SIZE
+ (self.amount_type as usize + self.length_type as usize) * self.amount_ranges.len();
}
pub fn get_order(a: &AccountInfo) -> u64 {
let data = a.data.borrow();
return u64::from_le_bytes(*array_ref![data, ORDER_POSITION, 8]);
}
pub fn get_auction_manager(a: &AccountInfo) -> Pubkey {
let data = a.data.borrow();
return Pubkey::new_from_array(*array_ref![data, AUCTION_MANAGER_POSITION, 32]);
}
pub fn get_amount_type(a: &AccountInfo) -> Result<TupleNumericType, ProgramError> {
let data = &a.data.borrow();
Ok(match data[AMOUNT_POSITION] {
1 => TupleNumericType::U8,
2 => TupleNumericType::U16,
4 => TupleNumericType::U32,
8 => TupleNumericType::U64,
_ => return Err(ProgramError::InvalidAccountData),
})
}
pub fn get_length_type(a: &AccountInfo) -> Result<TupleNumericType, ProgramError> {
let data = &a.data.borrow();
Ok(match data[LENGTH_POSITION] {
1 => TupleNumericType::U8,
2 => TupleNumericType::U16,
4 => TupleNumericType::U32,
8 => TupleNumericType::U64,
_ => return Err(ProgramError::InvalidAccountData),
})
}
pub fn get_amount_range_len(a: &AccountInfo) -> u32 {
let data = &a.data.borrow();
return u32::from_le_bytes(*array_ref![data, AMOUNT_RANGE_SIZE_POSITION, 4]);
}
pub fn get_winning_config_type(a: &AccountInfo) -> Result<WinningConfigType, ProgramError> {
let data = &a.data.borrow();
Ok(match data[WINNING_CONFIG_POSITION] {
0 => WinningConfigType::TokenOnlyTransfer,
1 => WinningConfigType::FullRightsTransfer,
2 => WinningConfigType::PrintingV1,
3 => WinningConfigType::PrintingV2,
4 => WinningConfigType::Participation,
_ => return Err(ProgramError::InvalidAccountData),
})
}
pub fn find_amount_and_cumulative_offset(
a: &AccountInfo,
index: u64,
stop_at_winner_index: Option<usize>,
) -> Result<AmountCumulativeReturn, ProgramError> {
let data = &mut a.data.borrow();
let amount_type = SafetyDepositConfig::get_amount_type(a)?;
let length_type = SafetyDepositConfig::get_length_type(a)?;
let length_of_array = SafetyDepositConfig::get_amount_range_len(a) as usize;
let mut cumulative_amount: u64 = 0;
let mut total_amount: u64 = 0;
let mut amount: u64 = 0;
let mut current_winner_range_start: u64 = 0;
let mut offset = AMOUNT_RANGE_FIRST_EL_POSITION;
let mut not_found = true;
for _ in 0..length_of_array {
let amount_each_winner_gets = get_number_from_data(data, amount_type, offset);
offset += amount_type as usize;
let length_of_range = get_number_from_data(data, length_type, offset);
offset += length_type as usize;
let current_winner_range_end = current_winner_range_start
.checked_add(length_of_range)
.ok_or(MetaplexError::NumericalOverflowError)?;
let to_add = amount_each_winner_gets
.checked_mul(length_of_range)
.ok_or(MetaplexError::NumericalOverflowError)?;
if index >= current_winner_range_start && index < current_winner_range_end {
let up_to_winner = (index - current_winner_range_start)
.checked_mul(amount_each_winner_gets)
.ok_or(MetaplexError::NumericalOverflowError)?;
cumulative_amount = cumulative_amount
.checked_add(up_to_winner)
.ok_or(MetaplexError::NumericalOverflowError)?;
amount = amount_each_winner_gets;
not_found = false;
} else if current_winner_range_start < index {
cumulative_amount = cumulative_amount
.checked_add(to_add)
.ok_or(MetaplexError::NumericalOverflowError)?;
}
if let Some(win_index) = stop_at_winner_index {
let win_index_as_u64 = win_index as u64;
if win_index_as_u64 >= current_winner_range_start
&& win_index_as_u64 < current_winner_range_end
{
let up_to_winner = (win_index_as_u64 - current_winner_range_start)
.checked_mul(amount_each_winner_gets)
.ok_or(MetaplexError::NumericalOverflowError)?;
total_amount = total_amount
.checked_add(up_to_winner)
.ok_or(MetaplexError::NumericalOverflowError)?;
break;
} else if current_winner_range_start < win_index_as_u64 {
total_amount = total_amount
.checked_add(to_add)
.ok_or(MetaplexError::NumericalOverflowError)?;
}
} else {
total_amount = total_amount
.checked_add(to_add)
.ok_or(MetaplexError::NumericalOverflowError)?;
}
current_winner_range_start = current_winner_range_end
}
if not_found {
return Err(MetaplexError::WinnerIndexNotFound.into());
}
Ok(AmountCumulativeReturn {
cumulative_amount,
total_amount,
amount,
})
}
pub fn from_account_info(a: &AccountInfo) -> Result<SafetyDepositConfig, ProgramError> {
let data = &mut a.data.borrow();
if a.data_len() < BASE_SAFETY_CONFIG_SIZE {
return Err(MetaplexError::DataTypeMismatch.into());
}
if data[0] != Key::SafetyDepositConfigV1 as u8 {
return Err(MetaplexError::DataTypeMismatch.into());
}
let auction_manager = SafetyDepositConfig::get_auction_manager(a);
let order = SafetyDepositConfig::get_order(a);
let winning_config_type = SafetyDepositConfig::get_winning_config_type(a)?;
let amount_type = SafetyDepositConfig::get_amount_type(a)?;
let length_type = SafetyDepositConfig::get_length_type(a)?;
let length_of_array = SafetyDepositConfig::get_amount_range_len(a);
let mut offset: usize = AMOUNT_RANGE_FIRST_EL_POSITION;
let mut amount_ranges = vec![];
for _ in 0..length_of_array {
let amount = get_number_from_data(data, amount_type, offset);
offset += amount_type as usize;
let length = get_number_from_data(data, length_type, offset);
amount_ranges.push(AmountRange(amount, length));
offset += length_type as usize;
}
let participation_config: Option<ParticipationConfigV2> = match data[offset] {
0 => {
offset += 1;
None
}
1 => {
let winner_constraint = match data[offset + 1] {
0 => WinningConstraint::NoParticipationPrize,
1 => WinningConstraint::ParticipationPrizeGiven,
_ => return Err(ProgramError::InvalidAccountData),
};
let non_winning_constraint = match data[offset + 2] {
0 => NonWinningConstraint::NoParticipationPrize,
1 => NonWinningConstraint::GivenForFixedPrice,
2 => NonWinningConstraint::GivenForBidPrice,
_ => return Err(ProgramError::InvalidAccountData),
};
offset += 3;
let fixed_price: Option<u64> = match data[offset] {
0 => {
offset += 1;
None
}
1 => {
let number = u64::from_le_bytes(*array_ref![data, offset + 1, 8]);
offset += 9;
Some(number)
}
_ => return Err(ProgramError::InvalidAccountData),
};
Some(ParticipationConfigV2 {
winner_constraint,
non_winning_constraint,
fixed_price,
})
}
_ => return Err(ProgramError::InvalidAccountData),
};
let participation_state: Option<ParticipationStateV2> = match data[offset] {
0 => {
None
}
1 => {
let collected_to_accept_payment =
u64::from_le_bytes(*array_ref![data, offset + 1, 8]);
Some(ParticipationStateV2 {
collected_to_accept_payment,
})
}
_ => return Err(ProgramError::InvalidAccountData),
};
Ok(SafetyDepositConfig {
key: Key::SafetyDepositConfigV1,
auction_manager,
order,
winning_config_type,
amount_type,
length_type,
amount_ranges,
participation_config,
participation_state,
})
}
pub fn create(&self, a: &AccountInfo, auction_manager_key: &Pubkey) -> ProgramResult {
let mut data = a.data.borrow_mut();
data[0] = Key::SafetyDepositConfigV1 as u8;
let as_bytes = auction_manager_key.as_ref();
for n in 0..32 {
data[n + 1] = as_bytes[n];
}
*array_mut_ref![data, ORDER_POSITION, 8] = self.order.to_le_bytes();
data[WINNING_CONFIG_POSITION] = self.winning_config_type as u8;
data[AMOUNT_POSITION] = self.amount_type as u8;
data[LENGTH_POSITION] = self.length_type as u8;
*array_mut_ref![data, AMOUNT_RANGE_SIZE_POSITION, 4] =
(self.amount_ranges.len() as u32).to_le_bytes();
let mut offset: usize = AMOUNT_RANGE_FIRST_EL_POSITION;
for range in &self.amount_ranges {
write_amount_type(&mut data, self.amount_type, offset, range);
offset += self.amount_type as usize;
write_length_type(&mut data, self.length_type, offset, range);
offset += self.length_type as usize;
}
match &self.participation_config {
Some(val) => {
data[offset] = 1;
data[offset + 1] = val.winner_constraint as u8;
data[offset + 2] = val.non_winning_constraint as u8;
offset += 3;
match val.fixed_price {
Some(val) => {
data[offset] = 1;
*array_mut_ref![data, offset + 1, 8] = val.to_le_bytes();
offset += 9;
}
None => {
data[offset] = 0;
offset += 1;
}
}
}
None => {
data[offset] = 0;
offset += 1;
}
}
match &self.participation_state {
Some(val) => {
data[offset] = 1;
*array_mut_ref![data, offset + 1, 8] =
val.collected_to_accept_payment.to_le_bytes();
}
None => {
data[offset] = 0;
}
}
Ok(())
}
pub fn save_participation_state(&mut self, a: &AccountInfo) {
let mut data = a.data.borrow_mut();
let mut offset: usize = AMOUNT_RANGE_FIRST_EL_POSITION
+ self.amount_ranges.len() * (self.amount_type as usize + self.length_type as usize);
offset += match &self.participation_config {
Some(val) => {
let mut total = 4;
if val.fixed_price.is_some() {
total += 8;
}
total
}
None => 1,
};
match &self.participation_state {
Some(val) => {
data[offset] = 1;
*array_mut_ref![data, offset + 1, 8] =
val.collected_to_accept_payment.to_le_bytes();
}
None => {
data[offset] = 0;
}
}
}
}
#[repr(C)]
#[derive(Clone, Debug, BorshSerialize, BorshDeserialize)]
pub struct AuctionWinnerTokenTypeTracker {
pub key: Key,
pub amount_type: TupleNumericType,
pub length_type: TupleNumericType,
pub amount_ranges: Vec<AmountRange>,
}
impl AuctionWinnerTokenTypeTracker {
pub fn created_size(&self, range_size: u64) -> usize {
return BASE_TRACKER_SIZE
+ (self.amount_type as usize + self.length_type as usize) * range_size as usize;
}
pub fn from_account_info(
a: &AccountInfo,
) -> Result<AuctionWinnerTokenTypeTracker, ProgramError> {
let data = &mut a.data.borrow();
if a.data_len() < BASE_TRACKER_SIZE {
return Err(MetaplexError::DataTypeMismatch.into());
}
if data[0] != Key::AuctionWinnerTokenTypeTrackerV1 as u8 {
return Err(MetaplexError::DataTypeMismatch.into());
}
let amount_type = AuctionWinnerTokenTypeTracker::get_amount_type(a)?;
let length_type = AuctionWinnerTokenTypeTracker::get_length_type(a)?;
let length_of_array = AuctionWinnerTokenTypeTracker::get_amount_range_len(a);
let mut offset: usize = 7;
let mut amount_ranges = vec![];
for _ in 0..length_of_array {
let amount = get_number_from_data(data, amount_type, offset);
offset += amount_type as usize;
let length = get_number_from_data(data, length_type, offset);
amount_ranges.push(AmountRange(amount, length));
offset += length_type as usize;
}
Ok(AuctionWinnerTokenTypeTracker {
key: Key::AuctionWinnerTokenTypeTrackerV1,
amount_type,
length_type,
amount_ranges,
})
}
pub fn get_amount_type(a: &AccountInfo) -> Result<TupleNumericType, ProgramError> {
let data = &a.data.borrow();
Ok(match data[1] {
1 => TupleNumericType::U8,
2 => TupleNumericType::U16,
4 => TupleNumericType::U32,
8 => TupleNumericType::U64,
_ => return Err(ProgramError::InvalidAccountData),
})
}
pub fn get_length_type(a: &AccountInfo) -> Result<TupleNumericType, ProgramError> {
let data = &a.data.borrow();
Ok(match data[2] {
1 => TupleNumericType::U8,
2 => TupleNumericType::U16,
4 => TupleNumericType::U32,
8 => TupleNumericType::U64,
_ => return Err(ProgramError::InvalidAccountData),
})
}
pub fn get_amount_range_len(a: &AccountInfo) -> u32 {
let data = &a.data.borrow();
return u32::from_le_bytes(*array_ref![data, 3, 4]);
}
pub fn add_one_where_positive_ranges_occur(
&mut self,
amount_ranges: &mut Vec<AmountRange>,
) -> ProgramResult {
let mut new_range: Vec<AmountRange> = vec![];
if self.amount_ranges.len() == 0 {
self.amount_ranges = amount_ranges
.iter()
.map(|x| {
if x.0 > 0 {
return AmountRange(1, x.1);
} else {
return AmountRange(0, x.1);
}
})
.collect();
return Ok(());
} else if amount_ranges.len() == 0 {
return Ok(());
}
let mut my_ctr: usize = 0;
let mut their_ctr: usize = 0;
while my_ctr < self.amount_ranges.len() || their_ctr < amount_ranges.len() {
let mut to_add: u64 = 0;
if their_ctr < amount_ranges.len() && amount_ranges[their_ctr].0 > 0 {
to_add = 1;
}
if my_ctr == self.amount_ranges.len() {
new_range.push(AmountRange(to_add, amount_ranges[their_ctr].1));
their_ctr += 1;
} else if their_ctr == amount_ranges.len() {
new_range.push(self.amount_ranges[my_ctr]);
my_ctr += 1;
} else if self.amount_ranges[my_ctr].1 > amount_ranges[their_ctr].1 {
self.amount_ranges[my_ctr].1 = self.amount_ranges[my_ctr]
.1
.checked_sub(amount_ranges[their_ctr].1)
.ok_or(MetaplexError::NumericalOverflowError)?;
new_range.push(AmountRange(
self.amount_ranges[my_ctr]
.0
.checked_add(to_add)
.ok_or(MetaplexError::NumericalOverflowError)?,
amount_ranges[their_ctr].1,
));
their_ctr += 1;
} else if amount_ranges[their_ctr].1 > self.amount_ranges[my_ctr].1 {
amount_ranges[their_ctr].1 = amount_ranges[their_ctr]
.1
.checked_sub(self.amount_ranges[my_ctr].1)
.ok_or(MetaplexError::NumericalOverflowError)?;
new_range.push(AmountRange(
self.amount_ranges[my_ctr]
.0
.checked_add(to_add)
.ok_or(MetaplexError::NumericalOverflowError)?,
self.amount_ranges[my_ctr].1,
));
my_ctr += 1;
} else if amount_ranges[their_ctr].1 == self.amount_ranges[my_ctr].1 {
new_range.push(AmountRange(
self.amount_ranges[my_ctr]
.0
.checked_add(to_add)
.ok_or(MetaplexError::NumericalOverflowError)?,
self.amount_ranges[my_ctr].1,
));
my_ctr += 1;
their_ctr += 1;
}
}
self.amount_ranges = new_range;
Ok(())
}
pub fn save(&self, a: &AccountInfo) {
let mut data = a.data.borrow_mut();
data[0] = Key::AuctionWinnerTokenTypeTrackerV1 as u8;
data[1] = self.amount_type as u8;
data[2] = self.length_type as u8;
*array_mut_ref![data, 3, 4] = (self.amount_ranges.len() as u32).to_le_bytes();
let mut offset: usize = 7;
for range in &self.amount_ranges {
write_amount_type(&mut data, self.amount_type, offset, range);
offset += self.amount_type as usize;
write_length_type(&mut data, self.length_type, offset, range);
offset += self.length_type as usize;
}
}
}
#[repr(C)]
#[derive(Clone, BorshSerialize, BorshDeserialize, Copy)]
pub struct BidRedemptionTicket {
pub key: Key,
}
impl BidRedemptionTicket {
pub fn check_ticket(
bid_redemption_info: &AccountInfo,
is_participation: bool,
safety_deposit_config_info: Option<&AccountInfo>,
) -> ProgramResult {
let bid_redemption_data = bid_redemption_info.data.borrow_mut();
if bid_redemption_data[0] != Key::BidRedemptionTicketV1 as u8
&& bid_redemption_data[0] != Key::BidRedemptionTicketV2 as u8
{
return Err(MetaplexError::DataTypeMismatch.into());
}
if bid_redemption_data[0] == Key::BidRedemptionTicketV1 as u8 {
let mut participation_redeemed = false;
if bid_redemption_data[1] == 1 {
participation_redeemed = true;
}
if is_participation && participation_redeemed {
return Err(MetaplexError::BidAlreadyRedeemed.into());
}
} else if bid_redemption_data[0] == Key::BidRedemptionTicketV2 as u8 {
match safety_deposit_config_info {
Some(config) => {
let order = SafetyDepositConfig::get_order(config);
let (position, mask) =
BidRedemptionTicket::get_index_and_mask(&bid_redemption_data, order)?;
if bid_redemption_data[position] & mask != 0 {
return Err(MetaplexError::BidAlreadyRedeemed.into());
}
}
None => return Err(MetaplexError::InvalidOperation.into()),
}
}
Ok(())
}
pub fn get_index_and_mask(
data: &RefMut<&mut [u8]>,
order: u64,
) -> Result<(usize, u8), ProgramError> {
let mut offset = 42;
if data[1] == 0 {
offset -= 8;
}
let u8_position = order
.checked_div(8)
.ok_or(MetaplexError::NumericalOverflowError)?
.checked_add(offset)
.ok_or(MetaplexError::NumericalOverflowError)?;
let position_from_right = 7 - order
.checked_rem(8)
.ok_or(MetaplexError::NumericalOverflowError)?;
let mask = u8::pow(2, position_from_right as u32);
Ok((u8_position as usize, mask))
}
pub fn save(
bid_redemption_info: &AccountInfo,
participation_redeemed: bool,
safety_deposit_config_info: Option<&AccountInfo>,
winner_index: Option<usize>,
auction_manager: Pubkey,
auction_manager_version: Key,
) -> ProgramResult {
let data = &mut bid_redemption_info.data.borrow_mut();
if data[0] == Key::BidRedemptionTicketV1 as u8
|| (data[0] == Key::Uninitialized as u8
&& auction_manager_version == Key::AuctionManagerV1)
{
let output = array_mut_ref![data, 0, 3];
let (key, participation_redeemed_ptr, _items_redeemed_ptr) =
mut_array_refs![output, 1, 1, 1];
*key = [Key::BidRedemptionTicketV1 as u8];
if participation_redeemed {
*participation_redeemed_ptr = [1];
}
} else if data[0] == Key::BidRedemptionTicketV2 as u8 || data[0] == Key::Uninitialized as u8
{
data[0] = Key::BidRedemptionTicketV2 as u8;
let mut offset = 2;
if let Some(index) = winner_index {
data[1] = 1;
offset += 8;
*array_mut_ref![data, 2, 8] = index.to_le_bytes();
} else {
data[1] = 0;
}
let auction_manager_ptr = array_mut_ref![data, offset, 32];
auction_manager_ptr.copy_from_slice(auction_manager.as_ref());
match safety_deposit_config_info {
Some(config) => {
let order = SafetyDepositConfig::get_order(config);
let (position, mask) = BidRedemptionTicket::get_index_and_mask(data, order)?;
data[position] = data[position] | mask;
}
None => return Err(MetaplexError::InvalidOperation.into()),
}
}
Ok(())
}
}