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
use crate::{constants::FREEZE_FEE, CandyError};
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,
}
impl CollectionPDA {
pub const PREFIX: &'static str = "collection";
}
#[account]
#[derive(Default, Debug, PartialEq, Eq)]
pub struct FreezePDA {
pub candy_machine: Pubkey, pub allow_thaw: bool, pub frozen_count: u64, pub mint_start: Option<i64>, pub freeze_time: i64, pub freeze_fee: u64, }
impl FreezePDA {
pub const SIZE: usize = 8 + 32 + 32 + 1 + 8 + 1 + 8 + 8 + 8;
pub const PREFIX: &'static str = "freeze";
pub fn init(&mut self, candy_machine: Pubkey, mint_start: Option<i64>, freeze_time: i64) {
self.candy_machine = candy_machine;
self.allow_thaw = false;
self.frozen_count = 0;
self.mint_start = mint_start;
self.freeze_time = freeze_time;
self.freeze_fee = FREEZE_FEE;
}
pub fn thaw_eligible(&self, current_timestamp: i64, candy_machine: &CandyMachine) -> bool {
if self.allow_thaw || candy_machine.items_redeemed >= candy_machine.data.items_available {
return true;
} else if let Some(start_timestamp) = self.mint_start {
if current_timestamp >= start_timestamp + self.freeze_time {
return true;
}
}
false
}
pub fn assert_from_candy(&self, candy_machine: &Pubkey) -> Result<()> {
if &self.candy_machine != candy_machine {
return err!(CandyError::FreezePDAMismatch);
}
Ok(())
}
}
#[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>,
}
impl CandyMachine {
pub fn assert_not_minted(&self, candy_error: Error) -> Result<()> {
if self.items_redeemed > 0 {
Err(candy_error)
} else {
Ok(())
}
}
}
#[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,
}