wallet_standard_wallets 0.1.16

A collection of solana wallet implementations primarily used for testing.
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
use std::hash::Hash;

use async_trait::async_trait;
use derive_more::derive::Deref;
use derive_more::derive::DerefMut;
use derive_more::From;
use derive_more::Into;
use futures::future::try_join_all;
use indexmap::Equivalent;
use indexmap::IndexSet;
use solana_sdk::pubkey::Pubkey;
use solana_sdk::signature::Keypair;
use solana_sdk::signature::Signature;
use solana_sdk::transaction::VersionedTransaction;
use wallet_standard::create_sign_in_message_text;
use wallet_standard::prelude::*;
use wallet_standard::SolanaSignAndSendTransactionProps;
use wallet_standard::SolanaSignInInput;
use wallet_standard::SolanaSignTransactionProps;
use wallet_standard::StandardConnectInput;
use wallet_standard::SOLANA_SIGN_AND_SEND_TRANSACTION;
use wallet_standard::SOLANA_SIGN_IN;
use wallet_standard::SOLANA_SIGN_MESSAGE;
use wallet_standard::SOLANA_SIGN_TRANSACTION;
use wallet_standard::STANDARD_CONNECT;
use wallet_standard::STANDARD_DISCONNECT;
use wallet_standard::STANDARD_EVENTS;
use wasm_client_solana::prelude::*;
use wasm_client_solana::SolanaRpcClient;

#[derive(Debug, Deref, DerefMut)]
pub struct MemoryWalletAccountInfo {
	#[deref]
	#[deref_mut]
	keypair: Keypair,
	label: Option<String>,
	icon: Option<String>,
}

impl Default for MemoryWalletAccountInfo {
	fn default() -> Self {
		Self {
			keypair: Keypair::new(),
			label: None,
			icon: None,
		}
	}
}

impl PartialEq for MemoryWalletAccountInfo {
	fn eq(&self, other: &Self) -> bool {
		self.keypair.eq(&other.keypair)
	}
}

impl Equivalent<MemoryWalletAccountInfo> for Pubkey {
	fn equivalent(&self, key: &MemoryWalletAccountInfo) -> bool {
		self.eq(&key.keypair.pubkey())
	}
}

impl Eq for MemoryWalletAccountInfo {}

impl Hash for MemoryWalletAccountInfo {
	fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
		let pubkey = &self.keypair.pubkey();
		pubkey.hash(state);
	}
}

impl Clone for MemoryWalletAccountInfo {
	fn clone(&self) -> Self {
		Self {
			keypair: self.keypair.insecure_clone(),
			label: self.label.clone(),
			icon: self.icon.clone(),
		}
	}
}

impl MemoryWalletAccountInfo {
	pub fn new() -> Self {
		Self {
			keypair: Keypair::new(),
			label: None,
			icon: None,
		}
	}

	pub fn new_labelled(label: String) -> Self {
		Self {
			keypair: Keypair::new(),
			label: Some(label),
			icon: None,
		}
	}
}

impl From<&Keypair> for MemoryWalletAccountInfo {
	fn from(value: &Keypair) -> Self {
		Self {
			keypair: value.insecure_clone(),
			label: None,
			icon: None,
		}
	}
}

impl WalletAccountInfo for MemoryWalletAccountInfo {
	fn address(&self) -> String {
		Signer::pubkey(&self.keypair).to_string()
	}

	fn public_key(&self) -> Vec<u8> {
		Signer::pubkey(&self.keypair).to_bytes().to_vec()
	}

	fn chains(&self) -> Vec<String> {
		vec!["solana".into()]
	}

	fn features(&self) -> Vec<String> {
		MEMORY_WALLET_FEATURES.map(Into::into).to_vec()
	}

	fn label(&self) -> Option<String> {
		self.label.clone()
	}

	fn icon(&self) -> Option<String> {
		self.icon.clone()
	}
}

#[derive(Clone, Debug)]
pub struct MemoryWalletInfo {
	accounts: IndexSet<MemoryWalletAccountInfo>,
}

impl WalletInfo for MemoryWalletInfo {
	type Account = MemoryWalletAccountInfo;

	fn version(&self) -> String {
		"1.0.0".into()
	}

	fn name(&self) -> String {
		"Solana Memory Wallet".into()
	}

	fn icon(&self) -> String {
		String::new()
	}

	fn chains(&self) -> Vec<String> {
		vec!["solana".into()]
	}

	fn features(&self) -> Vec<String> {
		MEMORY_WALLET_FEATURES.map(Into::into).to_vec()
	}

	fn accounts(&self) -> Vec<Self::Account> {
		self.accounts.clone().into_iter().collect()
	}
}

