spl-single-pool 5.0.0

Solana Program Library Single-Validator Stake Pool
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
#![allow(clippy::arithmetic_side_effects)]
mod helpers;

use {
    helpers::*,
    solana_program_pack::Pack,
    solana_program_test::*,
    solana_signer::Signer,
    solana_transaction::Transaction,
    spl_single_pool::{error::SinglePoolError, id, instruction},
    spl_token_interface::state::Mint,
    test_case::{test_case, test_matrix},
};

#[test_matrix(
    [StakeProgramVersion::Stable, StakeProgramVersion::Beta, StakeProgramVersion::Edge],
    [false, true],
    [0, 1],
    [false, true]
)]
#[tokio::test]
async fn success(
    stake_version: StakeProgramVersion,
    activate: bool,
    extra_lamports_in_pool: u64,
    other_user_deposits: bool,
) {
    let Some(program_test) = program_test(stake_version) else {
        return;
    };
    let mut context = program_test.start_with_context().await;

    let accounts = SinglePoolAccounts::default();

    let amount_deposited = TEST_STAKE_AMOUNT;

    let minimum_pool_balance = accounts
        .initialize_for_withdraw(
            &mut context,
            amount_deposited,
            if other_user_deposits {
                Some(TEST_STAKE_AMOUNT * 10)
            } else {
                None
            },
            activate,
        )
        .await;

    let (_, _, pool_lamports_before) =
        get_stake_account(&mut context.banks_client, &accounts.stake_account).await;

    let wallet_lamports_before = get_account(&mut context.banks_client, &accounts.alice.pubkey())
        .await
        .lamports;

    if extra_lamports_in_pool > 0 {
        transfer(
            &mut context.banks_client,
            &context.payer,
            &context.last_blockhash,
            &accounts.stake_account,
            extra_lamports_in_pool,
        )
        .await;
    }

    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.alice_stake.pubkey(),
        &accounts.alice.pubkey(),
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        get_token_balance(&mut context.banks_client, &accounts.alice_token).await,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&context.payer.pubkey()),
        &[&context.payer, &accounts.alice],
        context.last_blockhash,
    );

    context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap();

    let wallet_lamports_after = get_account(&mut context.banks_client, &accounts.alice.pubkey())
        .await
        .lamports;

    let (_, alice_stake_after, _) =
        get_stake_account(&mut context.banks_client, &accounts.alice_stake.pubkey()).await;
    let alice_stake_after = alice_stake_after.unwrap().delegation.stake;

    let (_, pool_stake_after, pool_lamports_after) =
        get_stake_account(&mut context.banks_client, &accounts.stake_account).await;
    let pool_stake_after = pool_stake_after.unwrap().delegation.stake;

    // when active, the depositor gets their rent back, but when activating, its
    // just added to stake
    let expected_deposit = if activate {
        amount_deposited
    } else {
        amount_deposited + get_stake_account_rent(&mut context.banks_client).await
    };

    let other_user_deposits = if other_user_deposits {
        if activate {
            TEST_STAKE_AMOUNT * 10
        } else {
            TEST_STAKE_AMOUNT * 10 + get_stake_account_rent(&mut context.banks_client).await
        }
    } else {
        0
    };

    // alice received her stake back
    assert_eq!(alice_stake_after, expected_deposit);

    // alice nothing to withdraw
    // (we create the blank account before getting wallet_lamports_before)
    assert_eq!(wallet_lamports_after, wallet_lamports_before);

    // pool retains minstake
    assert_eq!(pool_stake_after, other_user_deposits + minimum_pool_balance);

    // pool lamports otherwise unchanged
    assert_eq!(
        pool_lamports_after,
        pool_lamports_before - expected_deposit + extra_lamports_in_pool,
    );

    // alice has no tokens
    assert_eq!(
        get_token_balance(&mut context.banks_client, &accounts.alice_token).await,
        0,
    );

    // tokens were burned
    assert_eq!(
        get_token_supply(&mut context.banks_client, &accounts.mint).await,
        other_user_deposits,
    );
}

