We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebcd59b commit b9c9731Copy full SHA for b9c9731
crates/cast/src/cmd/wallet/list.rs
@@ -38,6 +38,10 @@ pub struct ListArgs {
38
#[arg(long, hide = !cfg!(feature = "gcp-kms"))]
39
gcp: bool,
40
41
+ /// List accounts from Turnkey.
42
+ #[arg(long, hide = !cfg!(feature = "turnkey"))]
43
+ turnkey: bool,
44
+
45
/// List all configured accounts.
46
#[arg(long, group = "hw-wallets")]
47
all: bool,
@@ -64,6 +68,7 @@ impl ListArgs {
64
68
.trezor(self.trezor || self.all)
65
69
.aws(self.aws || self.all)
66
70
.gcp(self.gcp || (self.all && gcp_env_vars_set()))
71
+ .turnkey(self.turnkey || self.all)
67
72
.interactives(0)
73
.build()
74
.expect("build multi wallet");
0 commit comments