forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti_wallet.rs
More file actions
562 lines (492 loc) · 18.5 KB
/
multi_wallet.rs
File metadata and controls
562 lines (492 loc) · 18.5 KB
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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
use crate::{
utils,
wallet_signer::{PendingSigner, WalletSigner},
};
use alloy_primitives::map::AddressHashMap;
use alloy_signer::Signer;
use clap::Parser;
use derive_builder::Builder;
use eyre::Result;
use foundry_config::Config;
use serde::Serialize;
use std::path::PathBuf;
/// Container for multiple wallets.
#[derive(Debug, Default)]
pub struct MultiWallet {
/// Vector of wallets that require an action to be unlocked.
/// Those are lazily unlocked on the first access of the signers.
pending_signers: Vec<PendingSigner>,
/// Contains unlocked signers.
signers: AddressHashMap<WalletSigner>,
}
impl MultiWallet {
pub fn new(pending_signers: Vec<PendingSigner>, signers: Vec<WalletSigner>) -> Self {
let signers = signers.into_iter().map(|signer| (signer.address(), signer)).collect();
Self { pending_signers, signers }
}
fn maybe_unlock_pending(&mut self) -> Result<()> {
for pending in self.pending_signers.drain(..) {
let signer = pending.unlock()?;
self.signers.insert(signer.address(), signer);
}
Ok(())
}
pub fn signers(&mut self) -> Result<&AddressHashMap<WalletSigner>> {
self.maybe_unlock_pending()?;
Ok(&self.signers)
}
pub fn into_signers(mut self) -> Result<AddressHashMap<WalletSigner>> {
self.maybe_unlock_pending()?;
Ok(self.signers)
}
pub fn add_signer(&mut self, signer: WalletSigner) {
self.signers.insert(signer.address(), signer);
}
}
/// A macro that initializes multiple wallets
///
/// Should be used with a [`MultiWallet`] instance
macro_rules! create_hw_wallets {
($self:ident, $create_signer:expr, $signers:ident) => {
let mut $signers = vec![];
if let Some(hd_paths) = &$self.hd_paths {
for path in hd_paths {
let hw = $create_signer(Some(path), 0).await?;
$signers.push(hw);
}
}
if let Some(mnemonic_indexes) = &$self.mnemonic_indexes {
for index in mnemonic_indexes {
let hw = $create_signer(None, *index).await?;
$signers.push(hw);
}
}
if $signers.is_empty() {
let hw = $create_signer(None, 0).await?;
$signers.push(hw);
}
};
}
/// The wallet options can either be:
/// 1. Ledger
/// 2. Trezor
/// 3. Mnemonics (via file path)
/// 4. Keystores (via file path)
/// 5. Private Keys (cleartext in CLI)
/// 6. Private Keys (interactively via secure prompt)
/// 7. AWS KMS
/// 8. Turnkey
#[derive(Builder, Clone, Debug, Default, Serialize, Parser)]
#[command(next_help_heading = "Wallet options", about = None, long_about = None)]
pub struct MultiWalletOpts {
/// Open an interactive prompt to enter your private key.
///
/// Takes a value for the number of keys to enter.
#[arg(
long,
short,
help_heading = "Wallet options - raw",
default_value = "0",
value_name = "NUM"
)]
pub interactives: u32,
/// Use the provided private keys.
#[arg(long, help_heading = "Wallet options - raw", value_name = "RAW_PRIVATE_KEYS")]
#[builder(default = "None")]
pub private_keys: Option<Vec<String>>,
/// Use the provided private key.
#[arg(
long,
help_heading = "Wallet options - raw",
conflicts_with = "private_keys",
value_name = "RAW_PRIVATE_KEY"
)]
#[builder(default = "None")]
pub private_key: Option<String>,
/// Use the mnemonic phrases of mnemonic files at the specified paths.
#[arg(long, alias = "mnemonic-paths", help_heading = "Wallet options - raw")]
#[builder(default = "None")]
pub mnemonics: Option<Vec<String>>,
/// Use a BIP39 passphrases for the mnemonic.
#[arg(long, help_heading = "Wallet options - raw", value_name = "PASSPHRASE")]
#[builder(default = "None")]
pub mnemonic_passphrases: Option<Vec<String>>,
/// The wallet derivation path.
///
/// Works with both --mnemonic-path and hardware wallets.
#[arg(
long = "mnemonic-derivation-paths",
alias = "hd-paths",
help_heading = "Wallet options - raw",
value_name = "PATH"
)]
#[builder(default = "None")]
pub hd_paths: Option<Vec<String>>,
/// Use the private key from the given mnemonic index.
///
/// Can be used with --mnemonics, --ledger, --aws and --trezor.
#[arg(
long,
conflicts_with = "hd_paths",
help_heading = "Wallet options - raw",
default_value = "0",
value_name = "INDEXES"
)]
pub mnemonic_indexes: Option<Vec<u32>>,
/// Use the keystore by its filename in the given folder.
#[arg(
long = "keystore",
visible_alias = "keystores",
help_heading = "Wallet options - keystore",
value_name = "PATHS",
env = "ETH_KEYSTORE"
)]
#[builder(default = "None")]
pub keystore_paths: Option<Vec<String>>,
/// Use a keystore from the default keystores folder (~/.foundry/keystores) by its filename.
#[arg(
long = "account",
visible_alias = "accounts",
help_heading = "Wallet options - keystore",
value_name = "ACCOUNT_NAMES",
env = "ETH_KEYSTORE_ACCOUNT",
conflicts_with = "keystore_paths"
)]
#[builder(default = "None")]
pub keystore_account_names: Option<Vec<String>>,
/// The keystore password.
///
/// Used with --keystore.
#[arg(
long = "password",
help_heading = "Wallet options - keystore",
requires = "keystore_paths",
value_name = "PASSWORDS"
)]
#[builder(default = "None")]
pub keystore_passwords: Option<Vec<String>>,
/// The keystore password file path.
///
/// Used with --keystore.
#[arg(
long = "password-file",
help_heading = "Wallet options - keystore",
requires = "keystore_paths",
value_name = "PATHS",
env = "ETH_PASSWORD"
)]
#[builder(default = "None")]
pub keystore_password_files: Option<Vec<String>>,
/// Use a Ledger hardware wallet.
#[arg(long, short, help_heading = "Wallet options - hardware wallet")]
pub ledger: bool,
/// Use a Trezor hardware wallet.
#[arg(long, short, help_heading = "Wallet options - hardware wallet")]
pub trezor: bool,
/// Use AWS Key Management Service.
///
/// Ensure either one of AWS_KMS_KEY_IDS (comma-separated) or AWS_KMS_KEY_ID environment
/// variables are set.
#[arg(long, help_heading = "Wallet options - remote", hide = !cfg!(feature = "aws-kms"))]
pub aws: bool,
/// Use Google Cloud Key Management Service.
///
/// Ensure the following environment variables are set: GCP_PROJECT_ID, GCP_LOCATION,
/// GCP_KEY_RING, GCP_KEY_NAME, GCP_KEY_VERSION.
///
/// See: <https://cloud.google.com/kms/docs>
#[arg(long, help_heading = "Wallet options - remote", hide = !cfg!(feature = "gcp-kms"))]
pub gcp: bool,
/// Use Turnkey.
///
/// Ensure the following environment variables are set: TURNKEY_API_PRIVATE_KEY,
/// TURNKEY_ORGANIZATION_ID, TURNKEY_ADDRESS.
///
/// See: <https://docs.turnkey.com/getting-started/quickstart>
#[arg(long, help_heading = "Wallet options - remote", hide = !cfg!(feature = "turnkey"))]
pub turnkey: bool,
}
impl MultiWalletOpts {
/// Returns [MultiWallet] container configured with provided options.
pub async fn get_multi_wallet(&self) -> Result<MultiWallet> {
let mut pending = Vec::new();
let mut signers: Vec<WalletSigner> = Vec::new();
if let Some(ledgers) = self.ledgers().await? {
signers.extend(ledgers);
}
if let Some(trezors) = self.trezors().await? {
signers.extend(trezors);
}
if let Some(aws_signers) = self.aws_signers().await? {
signers.extend(aws_signers);
}
if let Some(gcp_signer) = self.gcp_signers().await? {
signers.extend(gcp_signer);
}
if let Some(turnkey_signers) = self.turnkey_signers()? {
signers.extend(turnkey_signers);
}
if let Some((pending_keystores, unlocked)) = self.keystores()? {
pending.extend(pending_keystores);
signers.extend(unlocked);
}
if let Some(pks) = self.private_keys()? {
signers.extend(pks);
}
if let Some(mnemonics) = self.mnemonics()? {
signers.extend(mnemonics);
}
if self.interactives > 0 {
pending.extend(std::iter::repeat_n(
PendingSigner::Interactive,
self.interactives as usize,
));
}
Ok(MultiWallet::new(pending, signers))
}
pub fn private_keys(&self) -> Result<Option<Vec<WalletSigner>>> {
let mut pks = vec![];
if let Some(private_key) = &self.private_key {
pks.push(private_key);
}
if let Some(private_keys) = &self.private_keys {
for pk in private_keys {
pks.push(pk);
}
}
if !pks.is_empty() {
let wallets = pks
.into_iter()
.map(|pk| utils::create_private_key_signer(pk))
.collect::<Result<Vec<_>>>()?;
Ok(Some(wallets))
} else {
Ok(None)
}
}
fn keystore_paths(&self) -> Result<Option<Vec<PathBuf>>> {
if let Some(keystore_paths) = &self.keystore_paths {
return Ok(Some(keystore_paths.iter().map(PathBuf::from).collect()));
}
if let Some(keystore_account_names) = &self.keystore_account_names {
let default_keystore_dir = Config::foundry_keystores_dir()
.ok_or_else(|| eyre::eyre!("Could not find the default keystore directory."))?;
return Ok(Some(
keystore_account_names
.iter()
.map(|keystore_name| default_keystore_dir.join(keystore_name))
.collect(),
));
}
Ok(None)
}
/// Returns all wallets read from the provided keystores arguments
///
/// Returns `Ok(None)` if no keystore provided.
pub fn keystores(&self) -> Result<Option<(Vec<PendingSigner>, Vec<WalletSigner>)>> {
if let Some(keystore_paths) = self.keystore_paths()? {
let mut pending = Vec::new();
let mut signers = Vec::new();
let mut passwords_iter =
self.keystore_passwords.iter().flat_map(|passwords| passwords.iter());
let mut password_files_iter = self
.keystore_password_files
.iter()
.flat_map(|password_files| password_files.iter());
for path in &keystore_paths {
let (maybe_signer, maybe_pending) = utils::create_keystore_signer(
path,
passwords_iter.next().map(|password| password.as_str()),
password_files_iter.next().map(|password_file| password_file.as_str()),
)?;
if let Some(pending_signer) = maybe_pending {
pending.push(pending_signer);
} else if let Some(signer) = maybe_signer {
signers.push(signer);
}
}
return Ok(Some((pending, signers)));
}
Ok(None)
}
pub fn mnemonics(&self) -> Result<Option<Vec<WalletSigner>>> {
if let Some(ref mnemonics) = self.mnemonics {
let mut wallets = vec![];
let mut hd_paths_iter =
self.hd_paths.iter().flat_map(|paths| paths.iter().map(String::as_str));
let mut passphrases_iter = self
.mnemonic_passphrases
.iter()
.flat_map(|passphrases| passphrases.iter().map(String::as_str));
let mut indexes_iter =
self.mnemonic_indexes.iter().flat_map(|indexes| indexes.iter().copied());
for mnemonic in mnemonics {
let wallet = utils::create_mnemonic_signer(
mnemonic,
passphrases_iter.next(),
hd_paths_iter.next(),
indexes_iter.next().unwrap_or(0),
)?;
wallets.push(wallet);
}
return Ok(Some(wallets));
}
Ok(None)
}
pub async fn ledgers(&self) -> Result<Option<Vec<WalletSigner>>> {
if self.ledger {
let mut args = self.clone();
if let Some(paths) = &args.hd_paths {
if paths.len() > 1 {
eyre::bail!("Ledger only supports one signer.");
}
args.mnemonic_indexes = None;
}
create_hw_wallets!(args, utils::create_ledger_signer, wallets);
return Ok(Some(wallets));
}
Ok(None)
}
pub async fn trezors(&self) -> Result<Option<Vec<WalletSigner>>> {
if self.trezor {
let mut args = self.clone();
if args.hd_paths.is_some() {
args.mnemonic_indexes = None;
}
create_hw_wallets!(args, utils::create_trezor_signer, wallets);
return Ok(Some(wallets));
}
Ok(None)
}
pub async fn aws_signers(&self) -> Result<Option<Vec<WalletSigner>>> {
#[cfg(feature = "aws-kms")]
if self.aws {
let mut wallets = vec![];
let aws_keys = std::env::var("AWS_KMS_KEY_IDS")
.or(std::env::var("AWS_KMS_KEY_ID"))?
.split(',')
.map(|k| k.to_string())
.collect::<Vec<_>>();
for key in aws_keys {
let aws_signer = WalletSigner::from_aws(key).await?;
wallets.push(aws_signer)
}
return Ok(Some(wallets));
}
Ok(None)
}
/// Returns a list of GCP signers if the GCP flag is set.
///
/// The GCP signers are created from the following environment variables:
/// - GCP_PROJECT_ID: The GCP project ID. e.g. `my-project-123456`.
/// - GCP_LOCATION: The GCP location. e.g. `us-central1`.
/// - GCP_KEY_RING: The GCP key ring name. e.g. `my-key-ring`.
/// - GCP_KEY_NAME: The GCP key name. e.g. `my-key`.
/// - GCP_KEY_VERSION: The GCP key version. e.g. `1`.
///
/// For more information on GCP KMS, see the [official documentation](https://cloud.google.com/kms/docs).
pub async fn gcp_signers(&self) -> Result<Option<Vec<WalletSigner>>> {
#[cfg(feature = "gcp-kms")]
if self.gcp {
let mut wallets = vec![];
let project_id = std::env::var("GCP_PROJECT_ID")?;
let location = std::env::var("GCP_LOCATION")?;
let key_ring = std::env::var("GCP_KEY_RING")?;
let key_name = std::env::var("GCP_KEY_NAME")?;
let key_version = std::env::var("GCP_KEY_VERSION")?;
let gcp_signer = WalletSigner::from_gcp(
project_id,
location,
key_ring,
key_name,
key_version.parse()?,
)
.await?;
wallets.push(gcp_signer);
return Ok(Some(wallets));
}
Ok(None)
}
pub fn turnkey_signers(&self) -> Result<Option<Vec<WalletSigner>>> {
#[cfg(feature = "turnkey")]
if self.turnkey {
let api_private_key = std::env::var("TURNKEY_API_PRIVATE_KEY")?;
let organization_id = std::env::var("TURNKEY_ORGANIZATION_ID")?;
let address = std::env::var("TURNKEY_ADDRESS")?.parse()?;
let signer = WalletSigner::from_turnkey(api_private_key, organization_id, address)?;
return Ok(Some(vec![signer]));
}
Ok(None)
}
}
#[cfg(test)]
mod tests {
use super::*;
use alloy_primitives::address;
use std::path::Path;
#[test]
fn parse_keystore_args() {
let args: MultiWalletOpts =
MultiWalletOpts::parse_from(["foundry-cli", "--keystores", "my/keystore/path"]);
assert_eq!(args.keystore_paths, Some(vec!["my/keystore/path".to_string()]));
unsafe {
std::env::set_var("ETH_KEYSTORE", "MY_KEYSTORE");
}
let args: MultiWalletOpts = MultiWalletOpts::parse_from(["foundry-cli"]);
assert_eq!(args.keystore_paths, Some(vec!["MY_KEYSTORE".to_string()]));
unsafe {
std::env::remove_var("ETH_KEYSTORE");
}
}
#[test]
fn parse_keystore_password_file() {
let keystore =
Path::new(concat!(env!("CARGO_MANIFEST_DIR"), "/../cast/tests/fixtures/keystore"));
let keystore_file = keystore
.join("UTC--2022-12-20T10-30-43.591916000Z--ec554aeafe75601aaab43bd4621a22284db566c2");
let keystore_password_file = keystore.join("password-ec554").into_os_string();
let args: MultiWalletOpts = MultiWalletOpts::parse_from([
"foundry-cli",
"--keystores",
keystore_file.to_str().unwrap(),
"--password-file",
keystore_password_file.to_str().unwrap(),
]);
assert_eq!(
args.keystore_password_files,
Some(vec![keystore_password_file.to_str().unwrap().to_string()])
);
let (_, unlocked) = args.keystores().unwrap().unwrap();
assert_eq!(unlocked.len(), 1);
assert_eq!(unlocked[0].address(), address!("0xec554aeafe75601aaab43bd4621a22284db566c2"));
}
// https://github.com/foundry-rs/foundry/issues/5179
#[test]
fn should_not_require_the_mnemonics_flag_with_mnemonic_indexes() {
let wallet_options = vec![
("ledger", "--mnemonic-indexes", 1),
("trezor", "--mnemonic-indexes", 2),
("aws", "--mnemonic-indexes", 10),
("turnkey", "--mnemonic-indexes", 11),
];
for test_case in wallet_options {
let args: MultiWalletOpts = MultiWalletOpts::parse_from([
"foundry-cli",
&format!("--{}", test_case.0),
test_case.1,
&test_case.2.to_string(),
]);
match test_case.0 {
"ledger" => assert!(args.ledger),
"trezor" => assert!(args.trezor),
"aws" => assert!(args.aws),
"turnkey" => assert!(args.turnkey),
_ => panic!("Should have matched one of the previous wallet options"),
}
assert_eq!(
args.mnemonic_indexes.expect("--mnemonic-indexes should have been set")[0],
test_case.2
)
}
}
}