#[test_matrix(
    [StakeProgramVersion::Stable, StakeProgramVersion::Beta, StakeProgramVersion::Edge]
)]
#[tokio::test]
async fn success_with_rewards(stake_version: StakeProgramVersion) {
    // sufficiently large stakes to capture ~all rewards, for easy ratio comparison
    let alice_deposit = TEST_STAKE_AMOUNT * 10;
    let bob_deposit = TEST_STAKE_AMOUNT * 30;

    let Some(program_test) = program_test(stake_version) else {
        return;
    };
    let mut context = program_test.start_with_context().await;

    let accounts = SinglePoolAccounts::default();
    let minimum_pool_balance = accounts
        .initialize_for_withdraw(&mut context, alice_deposit, Some(bob_deposit), true)
        .await;

    context.increment_vote_account_credits(&accounts.vote_account.pubkey(), 1);
    advance_epoch(&mut context).await;

    let alice_tokens = get_token_balance(&mut context.banks_client, &accounts.alice_token).await;
    let bob_tokens = get_token_balance(&mut context.banks_client, &accounts.bob_token).await;

    // tokens correspond to deposit after rewards
    assert_eq!(alice_tokens, alice_deposit);
    assert_eq!(bob_tokens, bob_deposit);

    let (_, pool_stake, _) =
        get_stake_account(&mut context.banks_client, &accounts.stake_account).await;
    let pool_stake = pool_stake.unwrap().delegation.stake;
    let total_rewards = pool_stake - alice_deposit - bob_deposit - minimum_pool_balance;

    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.alice_stake.pubkey(),
        &accounts.alice.pubkey(),
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        alice_tokens,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&accounts.alice.pubkey()),
        &[&accounts.alice],
        context.last_blockhash,
    );

    context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap();

    let alice_tokens = get_token_balance(&mut context.banks_client, &accounts.alice_token).await;
    let bob_tokens = get_token_balance(&mut context.banks_client, &accounts.bob_token).await;

    let (_, alice_stake, _) =
        get_stake_account(&mut context.banks_client, &accounts.alice_stake.pubkey()).await;
    let alice_rewards = alice_stake.unwrap().delegation.stake - alice_deposit;

    let (_, bob_stake, _) =
        get_stake_account(&mut context.banks_client, &accounts.stake_account).await;
    let bob_rewards = bob_stake.unwrap().delegation.stake - minimum_pool_balance - bob_deposit;

    // alice tokens are fully burned, bob remains unchanged
    assert_eq!(alice_tokens, 0);
    assert_eq!(bob_tokens, bob_deposit);

    // reward amounts are proportional to deposits
    assert_eq!(
        (alice_rewards as f64 / total_rewards as f64 * 100.0).round(),
        25.0
    );
    assert_eq!(
        (bob_rewards as f64 / total_rewards as f64 * 100.0).round(),
        75.0
    );
}

#[test_case(true; "activated")]
#[test_case(false; "activating")]
#[tokio::test]
async fn fail_withdraw_to_pool(activate: bool) {
    let mut context = program_test_live().start_with_context().await;
    let accounts = SinglePoolAccounts::default();
    accounts
        .initialize_for_withdraw(&mut context, TEST_STAKE_AMOUNT, None, activate)
        .await;

    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.stake_account,
        &accounts.stake_authority,
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        TEST_STAKE_AMOUNT,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&accounts.alice.pubkey()),
        &[&accounts.alice],
        context.last_blockhash,
    );

    let e = context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap_err();
    check_error(e, SinglePoolError::InvalidPoolStakeAccountUsage);
}

#[tokio::test]
async fn fail_withdraw_to_onramp() {
    let mut context = program_test_live().start_with_context().await;
    let accounts = SinglePoolAccounts::default();
    accounts
        .initialize_for_withdraw(&mut context, TEST_STAKE_AMOUNT, None, true)
        .await;

    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.onramp_account,
        &accounts.stake_authority,
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        TEST_STAKE_AMOUNT,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&accounts.alice.pubkey()),
        &[&accounts.alice],
        context.last_blockhash,
    );

    let e = context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap_err();
    check_error(e, SinglePoolError::InvalidPoolStakeAccountUsage);
}

