metaboss 0.49.0

The Metaplex NFT-standard Swiss Army Knife tool.
Documentation
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
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
use std::path::PathBuf;

use metaboss_lib::data::Priority;
use solana_program::pubkey::Pubkey;
use structopt::StructOpt;

use crate::{
    airdrop::AirdropSubcommands,
    check::CheckSubcommands,
    collections::GetCollectionItemsMethods,
    constants::DEFAULT_RATE_LIMIT,
    mint::Supply,
    snapshot::{HolderGroupKey, MintsGroupKey},
};

#[derive(Debug, StructOpt)]
#[structopt(name = "Metaboss", about = "Metaplex NFT 'Swiss Army Knife' tool.")]
pub struct Opt {
    /// RPC endpoint url to override using the Solana config or the hard-coded default
    #[structopt(short, long, global = true)]
    pub rpc: Option<String>,

    /// Timeout to override default value of 90 seconds
    #[structopt(short = "T", long, global = true, default_value = "90")]
    pub timeout: u64,

    /// Log level
    #[structopt(short, long, global = true, default_value = "off")]
    pub log_level: String,

    #[structopt(subcommand)]
    pub cmd: Command,
}

#[derive(Debug, StructOpt)]
pub enum Command {
    /// Parse Errors commands
    #[structopt(name = "parse-errors")]
    ParseErrors {
        #[structopt(subcommand)]
        parse_errors_file_subcommands: ParseErrorsSubCommands,
    },
    /// NFT collections commands
    #[structopt(name = "collections")]
    Collections {
        #[structopt(subcommand)]
        collections_subcommands: CollectionsSubcommands,
    },
    /// NFT uses commands
    #[structopt(name = "uses")]
    Uses {
        #[structopt(subcommand)]
        uses_subcommands: UsesSubcommands,
    },
    /// Airdrop assets to a list of addresses
    #[structopt(name = "airdrop")]
    Airdrop {
        #[structopt(subcommand)]
        airdrop_subcommands: AirdropSubcommands,
    },
    /// Full Burn an asset
    #[structopt(name = "burn")]
    Burn {
        #[structopt(subcommand)]
        burn_subcommands: BurnSubcommands,
    },
    /// Full Burn a NFT
    #[structopt(name = "burn-nft")]
    BurnNft {
        #[structopt(subcommand)]
        burn_nft_subcommands: BurnNftSubcommands,
    },
    /// Full Burn a print edition NFT
    #[structopt(name = "burn-print")]
    BurnPrint {
        #[structopt(subcommand)]
        burn_print_subcommands: BurnPrintSubcommands,
    },
    /// Check specific metadata values for a list of NFTs
    #[structopt(name = "check")]
    Check {
        #[structopt(subcommand)]
        check_subcommands: CheckSubcommands,
    },
    /// Create accounts
    #[structopt(name = "create")]
    Create {
        #[structopt(subcommand)]
        create_subcommands: CreateSubcommands,
    },
    /// Decode on-chain data into JSON format
    #[structopt(name = "decode")]
    Decode {
        #[structopt(subcommand)]
        decode_subcommands: DecodeSubcommands,
    },
    /// Derive PDAs for various account types
    Derive {
        #[structopt(subcommand)]
        derive_subcommands: DeriveSubcommands,
    },
    /// Extend an on-chain program's binary size
    ExtendProgram {
        program_address: Pubkey,
        additional_bytes: u32,
        /// Path to payer keypair file
        #[structopt(short, long)]
        keypair_path: Option<String>,
    },
    /// Find things.
    #[structopt(name = "find")]
    Find {
        #[structopt(subcommand)]
        find_subcommands: FindSubcommands,
    },
    /// Mint new NFTs from JSON files
    #[structopt(name = "mint")]
    Mint {
        #[structopt(subcommand)]
        mint_subcommands: MintSubcommands,
    },
    /// Update various aspects of NFTs
    #[structopt(name = "update")]
    Update {
        #[structopt(subcommand)]
        update_subcommands: UpdateSubcommands,
    },
    /// Set non-Data struct values for a NFT
    #[structopt(name = "set")]
    Set {
        #[structopt(subcommand)]
        set_subcommands: SetSubcommands,
    },
    /// Sign metadata for an unverified creator
    #[structopt(name = "sign")]
    Sign {
        #[structopt(subcommand)]
        sign_subcommands: SignSubcommands,
    },
    /// Get snapshots of various blockchain states
    #[structopt(name = "snapshot")]
    Snapshot {
        #[structopt(subcommand)]
        snapshot_subcommands: SnapshotSubcommands,
    },
    /// Transfer Metaplex assets
    #[structopt(name = "transfer")]
    Transfer {
        #[structopt(subcommand)]
        transfer_subcommands: TransferSubcommands,
    },
    /// Verify Creators
    #[structopt(name = "verify")]
    Verify {
        #[structopt(subcommand)]
        verify_subcommands: VerifySubcommands,
    },
    /// Unverify Creators
    #[structopt(name = "unverify")]
    Unverify {
        #[structopt(subcommand)]
        unverify_subcommands: UnverifySubcommands,
    },
}

