squads-program 2.0.1

Squads is an on-chain program that allows team to manage digital assets together, create proposals, and more.
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
use solana_program::{
    account_info::{next_account_info, AccountInfo},
    clock::Clock,
    entrypoint::ProgramResult,
    msg,
    program::{invoke, invoke_signed},
    program_error::ProgramError,
    program_pack::Pack,
    pubkey::Pubkey,
    rent::Rent,
    system_instruction::{allocate, assign, create_account, transfer},
    sysvar::Sysvar,
};

use num_traits::FromPrimitive;

use crate::state::squad::AllocationType;
use crate::{
    state::{
        proposal::{Proposal, ProposalType},
        squad::Squad,
    },
    *, // error::SquadError
};

// creates an account for the proposal
pub fn process_create_proposal(
    accounts: &[AccountInfo],
    proposal_type: u8,
    votes_num: u8,
    title: String,
    description: String,
    link: String,
    vote_labels: Vec<String>,
    start_timestamp: i64,
    close_timestamp: i64,
    amount: u64,
    minimum_out: u64,
    program_id: &Pubkey,
) -> ProgramResult {
    let account_info_iter = &mut accounts.iter();
    let initializer = next_account_info(account_info_iter)?;
    let squad_account = next_account_info(account_info_iter)?;
    // the soon to be proposal account generated as PDA on client side from nonce
    let proposal_account = next_account_info(account_info_iter)?;
    let system_account = next_account_info(account_info_iter)?;
    let rent_sysvar_info = next_account_info(account_info_iter)?;
    let squads_program_account = next_account_info(account_info_iter)?;

    let rent = &Rent::from_account_info(rent_sysvar_info)?;

    if !initializer.is_signer {
        return Err(ProgramError::MissingRequiredSignature);
    }

    let mut squad_account_info = get_squad(program_id, squad_account)?;

    // check that the submitted squads program account is actually this one
    if squads_program_account.key != program_id {
        return Err(ProgramError::IncorrectProgramId);
    }

    if !proposal_account.data_is_empty() {
        msg!("SQDS: This proposal has already been created");
        return Err(ProgramError::AccountAlreadyInitialized);
    }
    if !Squad::member_exists(&squad_account_info, initializer.key) {
        return Err(ProgramError::InvalidAccountData);
    }
    // check squad is not a draft/open
    if squad_account_info.open {
        return Err(ProgramError::InvalidInstructionData);
    }

    let proposal_nonce = squad_account_info.proposal_nonce + 1;
    let (proposal_address, proposal_bump_seed) =
        get_proposal_address_with_seed(&squad_account.key, &program_id, &proposal_nonce);

    // check that this is the proper sequential address
    if proposal_account.key != &proposal_address {
        msg!("SQDS Proposal nonce mismatch");
        return Err(ProgramError::InvalidAccountData);
    }

    let proposal_signer_seeds: &[&[_]] = &[
        &squad_account.key.to_bytes(),
        &proposal_nonce.to_le_bytes(),
        b"!proposal",
        &[proposal_bump_seed],
    ];

    // DoS check
    let rent_exempt_lamports = rent.minimum_balance(Proposal::get_packed_len()).max(1);
    if proposal_account.lamports() > 0 {
        let top_up_lamports = rent_exempt_lamports.saturating_sub(proposal_account.lamports());

        if top_up_lamports > 0 {
            invoke(
                &transfer(initializer.key, proposal_account.key, top_up_lamports),
                &[
                    initializer.clone(),
                    proposal_account.clone(),
                    system_account.clone(),
                ],
            )?;
        }

        invoke_signed(
            &allocate(proposal_account.key, Proposal::get_packed_len() as u64),
            &[proposal_account.clone(), system_account.clone()],
            &[&proposal_signer_seeds],
        )?;

        invoke_signed(
            &assign(proposal_account.key, program_id),
            &[proposal_account.clone(), system_account.clone()],
            &[&proposal_signer_seeds],
        )?;
    } else {
        invoke_signed(
            &create_account(
                initializer.key,
                &proposal_address,
                rent_exempt_lamports,
                Proposal::get_packed_len() as u64,
                &program_id,
            ),
            &[
                initializer.clone(),
                proposal_account.clone(),
                system_account.clone(),
            ],
            &[&proposal_signer_seeds],
        )?;
    }

    let mut proposal_account_info = get_proposal(program_id, squad_account, proposal_account)?;
    if proposal_account_info.is_initialized() {
        return Err(ProgramError::AccountAlreadyInitialized);
    }

    let actual_timestamp = Clock::get().unwrap().unix_timestamp;

    if proposal_type != ProposalType::Text as u8 {
        if votes_num != 2 {
            return Err(ProgramError::InvalidArgument);
        }
    }

    match FromPrimitive::from_u8(proposal_type) {
        Some(ProposalType::Text) => {
            // text
            if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                return Err(ProgramError::InvalidArgument);
            }
            Proposal::save_text(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                actual_timestamp,
                proposal_nonce,
            );
        }
        Some(ProposalType::Support) => {
            // support
            if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                return Err(ProgramError::InvalidArgument);
            }
            // check that support is within bounds (as %)
            if amount < 1 || amount > 100 {
                return Err(ProgramError::InvalidArgument);
            }
            Proposal::save_core(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                Clock::get().unwrap().unix_timestamp,
                amount,
                proposal_nonce,
            );
        }
        Some(ProposalType::Quorum) => {
            let amount_check = match squad_account_info.allocation_type {
                2 => {
                    // MS quorum amount is limited by max members
                    (squad_account_info.members.len() as u8) >= amount as u8
                }
                1 => {
                    // TS Quorum is limited to a percent
                    amount > 0 || amount <= 100
                }
                _ => false,
            };

            if !amount_check {
                return Err(ProgramError::InvalidInstructionData);
            }
            // quorum | threshold
            Proposal::save_core(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                Clock::get().unwrap().unix_timestamp,
                amount,
                proposal_nonce,
            );
        }
        Some(ProposalType::WithdrawSol) => {
            // withdraw SOL
            let source = next_account_info(account_info_iter)?;
            let target = next_account_info(account_info_iter)?;

            Proposal::save_withdraw(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                source.key,
                target.key,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                Clock::get().unwrap().unix_timestamp,
                amount,
                proposal_nonce,
            );
        }
        Some(ProposalType::WithdrawSpl) => {
            // withdraw token
            let source = next_account_info(account_info_iter)?;
            let target = next_account_info(account_info_iter)?;

            Proposal::save_withdraw(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                source.key,
                target.key,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                Clock::get().unwrap().unix_timestamp,
                amount,
                proposal_nonce,
            );
        }
        Some(ProposalType::AddMember) => {
            // add member
            let member = next_account_info(account_info_iter)?;

            Proposal::save_member(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                member.key,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                Clock::get().unwrap().unix_timestamp,
                amount,
                proposal_nonce,
            );
        }
        Some(ProposalType::RemoveMember) => {
            // remove member
            let member = next_account_info(account_info_iter)?;

            Proposal::save_member(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                member.key,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                Clock::get().unwrap().unix_timestamp,
                0,
                proposal_nonce,
            );
        }
        Some(ProposalType::MintMemberToken) => {
            // Mint member tokens
            if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                return Err(ProgramError::InvalidArgument);
            }
            let member = next_account_info(account_info_iter)?;

            Proposal::save_member(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                member.key,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                Clock::get().unwrap().unix_timestamp,
                amount,
                proposal_nonce,
            );
        }
        Some(ProposalType::Swap) => {
            // Swap
            let source = next_account_info(account_info_iter)?;
            let target = next_account_info(account_info_iter)?;

            Proposal::save_swap(
                &mut proposal_account_info,
                proposal_type,
                title,
                description,
                link,
                source.key,
                target.key,
                initializer.key,
                votes_num,
                squad_account.key,
                vote_labels,
                if squad_account_info.allocation_type == AllocationType::Multisig as u8 {
                    actual_timestamp
                } else {
                    start_timestamp
                },
                close_timestamp,
                Clock::get().unwrap().unix_timestamp,
                amount,
                minimum_out,
                proposal_nonce,
            );
        }
        None => {
            return Err(ProgramError::InvalidArgument);
        }
    }

    Proposal::pack(
        proposal_account_info,
        &mut proposal_account.data.borrow_mut(),
    )?;

    squad_account_info.proposal_nonce = proposal_nonce;

    Squad::pack(squad_account_info, &mut squad_account.data.borrow_mut())?;
    Ok(())
}