#[derive(Clone, Debug)]
pub struct MemoryWallet {
	wallet: MemoryWalletInfo,
	account: Option<MemoryWalletAccountInfo>,
	rpc: SolanaRpcClient,
}

impl Signer for MemoryWallet {
	fn try_pubkey(&self) -> Result<Pubkey, solana_sdk::signer::SignerError> {
		let Some(ref account) = self.account else {
			return Err(solana_sdk::signer::SignerError::Connection(
				"No connected account".into(),
			));
		};

		account.try_pubkey()
	}

	fn try_sign_message(
		&self,
		message: &[u8],
	) -> Result<Signature, solana_sdk::signer::SignerError> {
		let Some(ref account) = self.account else {
			return Err(solana_sdk::signer::SignerError::Connection(
				"No connected account".into(),
			));
		};

		account.try_sign_message(message)
	}

	fn is_interactive(&self) -> bool {
		true
	}
}

impl MemoryWallet {
	pub fn new(rpc: SolanaRpcClient, accounts: &[Keypair]) -> Self {
		let accounts = accounts
			.iter()
			.map(Into::into)
			.collect::<IndexSet<MemoryWalletAccountInfo>>();
		let account = accounts.first().cloned();
		let wallet = MemoryWalletInfo { accounts };

		Self {
			wallet,
			account,
			rpc,
		}
	}

	pub fn add_primary_account(
		&mut self,
		account: impl Into<MemoryWalletAccountInfo>,
	) -> &mut Self {
		let account = account.into();

		self.wallet.accounts.shift_insert(0, account.clone());
		self.account = Some(account);

		self
	}

	/// Set the primary account to the account matching the provided pubkey.
	pub fn set_primary_account(&mut self, pubkey: &Pubkey) -> &mut Self {
		let account = self.wallet.accounts.get(pubkey);

		self.account = account.cloned();

		self
	}
}

impl Wallet for MemoryWallet {
	type Account = MemoryWalletAccountInfo;
	type Wallet = MemoryWalletInfo;

	fn wallet(&self) -> Self::Wallet {
		self.wallet.clone()
	}

	fn wallet_account(&self) -> Option<Self::Account> {
		self.account.clone()
	}
}

#[async_trait(?Send)]
impl WalletStandardConnect for MemoryWallet {
	async fn connect(&mut self) -> WalletResult<Vec<Self::Account>> {
		let Some(account) = self.wallet.accounts.first() else {
			return Err(WalletError::WalletConnection);
		};

		self.account = Some(account.clone());

		Ok(self.wallet.accounts())
	}

	async fn connect_with_options(
		&mut self,
		_: StandardConnectInput,
	) -> WalletResult<Vec<Self::Account>> {
		self.connect().await
	}
}

#[async_trait(?Send)]
impl WalletStandardDisconnect for MemoryWallet {
	async fn disconnect(&mut self) -> WalletResult<()> {
		self.account = None;

		Ok(())
	}
}

#[async_trait(?Send)]
impl WalletSolanaSignAndSendTransaction for MemoryWallet {
	type Output = Signature;

	async fn sign_and_send_transaction(
		&self,
		SolanaSignAndSendTransactionProps {
			mut transaction, ..
		}: SolanaSignAndSendTransactionProps,
	) -> WalletResult<Self::Output> {
		let Some(ref account) = self.account else {
			return Err(WalletError::WalletNotConnected);
		};

		let message_blockhash = *transaction.message.recent_blockhash();

		transaction.try_sign(
			&[&**account],
			if message_blockhash == solana_sdk::hash::Hash::default() {
				Some(self.rpc.get_latest_blockhash().await?)
			} else {
				None
			},
		)?;
		let signature = self.rpc.send_transaction(&transaction).await?;

		Ok(signature)
	}

	async fn sign_and_send_transactions(
		&self,
		inputs: Vec<SolanaSignAndSendTransactionProps>,
	) -> WalletResult<Vec<Self::Output>> {
		let futures = inputs
			.into_iter()
			.map(|input| self.sign_and_send_transaction(input));

		try_join_all(futures).await
	}
}

#[async_trait(?Send)]
impl WalletSolanaSignTransaction for MemoryWallet {
	type Output = VersionedTransaction;

	async fn sign_transaction(
		&self,
		SolanaSignTransactionProps {
			mut transaction, ..
		}: SolanaSignTransactionProps,
	) -> WalletResult<Self::Output> {
		let Some(ref account) = self.account else {
			return Err(WalletError::WalletNotConnected);
		};

		let message_blockhash = *transaction.message.recent_blockhash();

		transaction.try_sign(
			&[&**account],
			if message_blockhash == solana_sdk::hash::Hash::default() {
				Some(self.rpc.get_latest_blockhash().await?)
			} else {
				None
			},
		)?;

		Ok(transaction)
	}

