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
use anchor_lang::{system_program, InstructionData, ToAccountMetas};
use shadow_drive_user_staking::accounts as shdw_drive_accounts;
use shadow_drive_user_staking::instruction as shdw_drive_instructions;
use solana_sdk::{
instruction::Instruction, pubkey::Pubkey, signer::Signer, transaction::Transaction,
};
use super::ShadowDriveClient;
use crate::{constants::PROGRAM_ADDRESS, derived_addresses, models::*};
impl<T> ShadowDriveClient<T>
where
T: Signer,
{
pub async fn migrate(
&self,
storage_account_key: &Pubkey,
) -> ShadowDriveResult<(ShdwDriveResponse, ShdwDriveResponse)> {
let step_1_response = self.migrate_step_1(storage_account_key).await?;
let step_2_response = self.migrate_step_2(storage_account_key).await?;
Ok((step_1_response, step_2_response))
}
pub async fn migrate_step_1(
&self,
storage_account_key: &Pubkey,
) -> ShadowDriveResult<ShdwDriveResponse> {
let wallet_pubkey = self.wallet.pubkey();
let (migration, _) = derived_addresses::migration_helper(storage_account_key);
let accounts = shdw_drive_accounts::MigrateStep1 {
storage_account: *storage_account_key,
migration,
owner: wallet_pubkey,
system_program: system_program::ID,
};
let args = shdw_drive_instructions::MigrateStep1 {};
let instruction = Instruction {
program_id: PROGRAM_ADDRESS,
accounts: accounts.to_account_metas(None),
data: args.data(),
};
let mut txn = Transaction::new_with_payer(&[instruction], Some(&wallet_pubkey));
txn.try_sign(
&[&self.wallet],
self.rpc_client.get_latest_blockhash().await?,
)?;
let txn_result = self.rpc_client.send_and_confirm_transaction(&txn).await?;
Ok(ShdwDriveResponse {
txid: txn_result.to_string(),
})
}
pub async fn migrate_step_2(
&self,
storage_account_key: &Pubkey,
) -> ShadowDriveResult<ShdwDriveResponse> {
let wallet_pubkey = self.wallet.pubkey();
let (migration, _) = derived_addresses::migration_helper(storage_account_key);
let accounts = shdw_drive_accounts::MigrateStep2 {
storage_account: *storage_account_key,
migration,
owner: wallet_pubkey,
system_program: system_program::ID,
};
let args = shdw_drive_instructions::MigrateStep2 {};
let instruction = Instruction {
program_id: PROGRAM_ADDRESS,
accounts: accounts.to_account_metas(None),
data: args.data(),
};
let mut txn = Transaction::new_with_payer(&[instruction], Some(&wallet_pubkey));
txn.try_sign(
&[&self.wallet],
self.rpc_client.get_latest_blockhash().await?,
)?;
let txn_result = self.rpc_client.send_and_confirm_transaction(&txn).await?;
Ok(ShdwDriveResponse {
txid: txn_result.to_string(),
})
}
}