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
use anchor_lang::prelude::*;
#[account]
#[derive(Default, Debug)]
pub struct CandyMachine {
pub authority: Pubkey,
pub wallet: Pubkey,
pub token_mint: Option<Pubkey>,
pub items_redeemed: u64,
pub data: CandyMachineData,
}
#[account]
#[derive(Default, Debug)]
pub struct CollectionPDA {
pub mint: Pubkey,
pub candy_machine: Pubkey,
}
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Default, Debug)]
pub struct CandyMachineData {
pub uuid: String,
pub price: u64,
pub symbol: String,
pub seller_fee_basis_points: u16,
pub max_supply: u64,
pub is_mutable: bool,
pub retain_authority: bool,
pub go_live_date: Option<i64>,
pub end_settings: Option<EndSettings>,
pub creators: Vec<Creator>,
pub hidden_settings: Option<HiddenSettings>,
pub whitelist_mint_settings: Option<WhitelistMintSettings>,
pub items_available: u64,
pub gatekeeper: Option<GatekeeperConfig>,
}
#[derive(AnchorSerialize, AnchorDeserialize, Debug)]
pub struct ConfigLine {
pub name: String,
pub uri: String,
}
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Debug)]
pub struct EndSettings {
pub end_setting_type: EndSettingType,
pub number: u64,
}
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Debug)]
pub enum EndSettingType {
Date,
Amount,
}
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Debug)]
pub struct Creator {
pub address: Pubkey,
pub verified: bool,
pub share: u8,
}
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Default, Debug)]
pub struct HiddenSettings {
pub name: String,
pub uri: String,
pub hash: [u8; 32],
}
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Debug)]
pub struct WhitelistMintSettings {
pub mode: WhitelistMintMode,
pub mint: Pubkey,
pub presale: bool,
pub discount_price: Option<u64>,
}
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Eq, PartialEq, Debug)]
pub enum WhitelistMintMode {
BurnEveryTime,
NeverBurn,
}
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Debug)]
pub struct GatekeeperConfig {
pub gatekeeper_network: Pubkey,
pub expire_on_use: bool,
}