	async fn sign_transactions(
		&self,
		inputs: Vec<SolanaSignTransactionProps>,
	) -> WalletResult<Vec<Self::Output>> {
		let futures = inputs.into_iter().map(|input| self.sign_transaction(input));

		try_join_all(futures).await
	}
}

#[derive(Clone, Debug)]
pub struct MemorySolanaSignInOutput {
	signature: Signature,
	account: MemoryWalletAccountInfo,
	signed_message: Vec<u8>,
}

impl SolanaSignatureOutput for MemorySolanaSignInOutput {
	fn try_signature(&self) -> WalletResult<Signature> {
		Ok(self.signature)
	}

	fn signature(&self) -> Signature {
		self.signature
	}
}

impl SolanaSignMessageOutput for MemorySolanaSignInOutput {
	fn signed_message(&self) -> Vec<u8> {
		self.signed_message.clone()
	}

	fn signature_type(&self) -> Option<String> {
		Some("Ed25519".into())
	}
}

impl SolanaSignInOutput for MemorySolanaSignInOutput {
	type Account = MemoryWalletAccountInfo;

	fn account(&self) -> Self::Account {
		self.account.clone()
	}
}

#[async_trait(?Send)]
impl WalletSolanaSignIn for MemoryWallet {
	type Output = MemorySolanaSignInOutput;

	async fn sign_in(&self, input: SolanaSignInInput) -> WalletResult<Self::Output> {
		let Some(ref account) = self.account else {
			return Err(WalletError::WalletNotConnected);
		};

		let sign_in_message = create_sign_in_message_text(&input)?.into_bytes();
		let signed_message = nacl::sign::sign(&sign_in_message, &account.keypair.to_bytes())
			.map_err(|e| WalletError::Signer(format!("{e:?}")))?;
		let signature = account.keypair.try_sign_message(&sign_in_message)?;

		Ok(MemorySolanaSignInOutput {
			signature,
			account: account.clone(),
			signed_message,
		})
	}

	async fn sign_in_many(
		&self,
		inputs: Vec<SolanaSignInInput>,
	) -> WalletResult<Vec<Self::Output>> {
		let futures = inputs.into_iter().map(|input| self.sign_in(input));

		try_join_all(futures).await
	}
}

pub struct MemorySolanaSignMessageOutput {
	signature: Signature,
	signed_message: Vec<u8>,
}

impl SolanaSignatureOutput for MemorySolanaSignMessageOutput {
	fn try_signature(&self) -> WalletResult<Signature> {
		Ok(self.signature)
	}

	fn signature(&self) -> Signature {
		self.signature
	}
}

impl SolanaSignMessageOutput for MemorySolanaSignMessageOutput {
	fn signed_message(&self) -> Vec<u8> {
		self.signed_message.clone()
	}

	fn signature_type(&self) -> Option<String> {
		Some("Ed25519".into())
	}
}

#[async_trait(?Send)]
impl WalletSolanaSignMessage for MemoryWallet {
	type Output = MemorySolanaSignMessageOutput;

	/// Sign a  message using the account's secret key.
	async fn sign_message_async(&self, message: impl Into<Vec<u8>>) -> WalletResult<Self::Output> {
		let Some(ref account) = self.account else {
			return Err(WalletError::WalletNotConnected);
		};

		let message = message.into();
		let signed_message = nacl::sign::sign(&message, &account.keypair.to_bytes())
			.map_err(|e| WalletError::Signer(format!("{e:?}")))?;
		let signature = Signer::try_sign_message(&account.keypair, &message)?;

		Ok(MemorySolanaSignMessageOutput {
			signature,
			signed_message,
		})
	}

	/// Sign a list of messages using the account's secret key.
	async fn sign_messages<M: Into<Vec<u8>>>(
		&self,
		messages: Vec<M>,
	) -> WalletResult<Vec<Self::Output>> {
		let futures = messages
			.into_iter()
			.map(|message| WalletSolanaSignMessage::sign_message_async(self, message));

		try_join_all(futures).await
	}
}

pub const MEMORY_WALLET_FEATURES: [&str; 7] = [
	STANDARD_CONNECT,
	STANDARD_DISCONNECT,
	STANDARD_EVENTS,
	SOLANA_SIGN_MESSAGE,
	SOLANA_SIGN_IN,
	SOLANA_SIGN_TRANSACTION,
	SOLANA_SIGN_AND_SEND_TRANSACTION,
];