#[test_matrix(
    [StakeProgramVersion::Stable, StakeProgramVersion::Beta, StakeProgramVersion::Edge]
)]
#[tokio::test]
async fn success_withdraw_from_inactive(stake_version: StakeProgramVersion) {
    // this test would fail on bpf stake v1-4 because of a bug in Split
    // when this assert fails, it means v5 is stable. delete this entire block
    if stake_version == StakeProgramVersion::Stable {
        assert!(stake_version
            .basename()
            .unwrap()
            .starts_with("solana_stake_program-v4"));

        return;
    }

    let Some(program_test) = program_test(stake_version) else {
        return;
    };
    let mut context = program_test.start_with_context().await;

    let accounts = SinglePoolAccounts::default();
    accounts
        .initialize_for_withdraw(&mut context, TEST_STAKE_AMOUNT, None, true)
        .await;

    force_deactivate_stake_account(&mut context, &accounts.stake_account).await;

    let (_, pool_stake_before, _) =
        get_stake_account(&mut context.banks_client, &accounts.stake_account).await;

    // this proves we arent using delegation for math
    assert_eq!(
        pool_stake_before.unwrap().delegation.stake,
        MANGLED_DELEGATION
    );

    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.alice_stake.pubkey(),
        &accounts.alice.pubkey(),
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        get_token_balance(&mut context.banks_client, &accounts.alice_token).await,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&accounts.alice.pubkey()),
        &[&accounts.alice],
        context.last_blockhash,
    );

    context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap();

    let (_, _, alice_lamports_after) =
        get_stake_account(&mut context.banks_client, &accounts.alice_stake.pubkey()).await;
    assert_eq!(
        alice_lamports_after,
        TEST_STAKE_AMOUNT + get_stake_account_rent(&mut context.banks_client).await
    );
}

#[test_matrix(
    [StakeProgramVersion::Stable, StakeProgramVersion::Beta, StakeProgramVersion::Edge]
)]
#[tokio::test]
async fn fail_disallowed_withdraw(stake_version: StakeProgramVersion) {
    let Some(program_test) = program_test(stake_version) else {
        return;
    };
    let mut context = program_test.start_with_context().await;

    let accounts = SinglePoolAccounts::default();
    accounts
        .initialize_for_withdraw(&mut context, TEST_STAKE_AMOUNT, None, true)
        .await;

    let minimum_delegation = get_minimum_delegation(
        &mut context.banks_client,
        &context.payer,
        &context.last_blockhash,
    )
    .await;

    // actually 0 withdraw fails
    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.alice_stake.pubkey(),
        &accounts.alice.pubkey(),
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        0,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&accounts.alice.pubkey()),
        &[&accounts.alice],
        context.last_blockhash,
    );

    let e = context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap_err();
    check_error(e, SinglePoolError::WithdrawalTooSmall);

    // sub-minimum delegation withdraw fails
    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.alice_stake.pubkey(),
        &accounts.alice.pubkey(),
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        minimum_delegation - 1,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&accounts.alice.pubkey()),
        &[&accounts.alice],
        context.last_blockhash,
    );

    let e = context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap_err();
    check_error(e, SinglePoolError::WithdrawalTooSmall);

    // pump NEV higher. token is worth more but mostly backed by liquid sol
    transfer(
        &mut context.banks_client,
        &context.payer,
        &context.last_blockhash,
        &accounts.stake_account,
        TEST_STAKE_AMOUNT * 10,
    )
    .await;

    // withdrawal that cannot be delivered as stake fails
    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.alice_stake.pubkey(),
        &accounts.alice.pubkey(),
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        TEST_STAKE_AMOUNT,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&accounts.alice.pubkey()),
        &[&accounts.alice],
        context.last_blockhash,
    );

    let e = context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap_err();
    check_error(e, SinglePoolError::WithdrawalViolatesPoolRequirements);

    // slash the pool percentage that one token represents
    let mut mint_account = get_account(&mut context.banks_client, &accounts.mint).await;
    let mut mint_data = Mint::unpack_from_slice(&mint_account.data).unwrap();
    mint_data.supply *= 100;
    Mint::pack(mint_data, &mut mint_account.data).unwrap();
    context.set_account(&accounts.mint, &mint_account.into());

    // the minimum withdrawal from a non-inactive pool can only round to 0 if a pool has >1 billion sol
    force_deactivate_stake_account(&mut context, &accounts.stake_account).await;

    // withdrawal that rounds to 0 fails
    let instructions = instruction::withdraw(
        &id(),
        &accounts.pool,
        &accounts.alice_stake.pubkey(),
        &accounts.alice.pubkey(),
        &accounts.alice_token,
        &accounts.alice.pubkey(),
        1,
    );
    let transaction = Transaction::new_signed_with_payer(
        &instructions,
        Some(&accounts.alice.pubkey()),
        &[&accounts.alice],
        context.last_blockhash,
    );

    let e = context
        .banks_client
        .process_transaction(transaction)
        .await
        .unwrap_err();
    check_error(e, SinglePoolError::WithdrawalTooSmall);
}