#[derive(Debug, StructOpt)]
pub enum BurnSubcommands {
    /// Burn an asset.
    #[structopt(
        name = "asset",
        after_help = "EXAMPLES:\nmetaboss burn asset --mint-account <MINT_ADDRESS>"
    )]
    Asset {
        /// Path to the owner keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Token mint account of the asset
        #[structopt(short = "a", long)]
        mint_account: String,

        /// Token account of the asset if not an ATA
        #[structopt(short = "t", long)]
        token_account: Option<String>,

        /// Amount, defaults to 1.
        #[structopt(long, default_value = "1")]
        amount: u64,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Burn a batch of assets.
    #[structopt(name = "asset-all")]
    AssetAll {
        /// Path to the owner keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to the mint list file
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum BurnNftSubcommands {
    /// Burn one NFT.
    #[structopt(name = "one")]
    One {
        /// Path to the owner keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Token mint account of the asset
        #[structopt(short = "a", long)]
        mint_account: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Burn a batch of NFTs.
    #[structopt(name = "all")]
    All {
        /// Path to the owner keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to the mint list file
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum BurnPrintSubcommands {
    /// Burn one NFT.
    #[structopt(name = "one")]
    One {
        /// Path to the owner keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Token mint account of the print edition NFT
        #[structopt(short, long)]
        account: String,

        /// Token mint account of the master edition NFT
        #[structopt(short, long)]
        master_edition: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Burn a batch of NFTs.
    #[structopt(name = "all")]
    All {
        /// Path to the owner keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to the mint list file
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Master Edition mint account
        #[structopt(short, long)]
        master_mint: String,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum CreateSubcommands {
    /// Create a metadata account for an existing SPL token mint.
    Metadata {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Existing mint account created elsewhere
        #[structopt(short = "a", long)]
        mint: String,

        /// Path to JSON file of metadata
        #[structopt(short, long)]
        metadata: String,

        /// Create metadata account as immutable.
        #[structopt(long)]
        immutable: bool,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,

        /// Use full compute units, 200k CU, instead of simulating the expected amount.
        #[structopt(long)]
        full_compute: bool,
    },

    /// Create a new SPL Token mint and metadata account.
    Fungible {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to JSON file of metadata
        #[structopt(short, long)]
        metadata: String,

        /// Vanity mint: path to a keypair file to use for the mint address.
        #[structopt(long)]
        mint_path: Option<String>,

        /// SPL token decmials, defaults to 0.
        #[structopt(short, long, default_value = "0")]
        decimals: u8,

        /// Mint this amount to your keypair.
        #[structopt(short, long)]
        initial_supply: Option<f64>,

        /// Create metadata account as immutable.
        #[structopt(long)]
        immutable: bool,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,

        /// Use full compute units, 200k CU, instead of simulating the expected amount.
        #[structopt(long)]
        full_compute: bool,
    },
    /// Create a new SPL22 Mint and optional metadata from Token Extensions
    #[structopt(name = "fungible-22")]
    Fungible22 {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to JSON file of extensions
        #[structopt(short, long)]
        extensions: String,

        /// Vanity mint: path to a keypair file to use for the mint address.
        #[structopt(long)]
        mint_path: Option<String>,

        /// SPL token decmials, defaults to 0.
        #[structopt(short, long, default_value = "0")]
        decimals: u8,

        /// Mint this amount to your keypair.
        #[structopt(short, long)]
        initial_supply: Option<u64>,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },

    /// Create a SPL22 Token account from the Token Extensions Program
    #[structopt(name = "fungible-token-22")]
    Fungible22Token {
        /// Path to the token creator keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Token Mint address
        #[structopt(short = "M", long)]
        mint_address: String,

        /// Path to JSON file of extensions
        #[structopt(short, long)]
        extensions: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },

    // Decorate an existing mint + metadata account with a master edition account.
    MasterEdition {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to the mint authority keypair file if different from update authority
        #[structopt(short, long)]
        mint_authority: Option<PathBuf>,

        /// Mint account
        #[structopt(short = "a", long)]
        mint: Pubkey,

        /// Maximum number of print editions that can be minted.
        /// -1 means no limit.
        #[structopt(short = "s", long, default_value = "0")]
        max_supply: i64,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum UsesSubcommands {
    /// Approve a delegate authority that is allowed to make changes to the NFT's Use data.
    #[structopt(name = "approve-authority")]
    ApproveAuthority {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// NFT mint address
        #[structopt(short, long)]
        mint_nft: String,

        /// Delegate use authority address
        #[structopt(short, long)]
        delegate_use_authority: String,

        /// NFT Owner Token Account
        #[structopt(short, long)]
        token_account_nft: String,

        /// Burner Program ID
        #[structopt(short, long)]
        burner_program_id: String,

        /// Number of uses
        #[structopt(short, long)]
        number_of_uses: u64,
    },
    /// Revoke a delegate authority from being allowed to make changes to the NFT's Use data.
    #[structopt(name = "revoke-authority")]
    RevokeAuthority {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// NFT mint address
        #[structopt(short, long)]
        mint_nft: String,

        /// Delegate use authority address
        #[structopt(short, long)]
        delegate_use_authority: String,

        /// NFT Owner Token Account
        #[structopt(short, long)]
        token_account_nft: String,
    },
    /// Use a NFT, following the on-chain logic for burning it if set.
    #[structopt(name = "utilize")]
    Utilize {
        /// Path to the use authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// NFT mint address
        #[structopt(short, long)]
        mint_nft: String,

        /// NFT Holder/Owner address
        #[structopt(short, long)]
        holder_nft: String,

        /// NFT Owner Token Account
        #[structopt(short, long)]
        token_account_nft: String,

        /// Optional Burner Program ID (if token use is set to Burn)
        #[structopt(short, long)]
        burner_program_id: Option<String>,

        /// Option if the signing keypair is a use authority delegate.
        #[structopt(short = "d", long)]
        is_delegate: bool,
    },
}

#[derive(Debug, StructOpt)]
pub enum CollectionsSubcommands {
    /// Verify collection on an NFT.
    #[structopt(name = "verify")]
    VerifyCollection {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Collection mint address
        #[structopt(short, long)]
        collection_mint: String,

        /// NFT mint address
        #[structopt(short = "n", long)]
        nft_mint: String,

        /// Option if the signing keypair is a collection authority delegate.
        #[structopt(short = "d", long)]
        is_delegate: bool,
    },
    /// Set an NFT's collection as unverified.
    #[structopt(name = "unverify")]
    UnverifyCollection {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Collection mint address
        #[structopt(short, long)]
        collection_mint: String,

        /// NFT mint address
        #[structopt(short = "n", long)]
        nft_mint: String,

        /// Option if the signing keypair is a collection authority delegate.
        #[structopt(short = "d", long)]
        is_delegate: bool,
    },
    /// Set collection value on NFT and verify in the same step.
    #[structopt(name = "set-and-verify")]
    SetAndVerifyCollection {
        /// Path to the collection update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Collection mint address
        #[structopt(short, long)]
        collection_mint: String,

        /// NFT mint address
        #[structopt(short = "n", long)]
        nft_mint: String,

        /// NFT update authority: deprecated--does not need to be passed in
        #[deprecated]
        #[structopt(short, long)]
        update_authority_nft: Option<String>,

        /// Option if the signing keypair is a collection authority delegate.
        #[structopt(short = "d", long)]
        is_delegate: bool,
    },
    /// Approve a delegate authority that is allowed to change collection data on the NFT.
    #[structopt(name = "approve-authority")]
    ApproveAuthority {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Collection mint address
        #[structopt(short, long)]
        collection_mint: String,

        /// Delegate authority address
        #[structopt(short, long)]
        delegate_authority: String,
    },
    /// Revoke the delegate authority from being allowed to change collection data on the NFT.
    #[structopt(name = "revoke-authority")]
    RevokeAuthority {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Collection mint address
        #[structopt(short, long)]
        collection_mint: String,

        /// Delegate authority address
        #[structopt(short, long)]
        delegate_authority: String,
    },
    /// Set the size of a collection that doesn't already have the size set.
    #[structopt(name = "set-size")]
    SetSize {
        /// Path to the collection update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Collection mint address
        #[structopt(short, long)]
        collection_mint: String,

        /// Collection size
        #[structopt(short, long)]
        size: u64,
    },
    /// Migrate a collection to the on-chain standard.
    #[structopt(name = "migrate")]
    Migrate {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Collection mint address
        #[structopt(short, long)]
        mint_address: String,

        /// Candy Machine address if using the Candy Machine as the collection
        #[structopt(short, long)]
        candy_machine_id: Option<String>,

        /// Mint list -- list of all mints addresses that are part of the collection
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Retry items from a Metaboss cache file.
        #[structopt(long)]
        cache_file: Option<String>,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Output file path for the cache file. Defaults to mb-cache-migrate.json.
        #[structopt(short, long)]
        output_file: Option<String>,
    },
    /// Get all items belonging to a collection parent.
    #[structopt(name = "get-items")]
    GetItems {
        /// Collection parent mint address
        #[structopt(short, long)]
        collection_mint: String,

        /// Method to use for getting collection items. See docs.
        #[structopt(short, long, default_value = "the_index_io")]
        method: GetCollectionItemsMethods,

        /// API Key for an indexer, if used.
        #[structopt(short = "k", long)]
        api_key: Option<String>,
    },
    /// Check a list of items belong to a collection parent.
    #[structopt(name = "check-items")]
    CheckItems {
        /// Collection parent mint address
        #[structopt(short, long)]
        collection_mint: String,

        /// List of items to check.
        #[structopt(short = "L", long)]
        item_list: String,

        /// Show full results in a JSON file.
        #[structopt(long)]
        debug: bool,
    },
}

#[derive(Debug, StructOpt)]
pub enum DecodeSubcommands {
    /// Decode BPF upgradeable loader state account data.
    BpfUpgradeableState {
        /// BpfUpgradeableState address
        #[structopt(short = "a", long)]
        bpf_upgradeable_state_address: String,
    },
    /// Decode Metadata from metadata account directly.
    Metadata {
        /// Metadata address
        #[structopt(short = "a", long)]
        metadata_address: String,

        /// Path to directory to save output file.
        #[structopt(short, long, default_value = ".")]
        output: String,
    },
    /// Decode Mint account data.
    MintAccount {
        /// Mint address
        #[structopt(short = "a", long)]
        mint_address: String,
    },
    /// Decode Token account data.
    TokenAccount {
        /// Token account address
        #[structopt(short = "a", long)]
        token_address: String,
    },
    /// Decode a metadata delegate record account.
    MetadataDelegate {
        /// MetadataDelegate address
        #[structopt(short = "a", long)]
        metadata_delegate_record: String,
    },
    /// Decode a TokenRecord from a TokenRecord account or a mint account
    TokenRecord {
        /// TokenRecord address
        #[structopt(short = "a", long)]
        token_record: Option<String>,

        /// Mint address
        #[structopt(short = "m", long)]
        mint: Option<String>,
    },
    /// Decode a collection authority record account.
    CollectionDelegate {
        /// CollectionAuthorityRecord address
        #[structopt(short = "a", long)]
        authority_record: String,
    },
    /// Decode a use authority record account.
    UseDelegate {
        /// UseDelegate address
        #[structopt(short = "a", long)]
        use_record: String,
    },
    /// Decode a mint account's metadata
    #[structopt(name = "mint")]
    Mint {
        /// Single mint account to decode
        #[structopt(short, long)]
        account: Option<String>,

        /// Use this to write the full metadata struct to the output
        #[structopt(long)]
        full: bool,

        /// Path to JSON file containing a list of mint accounts to decode
        #[structopt(short = "L", long)]
        list_file: Option<String>,

        /// Decode into raw bytes
        #[structopt(long)]
        raw: bool,

        /// Path to directory to save output files.
        #[structopt(short, long, default_value = ".")]
        output: String,
    },
    /// Decode a mint account's master edition
    Master {
        #[structopt(short, long)]
        account: String,
    },
    /// Decode a mint account's print edition
    Edition {
        #[structopt(short, long)]
        account: String,
    },
    /// Decode a mint account's edition marker account
    EditionMarker {
        #[structopt(short, long)]
        account: String,

        #[structopt(short, long)]
        edition_num: Option<u64>,

        #[structopt(short, long)]
        marker_num: Option<u64>,
    },
    /// Decode a token-auth-rules rule set
    RuleSet {
        /// Rule Set pubkey
        rule_set: Pubkey,

        /// Rule Set revision, defaults to latest
        #[structopt(short = "R", long)]
        revision: Option<usize>,
    },
    /// Decode a pubkey from a u8 array
    Pubkey {
        /// Pubkey
        pubkey: String,
    },
    /// Get Account's raw bytes
    Account {
        /// Account address
        account: Pubkey,

        /// Optional start index
        #[structopt(short, long)]
        start: Option<usize>,

        /// Optional end index
        #[structopt(short, long)]
        end: Option<usize>,
    },
}

#[derive(Debug, StructOpt)]
pub enum DeriveSubcommands {
    /// Derive token account for Token program and Token 22 program
    #[structopt(name = "token-account")]
    TokenAccount {
        /// The token mint address
        mint: String,
        /// The owner address to derive the token account for
        owner: Option<String>,
        /// Use Token 22 (Extensions) program
        #[structopt(long, short)]
        token_22: bool,
    },

    /// Derive generic PDA from seeds and program id
    #[structopt(name = "pda")]
    Pda {
        /// Seeds to derive PDA from
        seeds: String,
        /// Program id to derive PDA from
        program_id: String,
    },

    /// Derive Metadata PDA
    #[structopt(name = "metadata")]
    Metadata { mint_account: String },

    /// Derive Edition PDA
    #[structopt(name = "edition")]
    Edition { mint_account: String },

    /// Derive Edition Marker PDA
    #[structopt(name = "edition-marker")]
    EditionMarker {
        mint_account: String,
        edition_num: u64,
    },

    /// Derive CMV2 PDA
    #[structopt(name = "cmv2-creator")]
    CMV2Creator { candy_machine_id: String },

    #[structopt(name = "token-record")]
    TokenRecord {
        mint_account: String,
        token_account: String,
    },

    #[structopt(name = "collection-delegate")]
    CollectionDelegate {
        collection_mint: Pubkey,
        collection_authority: Pubkey,
        delegate: Pubkey,
    },
}

#[derive(Debug, StructOpt)]
pub enum FindSubcommands {
    /// Find any missing editions for a Master NFT mint account.
    #[structopt(name = "missing-editions")]
    MissingEditions {
        #[structopt(short, long)]
        account: String,
    },
    #[structopt(name = "error")]
    Error {
        /// Error code
        error_code: String,
    },
}

#[derive(Debug, StructOpt)]
pub enum MintSubcommands {
    /// Mint a normal SPL/SPL22 Token from the Token/Token Extensions Program
    Fungible {
        /// Path to the mint_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Token Mint address
        #[structopt(short = "M", long)]
        mint_address: String,

        /// Receiving address, if different from mint authority.
        #[structopt(short = "R", long)]
        receiver: Option<String>,

        /// Amount of tokens to mint
        #[structopt(short, long)]
        amount: u64,

        /// Is Mint Token22
        #[structopt(short, long)]
        token_22: bool,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Mint an asset from the new Token Metadata Program unified handlers.
    Asset {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Receiving address, if different from update authority.
        #[structopt(short = "R", long)]
        receiver: Option<String>,

        /// Path to mint keypair file, if minting from existing keypair.
        #[structopt(short, long)]
        mint_path: Option<String>,

        /// Asset data
        #[structopt(short = "d", long)]
        asset_data: PathBuf,

        /// Mint decimals for fungible tokens.
        #[structopt(long, default_value = "0")]
        decimals: u8,

        /// Amount of tokens to mint, for NonFungible types this must be 1.
        #[structopt(long, default_value = "1")]
        amount: u64,

        /// Max supply of print editions. Only applies to NonFungible types.
        /// 0 for no prints, n for n prints, 'unlimited' for unlimited prints.
        #[structopt(short = "s", long)]
        max_print_edition_supply: Option<Supply>,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Mint a single NFT from a JSON file
    #[structopt(name = "one")]
    One {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Receiving address, if different from update authority.
        #[structopt(short = "R", long)]
        receiver: Option<String>,

        /// Path to the keypair of the mint account to use for the new NFT
        #[structopt(long)]
        mint_path: Option<String>,

        /// On-chain formatted metadata for the new NFT
        #[structopt(short = "d", long)]
        nft_data_file: Option<String>,

        /// Link to external metadata to use to create the NFT
        #[structopt(short = "u", long)]
        external_metadata_uri: Option<String>,

        /// Mint the NFT with immutable data fields
        #[structopt(short, long)]
        immutable: bool,

        /// Mint the NFT with primary_sale_happened set to true
        #[structopt(short, long)]
        primary_sale_happened: bool,

        /// Maximum number of editions. Defaults to zero, meaning no editions allowed.
        #[structopt(short = "e", long, default_value = "0")]
        max_editions: i64,

        /// Sign NFT after minting it
        #[structopt(long)]
        sign: bool,

        /// Create a sized collection parent NFT
        #[structopt(long)]
        sized: bool,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Mint one or more editions from a Master NFT.
    #[structopt(name = "editions")]
    Editions {
        /// Path to the update_authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Master Edition NFT mint account/token address.
        #[structopt(short, long)]
        account: String,

        /// Receiving address, if different from update authority.
        #[structopt(short = "R", long)]
        receiver: Option<String>,

        /// Mint the next n editions in order.
        #[structopt(short, long)]
        next_editions: Option<u64>,

        /// Mint the provided specific editions e.g.: --specific-editions 1,7,10
        #[structopt(short = "s", long)]
        specific_editions: Option<Vec<u64>>,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Find any missing editions for a Master NFT.
    #[structopt(name = "missing-editions")]
    MissingEditions {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        #[structopt(short, long)]
        account: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    #[structopt(
        name = "list",
        after_help = "EXAMPLES:\nmetaboss mint list --nft-data-dir <PATH_TO_METADATA_DIR>"
    )]
    /// Mint a list of NFTs from a directory of JSON files
    List {
        /// Path to the update_authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Receiving address, if different from update authority
        #[structopt(short = "R", long)]
        receiver: Option<String>,

        /// Directory of on-chain formatted metadata files for the new NFTs
        #[structopt(short = "d", long)]
        nft_data_dir: Option<String>,

        /// List of external metadata links to use to create the NFTs
        #[structopt(short = "u", long)]
        external_metadata_uris: Option<String>,

        /// Mint the NFTs with immutable data fields
        #[structopt(short, long)]
        immutable: bool,

        /// Mint the NFTs with primary_sale_happened set to true
        #[structopt(short, long)]
        primary_sale_happened: bool,

        /// Sign NFTs after minting them
        #[structopt(long)]
        sign: bool,

        /// Track whether URIs are successfully minted or not, and output to
        /// `minted` file with URIs -> Mint Accounts or to `unminted` file
        /// with list of unminted URIs for easy continuation of command
        #[structopt(long)]
        track: bool,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum SetSubcommands {
    /// Set primary sale happened to true, enabling secondary sale royalties.
    #[structopt(name = "secondary-sale")]
    PrimarySaleHappened {
        /// Path to the update authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Set primary sale happened to true for a list of mint addresses, enabling secondary sale royalties.
    #[structopt(name = "secondary-sale-all")]
    PrimarySaleHappenedAll {
        /// Path to the update authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint list
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Set update authority to a new account
    #[structopt(name = "update-authority")]
    UpdateAuthority {
        /// Path to the update authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// New update authority address
        #[structopt(short, long)]
        new_update_authority: String,

        //Path to the payers's keypair file
        #[structopt(short = "p", long)]
        keypair_payer: Option<String>,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Set update authority on multiple accounts to a new account
    #[structopt(name = "update-authority-all")]
    UpdateAuthorityAll {
        /// Path to the update authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to the optional payers's keypair file
        #[structopt(short, long)]
        payer: Option<String>,

        /// Path to mint list file
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// New update authority address
        #[structopt(short, long)]
        new_authority: String,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Set is-mutable to false, preventing any future updates to the NFT
    #[structopt(name = "immutable")]
    Immutable {
        /// Path to the update authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Set is-mutable to false for a list of NFTs.
    ImmutableAll {
        /// Path to the update authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint list
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Set an asset to the correct Token Standard.
    TokenStandard {
        /// Path to the update authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Set all assets in a list to be the correct Token Standard.
    TokenStandardAll {
        /// Path to the update authority's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint list
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum SignSubcommands {
    /// Sign the metadata for a single mint account
    #[structopt(name = "one")]
    One {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account to sign
        #[structopt(short, long)]
        account: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Sign all metadata from a JSON list or for a given candy machine id / creator
    #[structopt(name = "all")]
    All {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Creator to filter accounts by (for CM v2 use --v2 if candy_machine account is passed)
        #[structopt(short, long)]
        creator: Option<String>,

        /// CM creator index to filter by
        #[structopt(short, long, default_value = "0")]
        position: usize,

        /// Candy machine v2 id
        #[structopt(long = "v2")]
        v2: bool,

        /// Candy machine v3 id
        #[structopt(long = "v3")]
        v3: bool,

        /// Path to JSON file with list of mint accounts to sign
        #[structopt(short, long)]
        mint_accounts_file: Option<String>,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum SnapshotSubcommands {
    /// Get all current holders of NFTs by group
    Holders {
        /// Pubkey of the group to find holders for.
        group_value: Pubkey,

        /// Type of group to filter by: mint, mcc, fvca.
        #[structopt(short, long)]
        group_key: HolderGroupKey,

        /// Path to directory to save output file
        #[structopt(short, long, default_value = ".")]
        output: PathBuf,

        /// Delay between DAS API requests in milliseconds
        #[structopt(short = "D", long, default_value = "500")]
        delay: u64,
    },
    /// Get all mint accounts by various group types
    Mints {
        /// Pubkey of the group to find holders for.
        group_value: Pubkey,

        /// Type of group to filter by: authority, mcc, creator.
        #[structopt(short, long)]
        group_key: MintsGroupKey,

        /// For creators, which position to check as the verified creator.
        /// Defaults to 0, for the First Verified Creator Address.
        #[structopt(short = "p", long, default_value = "0")]
        creator_position: usize,

        /// Path to directory to save output file
        #[structopt(short, long, default_value = ".")]
        output: PathBuf,

        /// Delay between DAS API requests in milliseconds; defaults to 500
        #[structopt(short = "D", long, default_value = "500")]
        delay: u64,
    },
    /// Get all mint accounts by First Verified Creator Address
    Fvca {
        /// First verified creator address.
        creator: Option<Pubkey>,

        /// Path to directory to save output file
        #[structopt(short, long, default_value = ".")]
        output: PathBuf,

        /// Delay between DAS API requests in milliseconds; defaults to 500
        #[structopt(short = "D", long, default_value = "500")]
        delay: u64,
    },
    /// Get all mint accounts by Metaplex Certified Collection key
    Mcc {
        /// Collection parent mint address.
        mcc_id: Pubkey,

        /// Path to directory to save output file
        #[structopt(short, long, default_value = ".")]
        output: PathBuf,

        /// Delay between DAS API requests in milliseconds; defaults to 500
        #[structopt(short = "D", long, default_value = "500")]
        delay: u64,
    },
    /// Get all current holders of NFTs by legacy gPA calls
    #[structopt(name = "holders-gpa")]
    HoldersGpa {
        /// Update authority to filter accounts by.
        #[structopt(short, long)]
        update_authority: Option<String>,

        /// Creator to filter accounts by (for CM v2 use --v2, for CM v3 use --v3 if candy_machine account is passed)
        #[structopt(short, long)]
        creator: Option<String>,

        /// CM creator index to filter by
        #[structopt(short, long, default_value = "0")]
        position: usize,

        /// Candy machine v2 id
        #[structopt(long = "v2")]
        v2: bool,

        /// Candy machine v3 id
        #[structopt(long = "v3")]
        v3: bool,

        /// Path to JSON file with list of mint accounts to sign
        #[structopt(short, long)]
        mint_accounts_file: Option<String>,

        /// Allow fetching items with unverified creator or update authority.
        #[structopt(long)]
        allow_unverified: bool,

        /// Path to directory to save output files.
        #[structopt(short, long, default_value = ".")]
        output: String,
    },
    /// Get all mint accounts using legacy getProgramAccounts call
    #[structopt(name = "mints-gpa")]
    MintsGpa {
        /// Creator to filter accounts by (for CM v2 use --v2, for CM v3 use --v3 if candy_machine account is passed)
        #[structopt(short, long)]
        creator: Option<String>,

        /// CM creator index to filter by
        #[structopt(short, long, default_value = "0")]
        position: usize,

        /// Update authority to filter accounts by.
        #[structopt(short, long)]
        update_authority: Option<String>,

        /// Candy machine v2 id
        #[structopt(long = "v2")]
        v2: bool,

        /// Candy machine v3 id
        #[structopt(long = "v3")]
        v3: bool,

        /// Allow fetching items with unverified creator or update authority.
        #[structopt(long)]
        allow_unverified: bool,

        /// Path to directory to save output file
        #[structopt(short, long, default_value = ".")]
        output: String,
    },
    /// Get all print edition mint accounts for a given master edition mint
    Prints {
        /// Master edition mint address.
        #[structopt(short = "m", long)]
        master_mint: String,

        /// First verified creator of editions, defaults to master edition FVC
        #[structopt(short, long)]
        creator: Option<String>,

        /// Path to directory to save output file
        #[structopt(short, long, default_value = ".")]
        output: String,
    },
}

#[derive(Debug, StructOpt)]
pub enum UpdateSubcommands {
    /// Update the rule set of a pNFT.
    RuleSet {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of token to transfer
        #[structopt(short = "a", long)]
        mint: String,

        /// New rule set pubkey
        #[structopt(short, long)]
        new_rule_set: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the rule set of a batch of pNFTs.
    RuleSetAll {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to the mint list file
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// New rule set pubkey
        #[structopt(short, long)]
        new_rule_set: String,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Remove the rule set of a pNFT.
    ClearRuleSet {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of token to transfer
        #[structopt(short = "a", long)]
        mint: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Remove the rule set from a batch of pNFTs.
    ClearRuleSetAll {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to the mint list file
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the seller fee basis points field inside the data struct on an NFT
    #[structopt(name = "sfbp")]
    SellerFeeBasisPoints {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// New seller fee basis points for the metadata
        #[structopt(short, long)]
        new_sfbp: u16,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the seller fee basis points field inside the data struct on an NFT
    #[structopt(name = "sfbp-all")]
    SellerFeeBasisPointsAll {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Path to the mint list file
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// New seller fee basis points for the metadata
        #[structopt(short, long)]
        new_sfbp: u16,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the name field inside the data struct on an NFT
    #[structopt(name = "name")]
    Name {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// New name for the metadata
        #[structopt(short, long)]
        new_name: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the symbol field inside the data struct on an NFT
    #[structopt(name = "symbol")]
    Symbol {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// New name for the metadata
        #[structopt(short, long)]
        new_symbol: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update all symbols for a list of mint addresses.
    SymbolAll {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint list
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// New symbol: a string up to 10 characters long
        #[structopt(short, long)]
        new_symbol: String,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the creators field by position inside the data struct on an NFT
    #[structopt(name = "creators")]
    Creators {
        /// Path to the update authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// New creators in the format: address1:share:verified,address2:share:verified,...
        #[structopt(short = "n", long)]
        new_creators: String,

        /// Should be appended instead of overwriting
        #[structopt(short = "A", long = "append")]
        append: bool,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update all the creators fields for a list of mint addresses.
    #[structopt(name = "creators-all")]
    CreatorsAll {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint list
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// New creators in the format: address1:share:verified,address2:share:verified,...
        #[structopt(short, long)]
        new_creators: String,

        /// Should be appended instead of overwriting
        #[structopt(short = "A", long = "append")]
        append: bool,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the data struct on a NFT
    #[structopt(name = "data")]
    Data {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// Path to JSON file containing new data
        #[structopt(short, long)]
        new_data_file: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the data struct on a list of NFTs
    #[structopt(name = "data-all")]
    DataAll {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Path to directory containing JSON files with new data
        #[structopt(short, long)]
        data_dir: String,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the metadata URI, keeping the rest of the data the same
    #[structopt(name = "uri")]
    Uri {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// New uri
        #[structopt(short = "u", long)]
        new_uri: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the metadata URI on a list of mint accounts
    #[structopt(name = "uri-all")]
    UriAll {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// JSON file with list of mint accounts and new URIs
        #[structopt(short = "u", long)]
        new_uris_file: String,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Update the Uses data on a NFT
    #[structopt(name = "uses")]
    Uses {
        /// Path to the creator's keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of corresponding metadata to update
        #[structopt(short, long)]
        account: String,

        /// Method: burn, multiple, single
        #[structopt(short, long)]
        method: String,

        /// New uses
        #[structopt(short = "R", long)]
        remaining: u64,

        /// New max uses
        #[structopt(short, long)]
        total: u64,

        /// Override existing values
        #[structopt(long)]
        overwrite: bool,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum TransferSubcommands {
    /// Transfer a Metaplex asset.
    Asset {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Receiving address, if different from update authority.
        #[structopt(short = "R", long)]
        receiver: String,

        /// Mint account of token to transfer
        #[structopt(short, long)]
        mint: String,

        /// Amount of tokens to transfer, for NonFungible types this must be 1.
        #[structopt(long, default_value = "1")]
        amount: u64,

        /// Receiver token account, if not provided an ATA will be created.
        #[structopt(long)]
        receiver_account: Option<String>,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum VerifySubcommands {
    /// Verify a creator for a single NFT.
    Creator {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of token to transfer
        #[structopt(short = "a", long)]
        mint: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Verify a creator for a list of NFTs.
    CreatorAll {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint list
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum UnverifySubcommands {
    /// Unverify a creator for a single NFT.
    Creator {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint account of token to transfer
        #[structopt(short = "a", long)]
        mint: String,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
    /// Unverify a creator for a list of NFTs.
    CreatorAll {
        /// Path to the update_authority keypair file
        #[structopt(short, long)]
        keypair: Option<String>,

        /// Mint list
        #[structopt(short = "L", long)]
        mint_list: Option<String>,

        /// Cache file
        #[structopt(short, long)]
        cache_file: Option<String>,

        /// Maximum number of requests per second
        #[structopt(short = "R", long, default_value = DEFAULT_RATE_LIMIT)]
        rate_limit: usize,

        /// Maximum retries: retry failed items up to this many times.
        #[structopt(long, default_value = "0")]
        retries: u8,

        /// Priority of the transaction: higher priority costs more.
        /// See https://metaboss.rs/priority-fees.html for more details.
        #[structopt(short = "P", long, default_value = "none")]
        priority: Priority,
    },
}

#[derive(Debug, StructOpt)]
pub enum ParseErrorsSubCommands {
    #[structopt(name = "file")]
    File,
}