#[derive(Debug, Clone, interactive_clap::InteractiveClap)]
#[interactive_clap(input_context = super::access_key_type::AccessTypeContext)]
#[interactive_clap(output_context = AddLedgerKeyActionContext)]
pub struct AddLedgerKeyAction {
#[interactive_clap(named_arg)]
network_config: crate::network_for_transaction::NetworkForTransactionArgs,
}
#[derive(Debug, Clone)]
pub struct AddLedgerKeyActionContext {
global_context: crate::GlobalContext,
signer_account_id: unc_primitives::types::AccountId,
permission: unc_primitives::account::AccessKeyPermission,
public_key: crate::types::public_key::PublicKey,
}
impl AddLedgerKeyActionContext {
pub fn from_previous_context(
previous_context: super::access_key_type::AccessTypeContext,
_scope: &<AddLedgerKeyAction as interactive_clap::ToInteractiveClapContextScope>::InteractiveClapContextScope,
) -> color_eyre::eyre::Result<Self> {
let seed_phrase_hd_path = crate::transaction_signature_options::sign_with_ledger::SignLedger::input_seed_phrase_hd_path()?.unwrap();
eprintln!(
"Please allow getting the PublicKey on Ledger device (HD Path: {})",
seed_phrase_hd_path
);
let public_key = unc_ledger::get_public_key(seed_phrase_hd_path.into()).map_err(
|unc_ledger_error| {
color_eyre::Report::msg(format!(
"An error occurred while trying to get PublicKey from Ledger device: {:?}",
unc_ledger_error
))
},
)?;
let public_key = unc_crypto::PublicKey::ED25519(unc_crypto::ED25519PublicKey::from(
public_key.to_bytes(),
));
Ok(Self {
global_context: previous_context.global_context,
signer_account_id: previous_context.signer_account_id,
permission: previous_context.permission,
public_key: public_key.into(),
})
}
}
impl From<AddLedgerKeyActionContext> for crate::commands::ActionContext {
fn from(item: AddLedgerKeyActionContext) -> Self {
let on_after_getting_network_callback: crate::commands::OnAfterGettingNetworkCallback =
std::sync::Arc::new({
let signer_account_id = item.signer_account_id.clone();
move |_network_config| {
Ok(crate::commands::PrepopulatedTransaction {
signer_id: signer_account_id.clone(),
receiver_id: signer_account_id.clone(),
actions: vec![unc_primitives::transaction::Action::AddKey(Box::new(
unc_primitives::transaction::AddKeyAction {
public_key: item.public_key.clone().into(),
access_key: unc_primitives::account::AccessKey {
nonce: 0,
permission: item.permission.clone(),
},
},
))],
})
}
});
Self {
global_context: item.global_context,
interacting_with_account_ids: vec![item.signer_account_id],
on_after_getting_network_callback,
on_before_signing_callback: std::sync::Arc::new(
|_prepolulated_unsinged_transaction, _network_config| Ok(()),
),
on_before_sending_transaction_callback: std::sync::Arc::new(
|_signed_transaction, _network_config, _message| Ok(()),
),
on_after_sending_transaction_callback: std::sync::Arc::new(
|_outcome_view, _network_config| Ok(()),
),
}
}
}